test federationinfo validation
This commit is contained in:
parent
9c37272ee9
commit
bbccc24ed1
3 changed files with 68 additions and 0 deletions
24
models/forgefed/federationinfo_test.go
Normal file
24
models/forgefed/federationinfo_test.go
Normal file
|
@ -0,0 +1,24 @@
|
|||
// Copyright 2024 The forgejo Authors. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
package forgefed
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"code.gitea.io/gitea/modules/timeutil"
|
||||
"code.gitea.io/gitea/modules/validation"
|
||||
)
|
||||
|
||||
func Test_ValidateMaxLen(t *testing.T) {
|
||||
sut := FederationInfo{
|
||||
HostFqdn: "host.do.main",
|
||||
NodeInfo: NodeInfo{
|
||||
Source: "forgejo",
|
||||
},
|
||||
LatestActivity: timeutil.TimeStampNow(),
|
||||
}
|
||||
if res, err := validation.IsValid(sut); !res {
|
||||
t.Errorf("sut should be valid but was %q", err)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue