9b395f5cc3
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
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);
|
|
});
|
|
});
|