mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-02 16:29:06 +01:00
56 lines
1.2 KiB
Go
56 lines
1.2 KiB
Go
|
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package forgefed
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
"time"
|
||
|
|
||
|
"code.gitea.io/gitea/modules/validation"
|
||
|
)
|
||
|
|
||
|
func Test_FederationHostValidation(t *testing.T) {
|
||
|
sut := FederationHost{
|
||
|
HostFqdn: "host.do.main",
|
||
|
NodeInfo: NodeInfo{
|
||
|
SoftwareName: "forgejo",
|
||
|
},
|
||
|
LatestActivity: time.Now(),
|
||
|
}
|
||
|
if res, err := validation.IsValid(sut); !res {
|
||
|
t.Errorf("sut should be valid but was %q", err)
|
||
|
}
|
||
|
|
||
|
sut = FederationHost{
|
||
|
HostFqdn: "host.do.main",
|
||
|
NodeInfo: NodeInfo{},
|
||
|
LatestActivity: time.Now(),
|
||
|
}
|
||
|
if res, _ := validation.IsValid(sut); res {
|
||
|
t.Errorf("sut should be invalid")
|
||
|
}
|
||
|
|
||
|
sut = FederationHost{
|
||
|
HostFqdn: "host.do.main",
|
||
|
NodeInfo: NodeInfo{
|
||
|
SoftwareName: "forgejo",
|
||
|
},
|
||
|
LatestActivity: time.Now().Add(1 * time.Hour),
|
||
|
}
|
||
|
if res, _ := validation.IsValid(sut); res {
|
||
|
t.Errorf("sut should be invalid: Future timestamp")
|
||
|
}
|
||
|
|
||
|
sut = FederationHost{
|
||
|
HostFqdn: "hOst.do.main",
|
||
|
NodeInfo: NodeInfo{
|
||
|
SoftwareName: "forgejo",
|
||
|
},
|
||
|
LatestActivity: time.Now(),
|
||
|
}
|
||
|
if res, _ := validation.IsValid(sut); res {
|
||
|
t.Errorf("sut should be invalid: HostFqdn lower case")
|
||
|
}
|
||
|
}
|