2024-01-12 14:34:34 +00:00
|
|
|
// Copyright 2024 The forgejo Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package forgefed
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2024-01-13 13:17:11 +00:00
|
|
|
"time"
|
2024-01-12 14:34:34 +00:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/validation"
|
|
|
|
)
|
|
|
|
|
2024-01-12 15:12:54 +00:00
|
|
|
func Test_FederationInfoValidation(t *testing.T) {
|
2024-01-12 14:34:34 +00:00
|
|
|
sut := FederationInfo{
|
|
|
|
HostFqdn: "host.do.main",
|
|
|
|
NodeInfo: NodeInfo{
|
|
|
|
Source: "forgejo",
|
|
|
|
},
|
2024-01-13 13:17:11 +00:00
|
|
|
LatestActivity: time.Now(),
|
2024-01-12 14:34:34 +00:00
|
|
|
}
|
|
|
|
if res, err := validation.IsValid(sut); !res {
|
|
|
|
t.Errorf("sut should be valid but was %q", err)
|
|
|
|
}
|
2024-01-12 15:12:54 +00:00
|
|
|
|
|
|
|
sut = FederationInfo{
|
|
|
|
HostFqdn: "host.do.main",
|
|
|
|
NodeInfo: NodeInfo{},
|
2024-01-13 13:17:11 +00:00
|
|
|
LatestActivity: time.Now(),
|
2024-01-12 15:12:54 +00:00
|
|
|
}
|
|
|
|
if res, _ := validation.IsValid(sut); res {
|
|
|
|
t.Errorf("sut should be invalid")
|
|
|
|
}
|
2024-01-12 14:34:34 +00:00
|
|
|
}
|