forked from coracle/zooid
185 lines
4.3 KiB
Go
185 lines
4.3 KiB
Go
package zooid
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"fiatjaf.com/nostr"
|
|
"fiatjaf.com/nostr/khatru"
|
|
)
|
|
|
|
func createTestManagementStore() *ManagementStore {
|
|
config := &Config{
|
|
Host: "test.com",
|
|
secret: nostr.Generate(),
|
|
}
|
|
schema := &Schema{Name: "test_" + RandomString(8)}
|
|
relay := khatru.NewRelay()
|
|
events := &EventStore{
|
|
Relay: relay,
|
|
Config: config,
|
|
Schema: schema,
|
|
}
|
|
events.Init()
|
|
|
|
return &ManagementStore{
|
|
Config: config,
|
|
Events: events,
|
|
}
|
|
}
|
|
|
|
func TestManagementStore_BanPubkey(t *testing.T) {
|
|
mgmt := createTestManagementStore()
|
|
|
|
pubkey := nostr.Generate().Public()
|
|
reason := "spam"
|
|
|
|
// Note: BanPubkey might return "duplicate event" error due to implementation
|
|
// but the banning should still work
|
|
mgmt.BanPubkey(pubkey, reason)
|
|
|
|
// Test that pubkey is now banned
|
|
if !mgmt.PubkeyIsBanned(pubkey) {
|
|
t.Error("PubkeyIsBanned() should return true after banning")
|
|
}
|
|
|
|
// Test banned pubkey items
|
|
bannedItems := mgmt.GetBannedPubkeyItems()
|
|
itemFound := false
|
|
for _, item := range bannedItems {
|
|
if item.PubKey == pubkey && item.Reason == reason {
|
|
itemFound = true
|
|
break
|
|
}
|
|
}
|
|
if !itemFound {
|
|
t.Error("GetBannedPubkeyItems() should include banned pubkey with reason")
|
|
}
|
|
}
|
|
|
|
func TestManagementStore_AllowPubkey(t *testing.T) {
|
|
mgmt := createTestManagementStore()
|
|
|
|
pubkey := nostr.Generate().Public()
|
|
|
|
// Ban then allow
|
|
mgmt.BanPubkey(pubkey, "test")
|
|
|
|
if !mgmt.PubkeyIsBanned(pubkey) {
|
|
t.Error("Setup: pubkey should be banned")
|
|
}
|
|
|
|
mgmt.AllowPubkey(pubkey)
|
|
|
|
if mgmt.PubkeyIsBanned(pubkey) {
|
|
t.Error("PubkeyIsBanned() should return false after allowing")
|
|
}
|
|
}
|
|
|
|
func TestManagementStore_UnbanPubkey(t *testing.T) {
|
|
mgmt := createTestManagementStore()
|
|
|
|
pubkey := nostr.Generate().Public()
|
|
|
|
mgmt.BanPubkey(pubkey, "test")
|
|
|
|
if !mgmt.PubkeyIsBanned(pubkey) {
|
|
t.Error("Setup: pubkey should be banned")
|
|
}
|
|
|
|
if err := mgmt.UnbanPubkey(pubkey, "appeal accepted"); err != nil {
|
|
t.Fatalf("UnbanPubkey() should not return error: %v", err)
|
|
}
|
|
|
|
if mgmt.PubkeyIsBanned(pubkey) {
|
|
t.Error("PubkeyIsBanned() should return false after unbanning")
|
|
}
|
|
}
|
|
|
|
func TestManagementStore_UnallowPubkey(t *testing.T) {
|
|
mgmt := createTestManagementStore()
|
|
|
|
pubkey := nostr.Generate().Public()
|
|
|
|
if err := mgmt.AllowPubkey(pubkey); err != nil {
|
|
t.Fatalf("AllowPubkey() should not return error: %v", err)
|
|
}
|
|
|
|
if !mgmt.IsMember(pubkey) {
|
|
t.Error("Setup: pubkey should be a member")
|
|
}
|
|
|
|
if err := mgmt.UnallowPubkey(pubkey, "membership revoked"); err != nil {
|
|
t.Fatalf("UnallowPubkey() should not return error: %v", err)
|
|
}
|
|
|
|
if mgmt.IsMember(pubkey) {
|
|
t.Error("IsMember() should return false after unallowing")
|
|
}
|
|
}
|
|
|
|
func TestManagementStore_BanEvent(t *testing.T) {
|
|
mgmt := createTestManagementStore()
|
|
|
|
eventID := nostr.MustIDFromHex("1234567890123456789012345678901234567890123456789012345678901234")
|
|
reason := "inappropriate"
|
|
|
|
mgmt.BanEvent(eventID, reason)
|
|
|
|
// Test that event is now banned
|
|
if !mgmt.EventIsBanned(eventID) {
|
|
t.Error("EventIsBanned() should return true after banning")
|
|
}
|
|
|
|
// Test banned event items
|
|
bannedItems := mgmt.GetBannedEventItems()
|
|
itemFound := false
|
|
for _, item := range bannedItems {
|
|
if item.ID == eventID && item.Reason == reason {
|
|
itemFound = true
|
|
break
|
|
}
|
|
}
|
|
if !itemFound {
|
|
t.Error("GetBannedEventItems() should include banned event with reason")
|
|
}
|
|
}
|
|
|
|
func TestManagementStore_AllowEvent(t *testing.T) {
|
|
mgmt := createTestManagementStore()
|
|
|
|
eventID := nostr.MustIDFromHex("1234567890123456789012345678901234567890123456789012345678901234")
|
|
|
|
// Ban then allow
|
|
mgmt.BanEvent(eventID, "test")
|
|
|
|
if !mgmt.EventIsBanned(eventID) {
|
|
t.Error("Setup: event should be banned")
|
|
}
|
|
|
|
mgmt.AllowEvent(eventID, "unbanned")
|
|
|
|
if mgmt.EventIsBanned(eventID) {
|
|
t.Error("EventIsBanned() should return false after allowing")
|
|
}
|
|
}
|
|
|
|
func TestManagementStore_PubkeyIsBanned_NotBanned(t *testing.T) {
|
|
mgmt := createTestManagementStore()
|
|
|
|
pubkey := nostr.Generate().Public()
|
|
|
|
if mgmt.PubkeyIsBanned(pubkey) {
|
|
t.Error("PubkeyIsBanned() should return false for non-banned pubkey")
|
|
}
|
|
}
|
|
|
|
func TestManagementStore_EventIsBanned_NotBanned(t *testing.T) {
|
|
mgmt := createTestManagementStore()
|
|
|
|
eventID := nostr.MustIDFromHex("abcdef1234567890123456789012345678901234567890123456789012345678")
|
|
|
|
if mgmt.EventIsBanned(eventID) {
|
|
t.Error("EventIsBanned() should return false for non-banned event")
|
|
}
|
|
}
|