408da3f201
New public ingress and the first network edge. Framework + a vertical slice of operations end-to-end; remaining ops reuse the same transcode pattern in Stage 7. Contracts (new module scrabble/pkg): - push.proto (backend->gateway gRPC server-stream) + scrabble.fbs (FlatBuffers edge payloads), committed generated Go; buf/flatc Makefiles (dev-time codegen). Backend: - REST handlers on the /api/v1 groups: internal session endpoints (telegram/guest/email login -> mint, resolve, revoke) and the user slice (profile, submit_play, state, lobby enqueue/poll, chat). - internal/notify in-process Publisher hub + internal/pushgrpc gRPC server (BACKEND_GRPC_ADDR) streaming your_turn/opponent_moved/chat/nudge/match_found; emission in game.commit, social, matchmaker. - migration 00005 accounts.is_guest; guests are durable rows excluded from stats; ProvisionGuest; email-as-login (RequestLoginCode/LoginWithCode). Gateway (new module scrabble/gateway): - Connect Gateway service over h2c (Execute + Subscribe), FlatBuffers<->JSON transcode registry, Telegram initData HMAC validator (seam), session cache, token-bucket rate limiter (3 classes), push fan-out hub, backend REST + push gRPC client, admin Basic-Auth reverse proxy. go.work: use ./pkg, ./gateway + replace scrabble/pkg. CI: gateway/**, pkg/** path filters; unit build/vet/test span all three modules. Docs (PLAN, ARCHITECTURE, FUNCTIONAL+ru, TESTING, READMEs) updated; gateway/pkg unit tests + guest/email-login integration tests.
71 lines
2.1 KiB
YAML
71 lines
2.1 KiB
YAML
name: Tests · Go
|
|
|
|
# Fast unit tests for the Go side of the monorepo. Runs on every push and pull
|
|
# request whose path filter matches a Go source directory. The module list
|
|
# grows as new go.work modules (gateway, pkg/*, platform/*) are added by later
|
|
# stages.
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'backend/**'
|
|
- 'gateway/**'
|
|
- 'pkg/**'
|
|
- 'go.work'
|
|
- 'go.work.sum'
|
|
- '.gitea/workflows/go-unit.yaml'
|
|
- '!**/*.md'
|
|
pull_request:
|
|
paths:
|
|
- 'backend/**'
|
|
- 'gateway/**'
|
|
- 'pkg/**'
|
|
- 'go.work'
|
|
- 'go.work.sum'
|
|
- '.gitea/workflows/go-unit.yaml'
|
|
- '!**/*.md'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Fetch scrabble-solver (sibling)
|
|
# The engine package consumes scrabble-solver in-process; go.work points
|
|
# its bare module path at this sibling checkout. The repository is public,
|
|
# so the clone needs no credentials. It tracks master HEAD (see PLAN.md
|
|
# TODO-1 for the move to a published, versioned module).
|
|
run: git clone --depth 1 https://gitea.iliadenisov.ru/developer/scrabble-solver.git "${GITHUB_WORKSPACE}/../scrabble-solver"
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: go.work
|
|
cache: true
|
|
|
|
- name: gofmt
|
|
run: |
|
|
unformatted="$(gofmt -l .)"
|
|
if [ -n "$unformatted" ]; then
|
|
echo "gofmt needed on:"; echo "$unformatted"; exit 1
|
|
fi
|
|
|
|
- name: vet
|
|
run: go vet ./backend/... ./pkg/... ./gateway/...
|
|
|
|
- name: build
|
|
run: go build ./backend/... ./pkg/... ./gateway/...
|
|
|
|
- name: test
|
|
# -count=1 disables the test cache so a green run never depends on a
|
|
# previous runner's cached state. BACKEND_DICT_DIR points the engine
|
|
# tests at the committed DAWGs in the sibling checkout.
|
|
env:
|
|
BACKEND_DICT_DIR: ${{ github.workspace }}/../scrabble-solver/dawg
|
|
run: go test -count=1 ./backend/... ./pkg/... ./gateway/...
|