mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-16 10:16:49 +00:00
The upstream router-for-me/CLIProxyAPIPlus repo was deleted, breaking any install/update path that resolved backend: plus. Existing users with `backend: plus` saved in config.yaml hit 404s on every bootstrap. Changes: - Flip DEFAULT_BACKEND from 'plus' to 'original' (platform-detector.ts) - Flip default cliproxy.backend in createEmptyUnifiedConfig() to 'original' - Runtime 404 fallback: getConfiguredBackend() degrades 'plus' -> 'original' with a one-time warning, so existing installations keep working without a manual reconfig step - Update CLIProxyBackend docblock to document the fallback behavior - Update tests to match new default Retains the 'plus' type and BACKEND_CONFIG entry for forward compatibility once CCS self-maintains its own Plus fork. Closes #1062
143 lines
5.7 KiB
JavaScript
143 lines
5.7 KiB
JavaScript
/**
|
|
* Tests for CLIProxy Backend Selection
|
|
* Verifies backend selection feature for original vs plus CLIProxyAPI variants
|
|
*/
|
|
|
|
const assert = require('assert');
|
|
|
|
describe('Backend Selection', () => {
|
|
const platformDetector = require('../../../dist/cliproxy/platform-detector');
|
|
const types = require('../../../dist/cliproxy/types');
|
|
|
|
describe('BACKEND_CONFIG', () => {
|
|
it('has correct configuration for original backend', () => {
|
|
const config = platformDetector.BACKEND_CONFIG.original;
|
|
assert.strictEqual(config.repo, 'router-for-me/CLIProxyAPI');
|
|
assert.strictEqual(config.binaryPrefix, 'CLIProxyAPI');
|
|
assert.strictEqual(config.executable, 'cli-proxy-api');
|
|
assert(config.fallbackVersion.match(/^\d+\.\d+\.\d+$/), 'original version has no suffix');
|
|
});
|
|
|
|
it('has correct configuration for plus backend', () => {
|
|
const config = platformDetector.BACKEND_CONFIG.plus;
|
|
assert.strictEqual(config.repo, 'router-for-me/CLIProxyAPIPlus');
|
|
assert.strictEqual(config.binaryPrefix, 'CLIProxyAPIPlus');
|
|
assert.strictEqual(config.executable, 'cli-proxy-api-plus');
|
|
assert(config.fallbackVersion.match(/^\d+\.\d+\.\d+-\d+$/), 'plus version has -0 suffix');
|
|
});
|
|
});
|
|
|
|
describe('DEFAULT_BACKEND', () => {
|
|
it('defaults to original backend (Plus upstream deleted, issue #1062)', () => {
|
|
assert.strictEqual(platformDetector.DEFAULT_BACKEND, 'original');
|
|
});
|
|
});
|
|
|
|
describe('detectPlatform', () => {
|
|
it('generates correct binary name for original backend', () => {
|
|
const info = platformDetector.detectPlatform('6.6.51', 'original');
|
|
assert(info.binaryName.startsWith('CLIProxyAPI_6.6.51_'));
|
|
assert(!info.binaryName.includes('CLIProxyAPIPlus'));
|
|
});
|
|
|
|
it('generates correct binary name for plus backend', () => {
|
|
const info = platformDetector.detectPlatform('6.6.51-0', 'plus');
|
|
assert(info.binaryName.startsWith('CLIProxyAPIPlus_6.6.51-0_'));
|
|
});
|
|
|
|
it('uses original backend by default (Plus upstream deleted, issue #1062)', () => {
|
|
const info = platformDetector.detectPlatform();
|
|
assert(info.binaryName.startsWith('CLIProxyAPI_'));
|
|
assert(!info.binaryName.includes('CLIProxyAPIPlus'));
|
|
});
|
|
|
|
it('uses fallback version when version not specified', () => {
|
|
const infoOriginal = platformDetector.detectPlatform(undefined, 'original');
|
|
const fallbackOriginal = platformDetector.BACKEND_CONFIG.original.fallbackVersion;
|
|
assert(infoOriginal.binaryName.includes(fallbackOriginal));
|
|
|
|
const infoPlus = platformDetector.detectPlatform(undefined, 'plus');
|
|
const fallbackPlus = platformDetector.BACKEND_CONFIG.plus.fallbackVersion;
|
|
assert(infoPlus.binaryName.includes(fallbackPlus));
|
|
});
|
|
});
|
|
|
|
describe('getExecutableName', () => {
|
|
const isWindows = process.platform === 'win32';
|
|
|
|
it('returns correct name for original backend', () => {
|
|
const name = platformDetector.getExecutableName('original');
|
|
const expected = isWindows ? 'cli-proxy-api.exe' : 'cli-proxy-api';
|
|
assert.strictEqual(name, expected);
|
|
});
|
|
|
|
it('returns correct name for plus backend', () => {
|
|
const name = platformDetector.getExecutableName('plus');
|
|
const expected = isWindows ? 'cli-proxy-api-plus.exe' : 'cli-proxy-api-plus';
|
|
assert.strictEqual(name, expected);
|
|
});
|
|
|
|
it('defaults to original backend (Plus upstream deleted, issue #1062)', () => {
|
|
const name = platformDetector.getExecutableName();
|
|
const expected = isWindows ? 'cli-proxy-api.exe' : 'cli-proxy-api';
|
|
assert.strictEqual(name, expected);
|
|
});
|
|
});
|
|
|
|
describe('getDownloadUrl', () => {
|
|
it('uses correct repo for original backend', () => {
|
|
const url = platformDetector.getDownloadUrl('6.6.51', 'original');
|
|
assert(url.includes('router-for-me/CLIProxyAPI/releases'));
|
|
assert(!url.includes('CLIProxyAPIPlus'));
|
|
});
|
|
|
|
it('uses correct repo for plus backend', () => {
|
|
const url = platformDetector.getDownloadUrl('6.6.51-0', 'plus');
|
|
assert(url.includes('router-for-me/CLIProxyAPIPlus/releases'));
|
|
});
|
|
|
|
it('defaults to original backend (Plus upstream deleted, issue #1062)', () => {
|
|
const url = platformDetector.getDownloadUrl();
|
|
assert(url.includes('router-for-me/CLIProxyAPI/releases'));
|
|
assert(!url.includes('CLIProxyAPIPlus'));
|
|
});
|
|
});
|
|
|
|
describe('getFallbackVersion', () => {
|
|
it('returns correct version for original backend', () => {
|
|
const version = platformDetector.getFallbackVersion('original');
|
|
assert.strictEqual(version, platformDetector.BACKEND_CONFIG.original.fallbackVersion);
|
|
});
|
|
|
|
it('returns correct version for plus backend', () => {
|
|
const version = platformDetector.getFallbackVersion('plus');
|
|
assert.strictEqual(version, platformDetector.BACKEND_CONFIG.plus.fallbackVersion);
|
|
});
|
|
});
|
|
|
|
describe('PLUS_ONLY_PROVIDERS', () => {
|
|
it('includes kiro as plus-only provider', () => {
|
|
assert(types.PLUS_ONLY_PROVIDERS.includes('kiro'));
|
|
});
|
|
|
|
it('includes ghcp as plus-only provider', () => {
|
|
assert(types.PLUS_ONLY_PROVIDERS.includes('ghcp'));
|
|
});
|
|
|
|
it('includes the newer CLIProxyAPIPlus providers as plus-only', () => {
|
|
assert(types.PLUS_ONLY_PROVIDERS.includes('cursor'));
|
|
assert(types.PLUS_ONLY_PROVIDERS.includes('gitlab'));
|
|
assert(types.PLUS_ONLY_PROVIDERS.includes('codebuddy'));
|
|
assert(types.PLUS_ONLY_PROVIDERS.includes('kilo'));
|
|
});
|
|
|
|
it('does not include gemini as plus-only provider', () => {
|
|
assert(!types.PLUS_ONLY_PROVIDERS.includes('gemini'));
|
|
});
|
|
|
|
it('does not include agy as plus-only provider', () => {
|
|
assert(!types.PLUS_ONLY_PROVIDERS.includes('agy'));
|
|
});
|
|
});
|
|
});
|