Feat v0.5.5 upgrade testing
Some checks failed
CI/CD / detect-changes (pull_request) Successful in 3s
CI/CD / test-frontend (pull_request) Successful in 5s
CI/CD / test-go-pg (pull_request) Failing after 2m39s
CI/CD / test-sqlite (pull_request) Successful in 2m44s
CI/CD / build-and-deploy (pull_request) Has been skipped
Some checks failed
CI/CD / detect-changes (pull_request) Successful in 3s
CI/CD / test-frontend (pull_request) Successful in 5s
CI/CD / test-go-pg (pull_request) Failing after 2m39s
CI/CD / test-sqlite (pull_request) Successful in 2m44s
CI/CD / build-and-deploy (pull_request) Has been skipped
Upgrade test harness, schema edge case tests, and two bug fixes found during testing. New: docker-compose-upgrade.yml + ci/e2e-upgrade-test.sh for single-replica upgrade testing (seed → upgrade → verify). ci/e2e-upgrade-rolling.sh for multi-replica rolling upgrade with shared Postgres. 11 Go unit tests for schema migration edge cases, settings preservation, and package compat. Fix: Bundled permission auto-grant on Postgres — SQL used SQLite-style `granted = 1` on BOOLEAN columns. Now dialect-aware (true/false on PG). Fix: E2E chat test API fields — login, token extraction, profile endpoint. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -56,8 +56,8 @@ login() {
|
||||
local resp
|
||||
resp=$(curl -sf "$host/api/v1/auth/login" \
|
||||
-H 'Content-Type: application/json' \
|
||||
-d "{\"username\":\"$user\",\"password\":\"$pass\"}")
|
||||
echo "$resp" | grep -o '"token":"[^"]*"' | head -1 | cut -d'"' -f4
|
||||
-d "{\"login\":\"$user\",\"password\":\"$pass\"}")
|
||||
echo "$resp" | grep -o '"access_token":"[^"]*"' | head -1 | sed 's/.*"access_token":"\([^"]*\)".*/\1/'
|
||||
}
|
||||
|
||||
authed() {
|
||||
@@ -102,10 +102,10 @@ fi
|
||||
echo -e "\n${YELLOW}3. Create conversation + send messages${NC}"
|
||||
|
||||
# Get alice's user ID
|
||||
ALICE_ME=$(authed "$ALICE_TOKEN" GET "/api/v1/me" 2>/dev/null || echo "{}")
|
||||
ALICE_ME=$(authed "$ALICE_TOKEN" GET "/api/v1/profile" 2>/dev/null || echo "{}")
|
||||
ALICE_ID=$(echo "$ALICE_ME" | grep -o '"id":"[^"]*"' | head -1 | cut -d'"' -f4)
|
||||
|
||||
BOB_ME=$(authed "$BOB_TOKEN" GET "/api/v1/me" 2>/dev/null || echo "{}")
|
||||
BOB_ME=$(authed "$BOB_TOKEN" GET "/api/v1/profile" 2>/dev/null || echo "{}")
|
||||
BOB_ID=$(echo "$BOB_ME" | grep -o '"id":"[^"]*"' | head -1 | cut -d'"' -f4)
|
||||
|
||||
# Create conversation via chat-core API
|
||||
|
||||
Reference in New Issue
Block a user