Некоторые проверки не удались
CI / test (push) Failing after 6s
Docker / Build and publish worker image (push) Failing after 8s
Add an internal/compose package that discovers Compose projects via `docker compose ls` + `docker ps` labels (grouped by com.docker.compose.project/service) and enriches each container with `docker inspect` ports/mounts and Traefik router labels. Management runs `docker compose` in each project's working directory for up/down/stop/restart/pull plus per-service variants and log tails. Wire it into the webapp: a 60s ComposeRefresher (constructed in New, started in Start, stopped in Close), a /compose list + detail + logs HTML surface, and /web/api/compose/* JSON endpoints (list, detail, logs, project/service lifecycle). Browser lifecycle POSTs are session+CSRF protected; the /web/api/* variants accept HTTP basic auth. WORKER_COMPOSE_ENABLED defaults on (false to disable). Tests cover discovery parsing/grouping/traefik/summary, the action allowlists, and the full handler surface (list/detail/logs HTML+API, CSRF enforcement, disabled/unknown-action rejection, audit writes, success+failure exec paths) via a stub Docker binary.
47 строки
1.1 KiB
Makefile
47 строки
1.1 KiB
Makefile
BINARY := bin/rsmon-worker
|
|
VERSION ?= dev
|
|
COMMIT ?= $(shell git rev-parse --short=12 HEAD 2>/dev/null || printf unknown)
|
|
BUILD_DATE ?= $(shell date -u +%Y-%m-%dT%H:%M:%SZ)
|
|
LDFLAGS := -s -w -X main.version=$(VERSION) -X main.commit=$(COMMIT) -X main.buildDate=$(BUILD_DATE)
|
|
|
|
.PHONY: build test check image clean
|
|
|
|
build:
|
|
mkdir -p bin
|
|
CGO_ENABLED=0 go build -trimpath -ldflags="$(LDFLAGS)" -o $(BINARY) ./cmd/rsmon-worker
|
|
|
|
test:
|
|
RSMON_ENV=test CWD=$(CURDIR) go test \
|
|
./cmd/rsmon-worker \
|
|
./internal/distworker \
|
|
./internal/installer \
|
|
./internal/webapp \
|
|
./internal/compose \
|
|
./internal/workercluster \
|
|
./internal/wire \
|
|
./internal/checkexec \
|
|
./checks/calls \
|
|
./checks/cbssl \
|
|
./checks/cdns \
|
|
./checks/cftp \
|
|
./checks/chttp \
|
|
./checks/cping \
|
|
./checks/cssh \
|
|
./checks/cssl \
|
|
./checks/ctcp \
|
|
./checks/cudp \
|
|
./checks/cwhois \
|
|
./checks/llmhttp
|
|
|
|
check:
|
|
go mod tidy
|
|
git diff --exit-code -- go.mod go.sum
|
|
$(MAKE) test
|
|
$(MAKE) build
|
|
|
|
image:
|
|
docker build --build-arg VERSION=$(VERSION) --build-arg COMMIT=$(COMMIT) --build-arg BUILD_DATE=$(BUILD_DATE) -t rsmon-worker:local .
|
|
|
|
clean:
|
|
rm -rf bin dist
|