Adding upstream version 0.0~git20250501.71edba4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
c6ff472a6d
commit
c8085bda34
87 changed files with 24009 additions and 0 deletions
54
tests/server_common_test.go
Normal file
54
tests/server_common_test.go
Normal file
|
@ -0,0 +1,54 @@
|
|||
package tests
|
||||
|
||||
// Common server tests...
|
||||
|
||||
import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
// Server: Fetching the inbox
|
||||
// Try retrieving the actor's inbox of an actor.
|
||||
// Server responds to GET request at inbox URL
|
||||
func TestInboxGETRequest(t *testing.T) {
|
||||
desc := `
|
||||
Server: Fetching the inbox
|
||||
Try retrieving the actor's inbox of an actor.
|
||||
|
||||
Server responds to GET request at inbox URL
|
||||
`
|
||||
t.Skip(desc)
|
||||
}
|
||||
|
||||
// Server: Fetching the inbox
|
||||
// Try retrieving the actor's inbox of an actor.
|
||||
// inbox is an OrderedCollection
|
||||
func TestInboxIsOrderedCollection(t *testing.T) {
|
||||
desc := `
|
||||
Server: Fetching the inbox
|
||||
Try retrieving the actor's inbox of an actor.
|
||||
|
||||
inbox is an OrderedCollection
|
||||
`
|
||||
t.Skip(desc)
|
||||
}
|
||||
|
||||
// Server: Fetching the inbox
|
||||
// Try retrieving the actor's inbox of an actor.
|
||||
// Server filters inbox content according to the requester's permission
|
||||
func TestInboxFilteringBasedOnPermissions(t *testing.T) {
|
||||
desc := `
|
||||
Server: Fetching the inbox
|
||||
Try retrieving the actor's inbox of an actor.
|
||||
|
||||
Server filters inbox content according to the requester's permission
|
||||
`
|
||||
t.Skip(desc)
|
||||
}
|
||||
|
||||
/*
|
||||
func Test_(t *testing.T) {
|
||||
desc := `
|
||||
`
|
||||
t.Skip(desc)
|
||||
}
|
||||
*/
|
Loading…
Add table
Add a link
Reference in a new issue