mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-06 09:19:35 +00:00
33 lines
736 B
Go
33 lines
736 B
Go
// 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_FederationInfoValidation(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)
|
|
}
|
|
|
|
sut = FederationInfo{
|
|
HostFqdn: "host.do.main",
|
|
NodeInfo: NodeInfo{},
|
|
LatestActivity: timeutil.TimeStampNow(),
|
|
}
|
|
if res, _ := validation.IsValid(sut); res {
|
|
t.Errorf("sut should be invalid")
|
|
}
|
|
}
|