mirror of
https://github.com/go-gitea/gitea
synced 2024-11-08 19:24:25 +00:00
678a56fbf8
Refs: https://github.com/go-gitea/gitea/issues/14186 Signed-off-by: Loïc Dachary <loic@dachary.org>
97 lines
2.9 KiB
Go
97 lines
2.9 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package integrations
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
"github.com/go-fed/activity/pub"
|
|
"github.com/go-fed/activity/streams"
|
|
"github.com/go-fed/activity/streams/vocab"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestActivityPubPerson(t *testing.T) {
|
|
onGiteaRun(t, func(*testing.T, *url.URL) {
|
|
setting.Federation.Enabled = true
|
|
setting.Database.LogSQL = true
|
|
defer func() {
|
|
setting.Federation.Enabled = false
|
|
setting.Database.LogSQL = false
|
|
}()
|
|
|
|
username := "user2"
|
|
req := NewRequestf(t, "GET", fmt.Sprintf("/api/v1/activitypub/user/%s", username))
|
|
resp := MakeRequest(t, req, http.StatusOK)
|
|
assert.Contains(t, string(resp.Body.Bytes()), "@context")
|
|
var m map[string]interface{}
|
|
_ = json.Unmarshal(resp.Body.Bytes(), &m)
|
|
|
|
var person vocab.ActivityStreamsPerson
|
|
resolver, _ := streams.NewJSONResolver(func(c context.Context, p vocab.ActivityStreamsPerson) error {
|
|
person = p
|
|
return nil
|
|
})
|
|
ctx := context.Background()
|
|
err := resolver.Resolve(ctx, m)
|
|
assert.Equal(t, err, nil)
|
|
assert.Equal(t, "Person", person.GetTypeName())
|
|
assert.Equal(t, username, person.GetActivityStreamsName().Begin().GetXMLSchemaString())
|
|
keyId := person.GetJSONLDId().GetIRI().String()
|
|
assert.Regexp(t, fmt.Sprintf("activitypub/user/%s$", username), keyId)
|
|
assert.Regexp(t, fmt.Sprintf("activitypub/user/%s/outbox$", username), person.GetActivityStreamsOutbox().GetIRI().String())
|
|
assert.Regexp(t, fmt.Sprintf("activitypub/user/%s/inbox$", username), person.GetActivityStreamsInbox().GetIRI().String())
|
|
|
|
pkp := person.GetW3IDSecurityV1PublicKey()
|
|
publicKeyId := keyId + "/#main-key"
|
|
var pkpFound vocab.W3IDSecurityV1PublicKey
|
|
for pkpIter := pkp.Begin(); pkpIter != pkp.End(); pkpIter = pkpIter.Next() {
|
|
if !pkpIter.IsW3IDSecurityV1PublicKey() {
|
|
continue
|
|
}
|
|
pkValue := pkpIter.Get()
|
|
var pkId *url.URL
|
|
pkId, err = pub.GetId(pkValue)
|
|
if err != nil {
|
|
return
|
|
}
|
|
assert.Equal(t, pkId.String(), publicKeyId)
|
|
if pkId.String() != publicKeyId {
|
|
continue
|
|
}
|
|
pkpFound = pkValue
|
|
break
|
|
}
|
|
assert.NotNil(t, pkpFound)
|
|
|
|
pkPemProp := pkpFound.GetW3IDSecurityV1PublicKeyPem()
|
|
assert.NotNil(t, pkPemProp)
|
|
assert.True(t, pkPemProp.IsXMLSchemaString())
|
|
|
|
pubKeyPem := pkPemProp.Get()
|
|
assert.Regexp(t, "^-----BEGIN PUBLIC KEY-----", pubKeyPem)
|
|
})
|
|
}
|
|
|
|
func TestActivityPubMissingPerson(t *testing.T) {
|
|
onGiteaRun(t, func(*testing.T, *url.URL) {
|
|
setting.Federation.Enabled = true
|
|
defer func() {
|
|
setting.Federation.Enabled = false
|
|
}()
|
|
|
|
req := NewRequestf(t, "GET", "/api/v1/activitypub/user/nonexistentuser")
|
|
resp := MakeRequest(t, req, http.StatusNotFound)
|
|
assert.Contains(t, string(resp.Body.Bytes()), "GetUserByName")
|
|
})
|
|
}
|