mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-04-19 13:00:20 +00:00
Picks the update commit from https://codeberg.org/forgejo/forgejo/pulls/11200 and fixes the new incompatibilities. I ran full end-to-end tests against Forgejo and basic end-to-end tests against GoToSocial which appear to be working. Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/11301 Reviewed-by: elle <0xllx0@noreply.codeberg.org> Co-authored-by: famfo <famfo@famfo.xyz> Co-committed-by: famfo <famfo@famfo.xyz>
26 lines
644 B
Go
26 lines
644 B
Go
// Copyright 2025 The Forgejo Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package forgefed_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"forgejo.org/modules/forgefed"
|
|
"forgejo.org/modules/validation"
|
|
|
|
ap "github.com/go-ap/activitypub"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_UserActivityNoteValidation(t *testing.T) {
|
|
sut := forgefed.ForgeUserActivityNote{}
|
|
sut.Type = ap.NoteType
|
|
sut.Content = ap.NaturalLanguageValues{
|
|
ap.NilLangRef: ap.Content("Any Content!"),
|
|
}
|
|
sut.URL = ap.IRI("example.org/user-id/57")
|
|
|
|
valid, _ := validation.IsValid(sut)
|
|
assert.True(t, valid, "sut expected to be valid: %v\n", sut.Validate())
|
|
}
|