A community based topic aggregation platform built on atproto

fix(tests): make community names unique in consumer tests

Fixes test failures caused by hardcoded community names that created
duplicate handle conflicts across test runs.

Changed:
- update-test → update-test-{timestamp}
- sub-test → sub-test-{timestamp}
- delete-test → delete-test-{timestamp}

All consumer tests now pass consistently.

Changed files
+3 -3
tests
+3 -3
tests/integration/community_consumer_test.go
···
t.Run("updates existing community", func(t *testing.T) {
uniqueSuffix := fmt.Sprintf("%d", time.Now().UnixNano())
communityDID := generateTestDID(uniqueSuffix)
-
communityName := "update-test"
expectedHandle := fmt.Sprintf("%s.community.coves.local", communityName)
// Set up mock resolver for this test DID
···
t.Run("deletes community", func(t *testing.T) {
uniqueSuffix := fmt.Sprintf("%d", time.Now().UnixNano())
communityDID := generateTestDID(uniqueSuffix)
-
communityName := "delete-test"
expectedHandle := fmt.Sprintf("%s.community.coves.local", communityName)
// Set up mock resolver for this test DID
···
// Create a community first
uniqueSuffix := fmt.Sprintf("%d", time.Now().UnixNano())
communityDID := generateTestDID(uniqueSuffix)
-
communityName := "sub-test"
expectedHandle := fmt.Sprintf("%s.community.coves.local", communityName)
// Set up mock resolver for this test DID
···
t.Run("updates existing community", func(t *testing.T) {
uniqueSuffix := fmt.Sprintf("%d", time.Now().UnixNano())
communityDID := generateTestDID(uniqueSuffix)
+
communityName := fmt.Sprintf("update-test-%s", uniqueSuffix)
expectedHandle := fmt.Sprintf("%s.community.coves.local", communityName)
// Set up mock resolver for this test DID
···
t.Run("deletes community", func(t *testing.T) {
uniqueSuffix := fmt.Sprintf("%d", time.Now().UnixNano())
communityDID := generateTestDID(uniqueSuffix)
+
communityName := fmt.Sprintf("delete-test-%s", uniqueSuffix)
expectedHandle := fmt.Sprintf("%s.community.coves.local", communityName)
// Set up mock resolver for this test DID
···
// Create a community first
uniqueSuffix := fmt.Sprintf("%d", time.Now().UnixNano())
communityDID := generateTestDID(uniqueSuffix)
+
communityName := fmt.Sprintf("sub-test-%s", uniqueSuffix)
expectedHandle := fmt.Sprintf("%s.community.coves.local", communityName)
// Set up mock resolver for this test DID