Files
miti99bot/internal/modules/lolschedule/subscribers_test.go
T
tiennm99 642fccb7b7 refactor: rename module to miti99bot, canonicalize AWS deploy path
Rename:
- Go module github.com/tiennm99/miti99bot-go → github.com/tiennm99/miti99bot
- CloudFormation stack miti99bot-aws-port → miti99bot
- Drop "port", "Cloud Run", "GCP", "cutover", "Phase NN" framing from
  active code and docs — project reads as canonical AWS-Lambda from now on.

AWS deploy guide + flow fix:
- New docs/deploy-aws-free-tier-guide.md — Ubuntu 24.04 ARM64 onboarding
  with project-local venv (pip awscli + sam-cli), SSM secrets via read -s,
  idempotent OIDC provider + role creation, $1 budget alarm.
- Drop sam build from the pipeline — provided.al2023 + makefile builder
  expects a Makefile in CodeUri (build/lambda/, the output dir), so the
  step always fails. sam deploy --template-file template.yaml now reads
  the raw template and zips build/lambda/ directly.
- Rollback section rewritten — use continue-update-rollback /
  cancel-update-stack / git-SHA redeploy. Drop the broken
  --use-previous-template recipe.
- DynamoDB free-tier row corrected (on-demand is 2.5M read / 1M write
  request units, not 25 RCU/WCU).

Updated:
- README.md fully rewritten (drops port/legacy framing, lists modules,
  points new users at the free-tier guide).
- aws/README.md retitled "AWS account setup", phase numbers stripped.
- Makefile / .github/workflows/deploy.yml — sam deploy flow.
- samconfig.toml — stack_name = "miti99bot".
- Go comments — Cloud Run → Lambda, Cloud Scheduler → EventBridge
  Scheduler, Cloud Logging → CloudWatch Logs.
- Struct field GCPProject → FirestoreProject (env GOOGLE_CLOUD_PROJECT
  unchanged).

Plus advisory reports under plans/reports/ from the code-reviewer +
researcher passes that informed the fixes.

Verified: go vet ./..., go build ./..., go test ./... all green.
2026-05-13 22:05:38 +07:00

60 lines
1.3 KiB
Go

package lolschedule
import (
"context"
"testing"
"github.com/tiennm99/miti99bot/internal/storage"
)
func TestSubscribers_AddRemoveListIdempotent(t *testing.T) {
ctx := context.Background()
kv := storage.NewMemoryKVStore()
got, _ := listSubscribers(ctx, kv)
if len(got) != 0 {
t.Errorf("empty list = %v, want []", got)
}
// First add → true.
added, err := addSubscriber(ctx, kv, 42)
if err != nil || !added {
t.Fatalf("first add: added=%v err=%v", added, err)
}
// Idempotent re-add → false.
added, _ = addSubscriber(ctx, kv, 42)
if added {
t.Errorf("re-add should be no-op")
}
got, _ = listSubscribers(ctx, kv)
if len(got) != 1 || got[0] != 42 {
t.Errorf("after add(42): %v, want [42]", got)
}
// Add second.
if _, err := addSubscriber(ctx, kv, 7); err != nil {
t.Fatal(err)
}
got, _ = listSubscribers(ctx, kv)
if len(got) != 2 {
t.Errorf("after add(7): %v, want len 2", got)
}
// Remove → true.
removed, err := removeSubscriber(ctx, kv, 42)
if err != nil || !removed {
t.Fatalf("remove(42): removed=%v err=%v", removed, err)
}
// Idempotent re-remove → false.
removed, _ = removeSubscriber(ctx, kv, 42)
if removed {
t.Errorf("re-remove should be no-op")
}
got, _ = listSubscribers(ctx, kv)
if len(got) != 1 || got[0] != 7 {
t.Errorf("after remove(42): %v, want [7]", got)
}
}