feat: v6 polish — per-publisher namespacing + auto-create project (#71)
Some checks failed
CI/CD / typecheck (push) Successful in 57s
CI/CD / test (push) Successful in 1m13s
CI/CD / lint (push) Successful in 2m51s
CI/CD / smoke (push) Failing after 1m45s
CI/CD / build (push) Successful in 5m47s
CI/CD / publish (push) Has been skipped

This commit was merged in pull request #71.
This commit is contained in:
2026-04-28 23:33:39 +00:00
7 changed files with 304 additions and 21 deletions

View File

@@ -0,0 +1,61 @@
/**
* v6 unit tests for the per-publisher namespacing helpers
* (loadPublisherSuffix + applyPublisherSuffix). The wiring through
* mcplocal/main.ts is exercised at the smoke level; these tests
* cover the pure logic so name-mangling regressions are caught fast.
*/
import { describe, it, expect, beforeEach, afterEach, vi } from 'vitest';
import { resetConfigCache, applyPublisherSuffix, loadPublisherSuffix } from '../src/http/config.js';
describe('applyPublisherSuffix', () => {
it('passes the name through unchanged when the suffix is empty', () => {
// Empty suffix is the legacy code path — pre-v6 behavior.
expect(applyPublisherSuffix('vllm-local-qwen3', '')).toBe('vllm-local-qwen3');
});
it('appends -<suffix> to a normal name', () => {
expect(applyPublisherSuffix('vllm-local-qwen3', 'alice')).toBe('vllm-local-qwen3-alice');
});
it('throws when the combined length exceeds the 100-char limit', () => {
// Name validation on mcpd's side caps at 100; we'd rather error
// loud at enqueue time than have the register POST 422 later.
const longName = 'a'.repeat(95);
expect(() => applyPublisherSuffix(longName, 'alicebob')).toThrow(/100-char limit/);
});
it('lets a name + short suffix exactly hit 100', () => {
const name = 'a'.repeat(95);
expect(applyPublisherSuffix(name, 'four')).toHaveLength(100);
});
});
describe('loadPublisherSuffix', () => {
beforeEach(() => {
resetConfigCache();
vi.unstubAllEnvs();
});
afterEach(() => {
vi.unstubAllEnvs();
resetConfigCache();
});
it('honors MCPCTL_PUBLISHER_SUFFIX env var (operations override)', () => {
// Env override takes precedence so an operator can flip the suffix
// for a one-off run without touching ~/.mcpctl/config.json.
expect(loadPublisherSuffix({ MCPCTL_PUBLISHER_SUFFIX: 'BoB.Lap-top' })).toBe('bob-lap-top');
});
it('returns empty string when neither env nor config sets a suffix', () => {
expect(loadPublisherSuffix({})).toBe('');
});
it('sanitizes uppercase + special chars + collapses runs', () => {
expect(loadPublisherSuffix({ MCPCTL_PUBLISHER_SUFFIX: "Alice's-MacBook.Pro!!" })).toBe('alice-s-macbook-pro');
});
it('strips leading/trailing dashes after sanitization', () => {
expect(loadPublisherSuffix({ MCPCTL_PUBLISHER_SUFFIX: '___bob___' })).toBe('bob');
});
});