2024-01-12 17:34:34 +03:00
|
|
|
// Copyright 2024 The forgejo Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package forgefed
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2024-01-13 16:17:11 +03:00
|
|
|
"time"
|
2024-01-12 17:34:34 +03:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/validation"
|
|
|
|
)
|
|
|
|
|
2024-01-19 18:26:16 +03:00
|
|
|
func Test_FederationHostValidation(t *testing.T) {
|
|
|
|
sut := FederationHost{
|
2024-01-12 17:34:34 +03:00
|
|
|
HostFqdn: "host.do.main",
|
|
|
|
NodeInfo: NodeInfo{
|
|
|
|
Source: "forgejo",
|
|
|
|
},
|
2024-01-13 16:17:11 +03:00
|
|
|
LatestActivity: time.Now(),
|
2024-01-12 17:34:34 +03:00
|
|
|
}
|
|
|
|
if res, err := validation.IsValid(sut); !res {
|
|
|
|
t.Errorf("sut should be valid but was %q", err)
|
|
|
|
}
|
2024-01-12 18:12:54 +03:00
|
|
|
|
2024-01-19 18:26:16 +03:00
|
|
|
sut = FederationHost{
|
2024-01-12 18:12:54 +03:00
|
|
|
HostFqdn: "host.do.main",
|
|
|
|
NodeInfo: NodeInfo{},
|
2024-01-13 16:17:11 +03:00
|
|
|
LatestActivity: time.Now(),
|
2024-01-12 18:12:54 +03:00
|
|
|
}
|
|
|
|
if res, _ := validation.IsValid(sut); res {
|
|
|
|
t.Errorf("sut should be invalid")
|
|
|
|
}
|
2024-01-14 16:53:00 +03:00
|
|
|
|
2024-01-19 18:26:16 +03:00
|
|
|
sut = FederationHost{
|
2024-01-14 16:53:00 +03:00
|
|
|
HostFqdn: "host.do.main",
|
|
|
|
NodeInfo: NodeInfo{
|
|
|
|
Source: "forgejo",
|
|
|
|
},
|
|
|
|
LatestActivity: time.Now().Add(1 * time.Hour),
|
|
|
|
}
|
|
|
|
if res, _ := validation.IsValid(sut); res {
|
2024-02-07 16:30:17 +03:00
|
|
|
t.Errorf("sut should be invalid: Future timestamp")
|
|
|
|
}
|
|
|
|
|
|
|
|
sut = FederationHost{
|
|
|
|
HostFqdn: "hOst.do.main",
|
|
|
|
NodeInfo: NodeInfo{
|
|
|
|
Source: "forgejo",
|
|
|
|
},
|
|
|
|
LatestActivity: time.Now(),
|
|
|
|
}
|
|
|
|
if res, _ := validation.IsValid(sut); res {
|
|
|
|
t.Errorf("sut should be invalid: HostFqdn lower case")
|
2024-01-14 16:53:00 +03:00
|
|
|
}
|
2024-01-12 17:34:34 +03:00
|
|
|
}
|