package integration_test import ( "context" "encoding/json" "fmt" "net/http" "testing" "time" "github.com/google/uuid" "golang.org/x/crypto/bcrypt" ) func TestExploreScaleDefinitionWrite(t *testing.T) { r, pool := setupAPIPool(t) ctx := context.Background() tok := adminLogin(t, r, "admin", "change-me") slug := fmt.Sprintf("scale-w-%d", time.Now().UnixNano()%1_000_000) body := map[string]any{"slug": slug, "title": "测试量表元数据", "description": "desc"} env, httpCode := doAdminJSON(t, r, http.MethodPost, "/api/v1/admin/explore/scales", body, tok) if httpCode != 200 || env.Code != 0 { t.Fatalf("create http=%d code=%d msg=%s", httpCode, env.Code, env.Message) } var created struct { ID string `json:"id"` Slug string `json:"slug"` Status string `json:"status"` Title string `json:"title"` } _ = json.Unmarshal(env.Data, &created) if created.ID == "" || created.Status != "draft" { t.Fatalf("bad create %#v", created) } t.Cleanup(func() { _, _ = pool.Exec(ctx, `DELETE FROM scales WHERE id=$1`, created.ID) }) _, httpCode = doAdminJSON(t, r, http.MethodPost, "/api/v1/admin/explore/scales", body, tok) if httpCode != http.StatusConflict { t.Fatalf("dup expected 409 got %d", httpCode) } // draft must not appear on C-end published list key := mustRegister(t, r) env, key = doJSON(t, r, http.MethodGet, "/api/v1/scales", nil, key) var pub struct { Items []struct { Slug string `json:"slug"` } `json:"items"` } _ = json.Unmarshal(env.Data, &pub) for _, it := range pub.Items { if it.Slug == slug { t.Fatal("draft listed on C-end") } } body["title"] = "改标题" env, httpCode = doAdminJSON(t, r, http.MethodPut, "/api/v1/admin/explore/scales/"+created.ID, body, tok) if httpCode != 200 { t.Fatalf("update %d", httpCode) } _ = json.Unmarshal(env.Data, &created) if created.Title != "改标题" || created.Status != "draft" { t.Fatalf("put changed status or missed title %#v", created) } // publish via ECR-008 channel _, httpCode = doAdminJSON(t, r, http.MethodPatch, "/api/v1/admin/scales/"+created.ID, map[string]any{"status": "published"}, tok) if httpCode != 200 { t.Fatalf("patch status %d", httpCode) } env, _ = doJSON(t, r, http.MethodGet, "/api/v1/scales", nil, key) _ = json.Unmarshal(env.Data, &pub) found := false for _, it := range pub.Items { if it.Slug == slug { found = true break } } if !found { t.Fatal("published missing on C-end") } var n int _ = pool.QueryRow(ctx, ` SELECT COUNT(*) FROM admin_audit_logs WHERE action IN ('explore.scale_definition.create','explore.scale_definition.update') AND target_id=$1`, created.ID).Scan(&n) if n < 2 { t.Fatalf("audit %d", n) } limitedRoleID := uuid.New() _, _ = pool.Exec(ctx, `INSERT INTO admin_roles(id, name, system) VALUES ($1,$2,false)`, limitedRoleID, "sd_ro_"+limitedRoleID.String()[:8]) _, _ = pool.Exec(ctx, `INSERT INTO admin_role_permissions(role_id, code) VALUES ($1,'admin.explore.read')`, limitedRoleID) hash, _ := bcrypt.GenerateFromPassword([]byte("ro-pass"), bcrypt.DefaultCost) roUser := fmt.Sprintf("sdro_%d", time.Now().UnixNano()) _, _ = pool.Exec(ctx, `INSERT INTO admin_accounts(username, password_hash, role_id) VALUES ($1,$2,$3)`, roUser, string(hash), limitedRoleID) t.Cleanup(func() { _, _ = pool.Exec(ctx, `DELETE FROM admin_accounts WHERE username=$1`, roUser) _, _ = pool.Exec(ctx, `DELETE FROM admin_roles WHERE id=$1`, limitedRoleID) }) roTok := adminLogin(t, r, roUser, "ro-pass") _, httpCode = doAdminJSON(t, r, http.MethodPost, "/api/v1/admin/explore/scales", map[string]any{ "slug": "x-ro", "title": "no", "description": "", }, roTok) if httpCode != http.StatusForbidden { t.Fatalf("expected 403 got %d", httpCode) } }