mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Create easier to read tests for parser and validator
This commit is contained in:
parent
62eae6564f
commit
ad8adc880f
1 changed files with 47 additions and 41 deletions
|
@ -7,48 +7,54 @@ import (
|
|||
"testing"
|
||||
)
|
||||
|
||||
func Test_ActorParser(t *testing.T) {
|
||||
type testPair struct {
|
||||
item string
|
||||
want ActorID
|
||||
func TestActorParserEmpty(t *testing.T) {
|
||||
item := ""
|
||||
want := ActorID{}
|
||||
|
||||
got, _ := ParseActorID(item)
|
||||
|
||||
if got != want {
|
||||
t.Errorf("ParseActorID returned non empty actor id for empty input.")
|
||||
}
|
||||
}
|
||||
|
||||
tests := map[string]testPair{
|
||||
"empty": {
|
||||
item: "",
|
||||
want: ActorID{},
|
||||
},
|
||||
"withValidActorID": {
|
||||
item: "https://repo.prod.meissa.de/api/v1/activitypub/user-id/1",
|
||||
want: ActorID{
|
||||
func TestActorParserValid(t *testing.T) {
|
||||
item := "https://repo.prod.meissa.de/api/v1/activitypub/user-id/1"
|
||||
want := ActorID{
|
||||
schema: "https",
|
||||
userId: "1",
|
||||
path: "/api/v1/activitypub/user-id/1",
|
||||
host: "repo.prod.meissa.de",
|
||||
port: "",
|
||||
},
|
||||
},
|
||||
"withInvalidActorID": {
|
||||
item: "https://repo.prod.meissa.de/api/activitypub/user-id/1",
|
||||
want: ActorID{
|
||||
}
|
||||
|
||||
got, _ := ParseActorID(item)
|
||||
|
||||
if got != want {
|
||||
t.Errorf("Test Fail: ParseActorID did not return want: %v.", want)
|
||||
}
|
||||
}
|
||||
|
||||
func TestValidateValid(t *testing.T) {
|
||||
item := ActorID{
|
||||
schema: "https",
|
||||
userId: "1",
|
||||
path: "/api/v1/activitypub/user-id/1",
|
||||
host: "repo.prod.meissa.de",
|
||||
port: "",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
for name, _ := range tests {
|
||||
t.Run(name, func(t *testing.T) {
|
||||
_, err := ParseActorID(tests[name].item)
|
||||
|
||||
if err != nil {
|
||||
t.Errorf("parseActor() error = \"%v\"", err)
|
||||
return
|
||||
if err := item.Validate(); err != nil {
|
||||
t.Errorf("Test Fail: Validating actor returned non nil with valid input.")
|
||||
}
|
||||
}
|
||||
|
||||
})
|
||||
func TestValidateInvalid(t *testing.T) {
|
||||
item := "123456"
|
||||
|
||||
actor, _ := ParseActorID(item)
|
||||
|
||||
if err := actor.Validate(); err == nil {
|
||||
t.Errorf("Test Fail: Validating actor returned nil with false input.")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue