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/activitystreams/link_test.go

80 lines
1.8 KiB
Go
Raw Normal View History

package activitystreams
import (
"reflect"
"testing"
)
func TestLinkNew(t *testing.T) {
2018-03-27 13:06:06 +00:00
var testValue = ObjectID("test")
var testType ActivityVocabularyType
l := LinkNew(testValue, testType)
if l.ID != testValue {
t.Errorf("APObject Id '%v' different than expected '%v'", l.ID, testValue)
}
if l.Type != LinkType {
t.Errorf("APObject Type '%v' different than expected '%v'", l.Type, LinkType)
}
}
func TestValidLinkType(t *testing.T) {
var invalidType ActivityVocabularyType = "RandomType"
if ValidLinkType(LinkType) {
2018-07-18 15:39:27 +00:00
t.Errorf("Generic Link Type '%v' should not be valid", LinkType)
}
if ValidLinkType(invalidType) {
2018-07-18 15:39:27 +00:00
t.Errorf("Link Type '%v' should not be valid", invalidType)
}
for _, validType := range validLinkTypes {
if !ValidLinkType(validType) {
2018-07-18 15:39:27 +00:00
t.Errorf("Link Type '%v' should be valid", validType)
}
}
}
func TestLink_IsLink(t *testing.T) {
l := LinkNew("test", LinkType)
if !l.IsLink() {
t.Errorf("%#v should be a valid link", l.Type)
}
m := LinkNew("test", MentionType)
if !m.IsLink() {
t.Errorf("%#v should be a valid link", m.Type)
}
}
func TestLink_IsObject(t *testing.T) {
l := LinkNew("test", LinkType)
if l.IsObject() {
t.Errorf("%#v should not be a valid object", l.Type)
}
m := LinkNew("test", MentionType)
if m.IsObject() {
t.Errorf("%#v should not be a valid object", m.Type)
}
}
func TestMention_IsLink(t *testing.T) {
m := MentionNew("test")
if !m.IsLink() {
t.Errorf("%#v should be a valid Mention", m.Type)
}
}
func TestMention_IsObject(t *testing.T) {
m := MentionNew("test")
if m.IsObject() {
t.Errorf("%#v should not be a valid object", m.Type)
}
}
func TestMention_Object(t *testing.T) {
m := MentionNew("test")
if !reflect.DeepEqual(ObjectID("test"), *m.GetID()) {
t.Errorf("%#v should be an empty object", m.GetID())
}
2018-07-18 15:39:27 +00:00
}