mirror of
https://github.com/Studio-Saelix/sencho.git
synced 2026-08-09 18:32:52 +00:00
f23b7e1bac
* feat: ordered multi-file Compose for Git sources
Extend Git sources to deploy an ordered list of compose files merged with
docker compose -f base.yaml -f override.yaml ..., plus an optional project
directory.
- Pick and reorder compose files from the repository tree (drag to reorder on
desktop, up/down arrows on phones); manual path entry is also supported.
- The ordered set drives every stack-scoped compose command (deploy, update,
start/stop/restart/down, image scans, Compose Doctor) and the container
lookup, so a service or image declared only in an override is handled too.
- Runtime keys off the materialized set, not the saved configuration: saving a
source does not change deploy args until the pull is applied, and apply
materializes from the pending snapshot rather than live config.
- The project directory is passed as --project-directory, with -p <stack>
pinning the Compose project so container labels stay stable.
- The Mesh override is layered last; single-file sources are byte-identical to
before, and existing rows keep working via the single-path fallback.
Docs cover the picker, ordering, project directory, and the new troubleshooting
and limitations (referenced files are not materialized; the dependency graph,
drift, and networking views read the primary file).
* fix: harden multi-file Git source (hash, unlink, collisions, node id)
- hashContent folds ordered file CONTENTS (not paths) so a clean multi-file
stack is not flagged as locally edited: create/apply hash the fetched files
(repo paths) while pull hashes the on-disk files (materialized paths), which
previously disagreed and showed a false "local edits detected".
- Block unlinking a multi-file or project-directory Git source (409): the deploy
spec lives on the source row, so removing it would silently revert deploys to
root compose.yaml. Single-file sources still unlink.
- Reject materialized-path collisions in the selection validator: an additional
file equal to or nested under compose.yaml, an ancestor/descendant overlap
between selected files, and a project directory nested under a compose file
(previously a 500 at materialization).
- DockerController.getContainersByStack uses the controller's node compose dir
and passes its node id to the authored prefix, instead of the process default.
* fix: CI failures on multi-file Git source (test crash, aria query, path barrier)
- GitSourceFields no longer crashes when repoUrl/branch are falsy: the canBrowse
trim() is optional-chained, so a reusable field component tolerates partial
props. Fixes the apply-binding panel test, which feeds a minimal source object.
- GitSourcePanel tests query the footer Remove button by its exact name, so the
picker's per-file "Remove <path>" buttons no longer collide with the broad
/remove/i match (the test intent, footer Remove present/absent, is unchanged).
- validateCompose uses an inline resolve + startsWith barrier at the context-dir
mkdir sink (CodeQL does not credit the wrapped isPathWithinBase helper),
clearing the js/path-injection alert. The containment check is equivalent and
contextDir is also validated upstream.
* test: update Git source E2E spec for the multi-file compose picker
The compose-file picker replaced the single #git-source-path input and added
per-file Remove buttons, so the E2E spec drove selectors that no longer exist:
- Drop the redundant compose.yaml fills (the picker defaults to compose.yaml).
- Select the footer Remove button by exact name so the picker's per-file
"Remove <path>" buttons no longer make the locator ambiguous.
- Set a custom compose path through the picker (add via the manual input, press
Enter, then remove the default compose.yaml).
* test: match the footer Remove button with an exact Playwright name
Playwright's getByRole name option is a substring match by default, so
{ name: 'Remove' } also matched the picker's "Remove <path>" buttons. Require an
exact match so only the footer Remove button is selected.
541 lines
22 KiB
TypeScript
541 lines
22 KiB
TypeScript
/**
|
|
* Route-layer tests for the git-source API.
|
|
*
|
|
* Covers input-validation and guard behavior that lives in the Express
|
|
* handlers (not in GitSourceService), specifically:
|
|
* - HTTPS-only repo URL enforcement
|
|
* - Max-length caps on repo_url / branch / compose_path / env_path / token
|
|
* - Stack-existence 404 guard on PUT
|
|
* - 400 on invalid stack names
|
|
*
|
|
* Service-layer logic (encryption, error mapping, mutex, pending lifecycle)
|
|
* is covered in git-source-service.test.ts.
|
|
*/
|
|
import { describe, it, expect, beforeAll, afterAll, vi } from 'vitest';
|
|
import request from 'supertest';
|
|
import jwt from 'jsonwebtoken';
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
import { setupTestDb, cleanupTestDb, TEST_USERNAME, TEST_JWT_SECRET } from './helpers/setupTestDb';
|
|
import { DatabaseService } from '../services/DatabaseService';
|
|
import { GitSourceService } from '../services/GitSourceService';
|
|
|
|
function seedGitSource(stackName: string): void {
|
|
DatabaseService.getInstance().upsertGitSource({
|
|
stack_name: stackName,
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
branch: 'main',
|
|
compose_path: 'compose.yaml',
|
|
compose_paths: ['compose.yaml'],
|
|
context_dir: null,
|
|
sync_env: false,
|
|
env_path: null,
|
|
auth_type: 'none',
|
|
encrypted_token: null,
|
|
auto_apply_on_webhook: false,
|
|
auto_deploy_on_apply: false,
|
|
last_applied_commit_sha: null,
|
|
last_applied_content_hash: null,
|
|
pending_commit_sha: null,
|
|
pending_compose_content: null,
|
|
pending_env_content: null,
|
|
pending_fetched_at: null,
|
|
last_debounce_at: null,
|
|
});
|
|
}
|
|
|
|
let tmpDir: string;
|
|
let app: import('express').Express;
|
|
|
|
function adminToken(): string {
|
|
return jwt.sign({ username: TEST_USERNAME, role: 'admin' }, TEST_JWT_SECRET, { expiresIn: '1m' });
|
|
}
|
|
|
|
beforeAll(async () => {
|
|
tmpDir = await setupTestDb();
|
|
({ app } = await import('../index'));
|
|
|
|
// Seed a real stack directory so the PUT handler's existence guard is satisfied
|
|
// for tests that need to exercise validation past that point.
|
|
const composeDir = process.env.COMPOSE_DIR!;
|
|
fs.mkdirSync(path.join(composeDir, 'existing-stack'), { recursive: true });
|
|
fs.writeFileSync(path.join(composeDir, 'existing-stack', 'compose.yaml'), 'services:\n x:\n image: nginx\n');
|
|
});
|
|
|
|
afterAll(() => {
|
|
cleanupTestDb(tmpDir);
|
|
});
|
|
|
|
describe('PUT /api/stacks/:stackName/git-source — URL validation', () => {
|
|
it('rejects http:// URLs with 400', async () => {
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
repo_url: 'http://github.com/example/repo.git',
|
|
branch: 'main',
|
|
compose_path: 'compose.yaml',
|
|
auth_type: 'none',
|
|
});
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/HTTPS/i);
|
|
});
|
|
|
|
it('rejects missing repo_url with 400', async () => {
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
branch: 'main',
|
|
compose_path: 'compose.yaml',
|
|
auth_type: 'none',
|
|
});
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/repo_url/i);
|
|
});
|
|
});
|
|
|
|
describe('PUT /api/stacks/:stackName/git-source — max-length caps', () => {
|
|
const baseBody = {
|
|
branch: 'main',
|
|
compose_path: 'compose.yaml',
|
|
auth_type: 'none' as const,
|
|
};
|
|
|
|
it('rejects oversized repo_url', async () => {
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({ ...baseBody, repo_url: 'https://example.com/' + 'a'.repeat(2048) });
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/repo_url/i);
|
|
});
|
|
|
|
it('rejects oversized branch', async () => {
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
...baseBody,
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
branch: 'b'.repeat(300),
|
|
});
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/branch/i);
|
|
});
|
|
|
|
it('rejects oversized compose_path', async () => {
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
...baseBody,
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
compose_path: 'c'.repeat(1100),
|
|
});
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/compose path/i);
|
|
});
|
|
|
|
it('rejects oversized env_path', async () => {
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
...baseBody,
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
env_path: 'e'.repeat(1100),
|
|
});
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/env_path/i);
|
|
});
|
|
|
|
it('rejects oversized token', async () => {
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
...baseBody,
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
auth_type: 'token',
|
|
token: 't'.repeat(9000),
|
|
});
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/token/i);
|
|
});
|
|
});
|
|
|
|
describe('PUT /api/stacks/:stackName/git-source — stack existence guard', () => {
|
|
it('returns 404 when the stack does not exist on the active node', async () => {
|
|
const res = await request(app)
|
|
.put('/api/stacks/ghost-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
branch: 'main',
|
|
compose_path: 'compose.yaml',
|
|
auth_type: 'none',
|
|
});
|
|
expect(res.status).toBe(404);
|
|
expect(res.body.error).toMatch(/stack not found/i);
|
|
});
|
|
});
|
|
|
|
describe('git-source routes — repository path validation', () => {
|
|
it('rejects compose_path traversal before service execution', async () => {
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
branch: 'main',
|
|
compose_path: '../compose.yaml',
|
|
auth_type: 'none',
|
|
});
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/compose path/i);
|
|
});
|
|
|
|
it('rejects absolute env_path on create-from-git', async () => {
|
|
const res = await request(app)
|
|
.post('/api/stacks/from-git')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
stack_name: 'route-from-git-env-abs',
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
branch: 'main',
|
|
compose_path: 'compose.yaml',
|
|
sync_env: true,
|
|
env_path: '/etc/passwd',
|
|
auth_type: 'none',
|
|
});
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/env_path/i);
|
|
});
|
|
|
|
it('rejects string auto_deploy_on_apply on update', async () => {
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
branch: 'main',
|
|
compose_path: 'compose.yaml',
|
|
auth_type: 'none',
|
|
auto_deploy_on_apply: 'true',
|
|
});
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/auto_deploy_on_apply/i);
|
|
});
|
|
|
|
it('rejects string auto_deploy_on_apply on create-from-git', async () => {
|
|
const res = await request(app)
|
|
.post('/api/stacks/from-git')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
stack_name: 'route-from-git-auto-deploy-string',
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
branch: 'main',
|
|
compose_path: 'compose.yaml',
|
|
auth_type: 'none',
|
|
auto_deploy_on_apply: 'true',
|
|
});
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/auto_deploy_on_apply/i);
|
|
});
|
|
});
|
|
|
|
describe('git-source routes — invalid stack names', () => {
|
|
it('returns 400 for traversal attempts on GET per-stack', async () => {
|
|
const res = await request(app)
|
|
.get('/api/stacks/..%2fescape/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`);
|
|
// URL-decoded name `../escape` fails isValidStackName.
|
|
expect([400, 404]).toContain(res.status);
|
|
});
|
|
});
|
|
|
|
describe('GET /api/stacks/:stackName/git-source', () => {
|
|
it('returns 200 { linked: false } when the stack exists but has no Git source', async () => {
|
|
const composeDir = process.env.COMPOSE_DIR!;
|
|
fs.mkdirSync(path.join(composeDir, 'unlinked-stack'), { recursive: true });
|
|
fs.writeFileSync(path.join(composeDir, 'unlinked-stack', 'compose.yaml'), 'services:\n x:\n image: nginx\n');
|
|
const res = await request(app)
|
|
.get('/api/stacks/unlinked-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`);
|
|
expect(res.status).toBe(200);
|
|
expect(res.body).toEqual({ linked: false });
|
|
});
|
|
|
|
it('returns 404 when the stack does not exist on the active node', async () => {
|
|
const res = await request(app)
|
|
.get('/api/stacks/ghost-stack-get/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`);
|
|
expect(res.status).toBe(404);
|
|
expect(res.body.error).toMatch(/stack not found/i);
|
|
});
|
|
|
|
it('returns 200 with the source object when a Git source is configured', async () => {
|
|
const composeDir = process.env.COMPOSE_DIR!;
|
|
fs.mkdirSync(path.join(composeDir, 'linked-stack'), { recursive: true });
|
|
fs.writeFileSync(path.join(composeDir, 'linked-stack', 'compose.yaml'), 'services:\n x:\n image: nginx\n');
|
|
seedGitSource('linked-stack');
|
|
const res = await request(app)
|
|
.get('/api/stacks/linked-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`);
|
|
expect(res.status).toBe(200);
|
|
expect(res.body.stack_name).toBe('linked-stack');
|
|
expect(res.body.repo_url).toBe('https://github.com/example/repo.git');
|
|
expect(res.body.linked).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe('PUT /api/stacks/:stackName/git-source: multi-file selection', () => {
|
|
// The success-path tests forward a parsed selection to upsert(), whose dry-run
|
|
// fetch would clone a real repo. Stub upsert so the assertion stays at the
|
|
// route layer (parse + forward) without network. Rejection-path tests hit the
|
|
// parseComposeSelection 400 before upsert is ever reached, so they need no stub.
|
|
it('persists a compose_paths array and forwards it to the service', async () => {
|
|
const upsertSpy = vi.spyOn(GitSourceService.getInstance(), 'upsert')
|
|
.mockResolvedValue({} as Awaited<ReturnType<typeof GitSourceService.prototype.upsert>>);
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
branch: 'main',
|
|
compose_paths: ['infra/base.yml', 'infra/prod.yml'],
|
|
context_dir: 'app',
|
|
auth_type: 'none',
|
|
});
|
|
expect(res.status).toBe(200);
|
|
expect(upsertSpy).toHaveBeenCalledWith(expect.objectContaining({
|
|
composePaths: ['infra/base.yml', 'infra/prod.yml'],
|
|
contextDir: 'app',
|
|
}));
|
|
upsertSpy.mockRestore();
|
|
});
|
|
|
|
it('still accepts the legacy compose_path string and maps it to a one-element array', async () => {
|
|
const upsertSpy = vi.spyOn(GitSourceService.getInstance(), 'upsert')
|
|
.mockResolvedValue({} as Awaited<ReturnType<typeof GitSourceService.prototype.upsert>>);
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
branch: 'main',
|
|
compose_path: 'stacks/web/compose.yaml',
|
|
auth_type: 'none',
|
|
});
|
|
expect(res.status).toBe(200);
|
|
expect(upsertSpy).toHaveBeenCalledWith(expect.objectContaining({
|
|
composePaths: ['stacks/web/compose.yaml'],
|
|
contextDir: null,
|
|
}));
|
|
upsertSpy.mockRestore();
|
|
});
|
|
|
|
it('rejects a compose_paths array with more than 10 files (400)', async () => {
|
|
const tooMany = Array.from({ length: 11 }, (_, i) => `f${i}.yml`);
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
branch: 'main',
|
|
compose_paths: tooMany,
|
|
auth_type: 'none',
|
|
});
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/exceed/i);
|
|
});
|
|
|
|
it('rejects duplicate entries in compose_paths (400)', async () => {
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
branch: 'main',
|
|
compose_paths: ['compose.yaml', 'infra/prod.yml', 'infra/prod.yml'],
|
|
auth_type: 'none',
|
|
});
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/duplicate/i);
|
|
});
|
|
|
|
it('rejects a context_dir that collides with the primary compose.yaml (400)', async () => {
|
|
const res = await request(app)
|
|
.put('/api/stacks/existing-stack/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
branch: 'main',
|
|
compose_paths: ['compose.yaml'],
|
|
context_dir: 'compose.yaml',
|
|
auth_type: 'none',
|
|
});
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/context_dir/i);
|
|
});
|
|
});
|
|
|
|
describe('POST /api/stacks/from-git', () => {
|
|
const validBody = {
|
|
stack_name: 'route-from-git',
|
|
repo_url: 'https://github.com/example/repo.git',
|
|
branch: 'main',
|
|
compose_path: 'compose.yaml',
|
|
auth_type: 'none' as const,
|
|
};
|
|
|
|
it('returns 401 without auth', async () => {
|
|
const res = await request(app).post('/api/stacks/from-git').send(validBody);
|
|
expect(res.status).toBe(401);
|
|
});
|
|
|
|
it('rejects missing stack_name with 400', async () => {
|
|
const { stack_name: _unused, ...body } = validBody;
|
|
void _unused;
|
|
const res = await request(app)
|
|
.post('/api/stacks/from-git')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send(body);
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/stack_name/i);
|
|
});
|
|
|
|
it('rejects invalid stack name with 400', async () => {
|
|
const res = await request(app)
|
|
.post('/api/stacks/from-git')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({ ...validBody, stack_name: '../escape' });
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/stack name/i);
|
|
});
|
|
|
|
it('rejects http:// URLs with 400', async () => {
|
|
const res = await request(app)
|
|
.post('/api/stacks/from-git')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({ ...validBody, repo_url: 'http://github.com/example/repo.git' });
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/HTTPS/i);
|
|
});
|
|
|
|
it('rejects oversized repo_url with 400', async () => {
|
|
const res = await request(app)
|
|
.post('/api/stacks/from-git')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({ ...validBody, repo_url: 'https://example.com/' + 'a'.repeat(2048) });
|
|
expect(res.status).toBe(400);
|
|
expect(res.body.error).toMatch(/repo_url/i);
|
|
});
|
|
|
|
it('returns 409 when a stack with that name already exists on disk', async () => {
|
|
const res = await request(app)
|
|
.post('/api/stacks/from-git')
|
|
.set('Authorization', `Bearer ${adminToken()}`)
|
|
.send({ ...validBody, stack_name: 'existing-stack' });
|
|
expect(res.status).toBe(409);
|
|
expect(res.body.error).toMatch(/already exists/i);
|
|
});
|
|
});
|
|
|
|
describe('POST /api/stacks/:stackName/git-source/webhook-pull status codes', () => {
|
|
it('returns 404 (not 200) when the stack has no Git source configured', async () => {
|
|
const res = await request(app)
|
|
.post('/api/stacks/existing-stack/git-source/webhook-pull')
|
|
.set('Authorization', `Bearer ${adminToken()}`);
|
|
expect(res.status).toBe(404);
|
|
expect(res.body.error).toMatch(/no git source/i);
|
|
});
|
|
|
|
it('returns 401 without auth', async () => {
|
|
const res = await request(app).post('/api/stacks/existing-stack/git-source/webhook-pull');
|
|
expect(res.status).toBe(401);
|
|
});
|
|
|
|
it('maps a failed pull to 422 (not 200) so a Git provider sees the failure', async () => {
|
|
seedGitSource('webhook-status-422');
|
|
const pullSpy = vi.spyOn(GitSourceService.getInstance(), 'handleWebhookPull')
|
|
.mockResolvedValue({ status: 'error', message: 'Validation failed: bad compose' });
|
|
const res = await request(app)
|
|
.post('/api/stacks/webhook-status-422/git-source/webhook-pull')
|
|
.set('Authorization', `Bearer ${adminToken()}`);
|
|
expect(res.status).toBe(422);
|
|
expect(res.body.status).toBe('error');
|
|
pullSpy.mockRestore();
|
|
});
|
|
|
|
it('maps a debounced pull to 202', async () => {
|
|
seedGitSource('webhook-status-202');
|
|
const pullSpy = vi.spyOn(GitSourceService.getInstance(), 'handleWebhookPull')
|
|
.mockResolvedValue({ status: 'skipped', message: 'Rate limited (debounced).' });
|
|
const res = await request(app)
|
|
.post('/api/stacks/webhook-status-202/git-source/webhook-pull')
|
|
.set('Authorization', `Bearer ${adminToken()}`);
|
|
expect(res.status).toBe(202);
|
|
pullSpy.mockRestore();
|
|
});
|
|
|
|
it('maps a successful pull to 200', async () => {
|
|
seedGitSource('webhook-status-200');
|
|
const pullSpy = vi.spyOn(GitSourceService.getInstance(), 'handleWebhookPull')
|
|
.mockResolvedValue({ status: 'success', message: 'Pending update ready at abc1234.' });
|
|
const res = await request(app)
|
|
.post('/api/stacks/webhook-status-200/git-source/webhook-pull')
|
|
.set('Authorization', `Bearer ${adminToken()}`);
|
|
expect(res.status).toBe(200);
|
|
pullSpy.mockRestore();
|
|
});
|
|
});
|
|
|
|
describe('DELETE /api/stacks/:stackName/git-source — multi-file unlink guard', () => {
|
|
it('blocks unlinking a multi-file source with 409 and keeps the row', async () => {
|
|
seedGitSource('mf-unlink');
|
|
DatabaseService.getInstance().setGitSourceAppliedSpec('mf-unlink', { files: ['compose.yaml', 'infra/prod.yml'], contextDir: null });
|
|
const res = await request(app)
|
|
.delete('/api/stacks/mf-unlink/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`);
|
|
expect(res.status).toBe(409);
|
|
expect(res.body.error).toMatch(/multiple compose files/i);
|
|
expect(DatabaseService.getInstance().getGitSource('mf-unlink')).toBeTruthy();
|
|
});
|
|
|
|
it('blocks unlinking a context-dir source with 409', async () => {
|
|
seedGitSource('ctx-unlink');
|
|
DatabaseService.getInstance().setGitSourceAppliedSpec('ctx-unlink', { files: ['compose.yaml'], contextDir: 'app' });
|
|
const res = await request(app)
|
|
.delete('/api/stacks/ctx-unlink/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`);
|
|
expect(res.status).toBe(409);
|
|
expect(DatabaseService.getInstance().getGitSource('ctx-unlink')).toBeTruthy();
|
|
});
|
|
|
|
it('allows unlinking a single-file source', async () => {
|
|
seedGitSource('sf-unlink');
|
|
const res = await request(app)
|
|
.delete('/api/stacks/sf-unlink/git-source')
|
|
.set('Authorization', `Bearer ${adminToken()}`);
|
|
expect(res.status).toBe(200);
|
|
expect(DatabaseService.getInstance().getGitSource('sf-unlink')).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe('GET /api/git-sources', () => {
|
|
it('returns 200 and a JSON array for an authenticated admin', async () => {
|
|
const res = await request(app)
|
|
.get('/api/git-sources')
|
|
.set('Authorization', `Bearer ${adminToken()}`);
|
|
expect(res.status).toBe(200);
|
|
expect(Array.isArray(res.body)).toBe(true);
|
|
});
|
|
|
|
it('returns 401 without a valid token', async () => {
|
|
const res = await request(app).get('/api/git-sources');
|
|
expect(res.status).toBe(401);
|
|
});
|
|
});
|