go-forge/actions_test.go
Snider 9e3d15da68 feat: ActionsService, NotificationService, PackageService
Add three new services for the Forgejo API client:

- ActionsService: repo/org secrets, variables, workflow dispatch
- NotificationService: list, mark read, thread operations
- PackageService: list, get, delete packages and files

Wire up real constructors in forge.go and remove stubs from
services_stub.go. All 21 new tests pass.

Co-Authored-By: Virgil <virgil@lethean.io>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 17:14:01 +00:00

262 lines
7.5 KiB
Go

package forge
import (
"context"
"encoding/json"
"net/http"
"net/http/httptest"
"testing"
"forge.lthn.ai/core/go-forge/types"
)
func TestActionsService_Good_ListRepoSecrets(t *testing.T) {
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodGet {
t.Errorf("expected GET, got %s", r.Method)
}
if r.URL.Path != "/api/v1/repos/core/go-forge/actions/secrets" {
t.Errorf("wrong path: %s", r.URL.Path)
}
w.Header().Set("X-Total-Count", "2")
json.NewEncoder(w).Encode([]types.Secret{
{Name: "DEPLOY_KEY"},
{Name: "API_TOKEN"},
})
}))
defer srv.Close()
f := NewForge(srv.URL, "tok")
secrets, err := f.Actions.ListRepoSecrets(context.Background(), "core", "go-forge")
if err != nil {
t.Fatal(err)
}
if len(secrets) != 2 {
t.Fatalf("got %d secrets, want 2", len(secrets))
}
if secrets[0].Name != "DEPLOY_KEY" {
t.Errorf("got name=%q, want %q", secrets[0].Name, "DEPLOY_KEY")
}
if secrets[1].Name != "API_TOKEN" {
t.Errorf("got name=%q, want %q", secrets[1].Name, "API_TOKEN")
}
}
func TestActionsService_Good_CreateRepoSecret(t *testing.T) {
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPut {
t.Errorf("expected PUT, got %s", r.Method)
}
if r.URL.Path != "/api/v1/repos/core/go-forge/actions/secrets/DEPLOY_KEY" {
t.Errorf("wrong path: %s", r.URL.Path)
}
var body map[string]string
if err := json.NewDecoder(r.Body).Decode(&body); err != nil {
t.Fatal(err)
}
if body["data"] != "super-secret" {
t.Errorf("got data=%q, want %q", body["data"], "super-secret")
}
w.WriteHeader(http.StatusCreated)
}))
defer srv.Close()
f := NewForge(srv.URL, "tok")
err := f.Actions.CreateRepoSecret(context.Background(), "core", "go-forge", "DEPLOY_KEY", "super-secret")
if err != nil {
t.Fatal(err)
}
}
func TestActionsService_Good_DeleteRepoSecret(t *testing.T) {
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodDelete {
t.Errorf("expected DELETE, got %s", r.Method)
}
if r.URL.Path != "/api/v1/repos/core/go-forge/actions/secrets/OLD_KEY" {
t.Errorf("wrong path: %s", r.URL.Path)
}
w.WriteHeader(http.StatusNoContent)
}))
defer srv.Close()
f := NewForge(srv.URL, "tok")
err := f.Actions.DeleteRepoSecret(context.Background(), "core", "go-forge", "OLD_KEY")
if err != nil {
t.Fatal(err)
}
}
func TestActionsService_Good_ListRepoVariables(t *testing.T) {
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodGet {
t.Errorf("expected GET, got %s", r.Method)
}
if r.URL.Path != "/api/v1/repos/core/go-forge/actions/variables" {
t.Errorf("wrong path: %s", r.URL.Path)
}
w.Header().Set("X-Total-Count", "1")
json.NewEncoder(w).Encode([]types.ActionVariable{
{Name: "CI_ENV", Data: "production"},
})
}))
defer srv.Close()
f := NewForge(srv.URL, "tok")
vars, err := f.Actions.ListRepoVariables(context.Background(), "core", "go-forge")
if err != nil {
t.Fatal(err)
}
if len(vars) != 1 {
t.Fatalf("got %d variables, want 1", len(vars))
}
if vars[0].Name != "CI_ENV" {
t.Errorf("got name=%q, want %q", vars[0].Name, "CI_ENV")
}
}
func TestActionsService_Good_CreateRepoVariable(t *testing.T) {
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPost {
t.Errorf("expected POST, got %s", r.Method)
}
if r.URL.Path != "/api/v1/repos/core/go-forge/actions/variables/CI_ENV" {
t.Errorf("wrong path: %s", r.URL.Path)
}
var body types.CreateVariableOption
if err := json.NewDecoder(r.Body).Decode(&body); err != nil {
t.Fatal(err)
}
if body.Value != "staging" {
t.Errorf("got value=%q, want %q", body.Value, "staging")
}
w.WriteHeader(http.StatusCreated)
}))
defer srv.Close()
f := NewForge(srv.URL, "tok")
err := f.Actions.CreateRepoVariable(context.Background(), "core", "go-forge", "CI_ENV", "staging")
if err != nil {
t.Fatal(err)
}
}
func TestActionsService_Good_DeleteRepoVariable(t *testing.T) {
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodDelete {
t.Errorf("expected DELETE, got %s", r.Method)
}
if r.URL.Path != "/api/v1/repos/core/go-forge/actions/variables/OLD_VAR" {
t.Errorf("wrong path: %s", r.URL.Path)
}
w.WriteHeader(http.StatusNoContent)
}))
defer srv.Close()
f := NewForge(srv.URL, "tok")
err := f.Actions.DeleteRepoVariable(context.Background(), "core", "go-forge", "OLD_VAR")
if err != nil {
t.Fatal(err)
}
}
func TestActionsService_Good_ListOrgSecrets(t *testing.T) {
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodGet {
t.Errorf("expected GET, got %s", r.Method)
}
if r.URL.Path != "/api/v1/orgs/lethean/actions/secrets" {
t.Errorf("wrong path: %s", r.URL.Path)
}
w.Header().Set("X-Total-Count", "1")
json.NewEncoder(w).Encode([]types.Secret{
{Name: "ORG_SECRET"},
})
}))
defer srv.Close()
f := NewForge(srv.URL, "tok")
secrets, err := f.Actions.ListOrgSecrets(context.Background(), "lethean")
if err != nil {
t.Fatal(err)
}
if len(secrets) != 1 {
t.Fatalf("got %d secrets, want 1", len(secrets))
}
if secrets[0].Name != "ORG_SECRET" {
t.Errorf("got name=%q, want %q", secrets[0].Name, "ORG_SECRET")
}
}
func TestActionsService_Good_ListOrgVariables(t *testing.T) {
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodGet {
t.Errorf("expected GET, got %s", r.Method)
}
if r.URL.Path != "/api/v1/orgs/lethean/actions/variables" {
t.Errorf("wrong path: %s", r.URL.Path)
}
w.Header().Set("X-Total-Count", "1")
json.NewEncoder(w).Encode([]types.ActionVariable{
{Name: "ORG_VAR", Data: "org-value"},
})
}))
defer srv.Close()
f := NewForge(srv.URL, "tok")
vars, err := f.Actions.ListOrgVariables(context.Background(), "lethean")
if err != nil {
t.Fatal(err)
}
if len(vars) != 1 {
t.Fatalf("got %d variables, want 1", len(vars))
}
if vars[0].Name != "ORG_VAR" {
t.Errorf("got name=%q, want %q", vars[0].Name, "ORG_VAR")
}
}
func TestActionsService_Good_DispatchWorkflow(t *testing.T) {
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPost {
t.Errorf("expected POST, got %s", r.Method)
}
if r.URL.Path != "/api/v1/repos/core/go-forge/actions/workflows/build.yml/dispatches" {
t.Errorf("wrong path: %s", r.URL.Path)
}
var body map[string]any
if err := json.NewDecoder(r.Body).Decode(&body); err != nil {
t.Fatal(err)
}
if body["ref"] != "main" {
t.Errorf("got ref=%v, want %q", body["ref"], "main")
}
w.WriteHeader(http.StatusNoContent)
}))
defer srv.Close()
f := NewForge(srv.URL, "tok")
err := f.Actions.DispatchWorkflow(context.Background(), "core", "go-forge", "build.yml", map[string]any{
"ref": "main",
})
if err != nil {
t.Fatal(err)
}
}
func TestActionsService_Bad_NotFound(t *testing.T) {
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusNotFound)
json.NewEncoder(w).Encode(map[string]string{"message": "not found"})
}))
defer srv.Close()
f := NewForge(srv.URL, "tok")
_, err := f.Actions.ListRepoSecrets(context.Background(), "core", "nonexistent")
if err == nil {
t.Fatal("expected error, got nil")
}
if !IsNotFound(err) {
t.Errorf("expected not-found error, got %v", err)
}
}