mirror of
https://github.com/jackwener/OpenCLI.git
synced 2026-09-14 18:25:42 +08:00
d2974a9ff6
* refactor(adapters): convert adapter layer from TypeScript to JavaScript Core framework stays TypeScript; adapter layer moves to JS-first. Adapters are essentially "executable config + browser scripts" that barely use TS features — this simplifies the build/distribution pipeline by removing the dist/clis/ intermediate compilation step. Changes: - Convert all 753 adapter files in clis/ from .ts to .js - Update tsconfig to exclude clis/ from compilation - Simplify build-manifest to scan clis/*.js directly (no dist/clis/) - Update discovery, main, fetch-adapters to load JS adapters from clis/ - Update generate-verified to output .js artifacts - Update package.json files field: dist/clis/ → clis/ - Fix all test files for the .ts → .js transition * fix(main): use findPackageRoot for BUILTIN_CLIS path The previous relative path (../../clis from __dirname) only worked for dist/src/main.js but broke dev mode (tsx src/main.ts) where __dirname is <repo>/src — resolving to /clis instead of <repo>/clis. Use findPackageRoot() which works for both dev and prod paths.
59 lines
2.3 KiB
JavaScript
59 lines
2.3 KiB
JavaScript
import { describe, expect, it, vi } from 'vitest';
|
|
import { AuthRequiredError, CommandExecutionError } from '@jackwener/opencli/errors';
|
|
import { apiGet, apiPost, extractPwdId, getShareList, getToken } from './utils.js';
|
|
function makePage(evaluateImpl) {
|
|
return {
|
|
evaluate: vi.fn(evaluateImpl),
|
|
};
|
|
}
|
|
describe('quark utils', () => {
|
|
it('extractPwdId accepts share URLs and raw ids', () => {
|
|
expect(extractPwdId('https://pan.quark.cn/s/abc123')).toBe('abc123');
|
|
expect(extractPwdId('abc123')).toBe('abc123');
|
|
});
|
|
it('maps JSON auth failures to AuthRequiredError', async () => {
|
|
const page = makePage(async () => ({
|
|
status: 401,
|
|
code: 401,
|
|
message: '未登录',
|
|
data: null,
|
|
}));
|
|
await expect(apiGet(page, 'https://drive-pc.quark.cn/test')).rejects.toBeInstanceOf(AuthRequiredError);
|
|
});
|
|
it('maps non-JSON auth pages to AuthRequiredError', async () => {
|
|
const page = makePage(async () => {
|
|
const error = Object.assign(new Error('Non-JSON response: <html><title>登录</title></html>'), { status: 401 });
|
|
throw error;
|
|
});
|
|
await expect(apiPost(page, 'https://drive-pc.quark.cn/test', {})).rejects.toBeInstanceOf(AuthRequiredError);
|
|
});
|
|
it('keeps generic API failures as CommandExecutionError', async () => {
|
|
const page = makePage(async () => ({
|
|
status: 500,
|
|
code: 500,
|
|
message: 'server busy',
|
|
data: null,
|
|
}));
|
|
await expect(apiGet(page, 'https://drive-pc.quark.cn/test')).rejects.toBeInstanceOf(CommandExecutionError);
|
|
});
|
|
it('unwraps successful token responses', async () => {
|
|
const page = makePage(async () => ({
|
|
status: 200,
|
|
code: 0,
|
|
message: 'ok',
|
|
data: { stoken: 'token123' },
|
|
}));
|
|
await expect(getToken(page, 'abc123')).resolves.toBe('token123');
|
|
});
|
|
it('maps share-tree detail auth failures to AuthRequiredError', async () => {
|
|
const page = makePage(async () => ({
|
|
status: 401,
|
|
code: 401,
|
|
message: '请先登录',
|
|
data: null,
|
|
metadata: { _total: 0 },
|
|
}));
|
|
await expect(getShareList(page, 'abc123', 'token123')).rejects.toBeInstanceOf(AuthRequiredError);
|
|
});
|
|
});
|