Refactor ActorID -> ActorId

This commit is contained in:
Michael Jerger 2023-12-08 18:33:26 +01:00
parent 7c86f13728
commit be4d3544ae
3 changed files with 20 additions and 16 deletions

View file

@ -59,7 +59,7 @@ func TestValidateAndParseIRINoPath(t *testing.T) {
func TestActorParserValid(t *testing.T) {
item, _ := ValidateAndParseIRI(mockStar.Actor.GetID().String())
want := ActorID{
want := ActorId{
userId: "1",
source: "forgejo",
schema: "https",
@ -76,7 +76,7 @@ func TestActorParserValid(t *testing.T) {
}
func TestValidateValid(t *testing.T) {
item := ActorID{
item := ActorId{
userId: "1",
source: "forgejo",
schema: "https",
@ -101,7 +101,7 @@ func TestValidateInvalid(t *testing.T) {
}
func TestGetHostAndPort(t *testing.T) {
item := ActorID{
item := ActorId{
schema: "https",
userId: "1",
path: "/api/v1/activitypub/user-id/1",
@ -128,6 +128,10 @@ func TestShouldThrowErrorOnInvalidInput(t *testing.T) {
if err == nil {
t.Errorf("localhost uris are not external")
}
_, err = NewActorId("./api/v1/something", "forgejo")
if err == nil {
t.Errorf("relative uris are not alowed.")
}
_, err = NewActorId("https://an.other.host/api/v1/activitypub/person-id/1", "forgejo")
if err != nil {