This repository has been archived on 2022-11-27. You can view files and clone it, but cannot push or open issues or pull requests.
activitypub/typer_test.go

283 lines
4.4 KiB
Go
Raw Normal View History

package activitypub
import (
"testing"
)
func TestPathTyper_Type(t *testing.T) {
t.Skipf("TODO")
}
func TestValidActivityCollection(t *testing.T) {
t.Skipf("TODO")
}
func TestValidCollection(t *testing.T) {
t.Skipf("TODO")
}
func TestValidObjectCollection(t *testing.T) {
t.Skipf("TODO")
}
2020-06-15 09:36:15 +00:00
func TestValidCollectionIRI(t *testing.T) {
t.Skipf("TODO")
}
func TestSplit(t *testing.T) {
t.Skipf("TODO")
}
func TestCollectionTypes_Of(t *testing.T) {
type args struct {
o Item
t CollectionPath
}
tests := []struct {
name string
args args
want Item
}{
2022-05-23 18:47:23 +00:00
{
name: "nil from nil object",
args: args{
o: nil,
t: "likes",
},
want: nil,
},
{
name: "nil from invalid CollectionPath type",
args: args{
o: Object{
Likes: IRI("test"),
},
t: "like",
},
want: nil,
},
{
name: "nil from nil CollectionPath type",
args: args{
o: Object{
Likes: nil,
},
t: "likes",
},
want: nil,
},
{
name: "get likes iri",
args: args{
o: Object{
Likes: IRI("test"),
},
t: "likes",
},
want: IRI("test"),
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
if ob := test.args.t.Of(test.args.o); ob != test.want {
t.Errorf("Object received %#v is different, expected #%v", ob, test.want)
}
})
}
}
func TestCollectionType_IRI(t *testing.T) {
2022-05-23 18:47:23 +00:00
type args struct {
o Item
t CollectionPath
2022-05-23 18:47:23 +00:00
}
tests := []struct {
name string
args args
want IRI
2022-05-23 18:47:23 +00:00
}{
{
name: "just path from nil object",
args: args{
o: nil,
t: "likes",
},
want: IRI("/likes"),
2022-05-23 18:47:23 +00:00
},
{
name: "emptyIRI from invalid CollectionPath type",
2022-05-23 18:47:23 +00:00
args: args{
o: Object{
Likes: IRI("test"),
2022-05-23 18:47:23 +00:00
},
t: "like",
},
2022-05-23 21:36:56 +00:00
want: "/like",
2022-05-23 18:47:23 +00:00
},
{
name: "just path from object without ID",
args: args{
o: Object{},
2022-05-23 18:47:23 +00:00
t: "likes",
},
want: IRI("/likes"),
2022-05-23 18:47:23 +00:00
},
{
name: "likes iri on object",
args: args{
o: Object{
2022-05-23 18:47:23 +00:00
ID: "http://example.com",
Likes: IRI("test"),
2022-05-23 18:47:23 +00:00
},
t: "likes",
},
want: IRI("test"),
2022-05-23 18:47:23 +00:00
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
if ob := test.args.t.IRI(test.args.o); ob != test.want {
t.Errorf("IRI received %q is different, expected %q", ob, test.want)
}
})
}
}
func TestCollectionType_OfActor(t *testing.T) {
t.Skipf("TODO")
}
func TestCollectionTypes_Contains(t *testing.T) {
t.Skipf("TODO")
}
func TestIRIf(t *testing.T) {
type args struct {
i IRI
t CollectionPath
}
tests := []struct {
name string
args args
want IRI
}{
2021-01-24 16:13:42 +00:00
{
name: "empty iri",
args: args{
i: "",
t: "inbox",
},
want: "/inbox",
},
{
name: "plain concat",
args: args{
i: "https://example.com",
t: "inbox",
},
want: "https://example.com/inbox",
},
{
name: "strip root from iri",
args: args{
i: "https://example.com/",
t: "inbox",
},
want: "https://example.com/inbox",
},
{
name: "invalid iri",
args: args{
i: "example.com",
t: "test",
},
want: "example.com/test",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := IRIf(tt.args.i, tt.args.t); got != tt.want {
t.Errorf("IRIf() = %v, want %v", got, tt.want)
}
})
}
}
2021-02-02 13:46:30 +00:00
func TestCollectionType_AddTo(t *testing.T) {
type args struct {
i Item
2021-02-02 13:46:30 +00:00
}
var i Item
var o *Object
2021-02-02 13:46:30 +00:00
tests := []struct {
name string
t CollectionPath
2021-02-02 13:46:30 +00:00
args args
want IRI
2021-02-02 13:46:30 +00:00
want1 bool
}{
{
2022-03-18 13:02:09 +00:00
name: "simple",
t: "test",
args: args{
i: &Object{ID: "http://example.com/addTo"},
2021-02-02 13:46:30 +00:00
},
want: "http://example.com/addTo/test",
want1: false, // this seems to always be false
},
{
2022-03-18 13:02:09 +00:00
name: "on-nil-item",
t: "test",
args: args{
2021-02-02 13:46:30 +00:00
i: i,
},
want: NilIRI,
2021-02-02 13:46:30 +00:00
want1: false,
},
{
2022-03-18 13:02:09 +00:00
name: "on-nil",
t: "test",
args: args{
2021-02-02 13:46:30 +00:00
i: nil,
},
want: NilIRI,
2021-02-02 13:46:30 +00:00
want1: false,
},
{
2022-03-18 13:02:09 +00:00
name: "on-nil-object",
t: "test",
args: args{
2021-02-02 13:46:30 +00:00
i: o,
},
want: NilIRI,
2021-02-02 13:46:30 +00:00
want1: false,
},
{
2022-03-18 13:02:09 +00:00
name: "on-nil-item",
t: "test",
args: args{
2021-02-02 13:46:30 +00:00
i: i,
},
want: NilIRI,
2021-02-02 13:46:30 +00:00
want1: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1 := tt.t.AddTo(tt.args.i)
if got != tt.want {
t.Errorf("AddTo() got = %v, want %v", got, tt.want)
}
if got1 != tt.want1 {
t.Errorf("AddTo() got1 = %v, want %v", got1, tt.want1)
}
})
}
2022-03-18 13:02:09 +00:00
}
func TestCollectionTypes_Split(t *testing.T) {
t.Skipf("TODO")
}