Files
jackwener__opencli/tests/e2e/browser-auth.test.ts
X 61b247f90c feat(quark): add Quark Drive adapter (#858)
* feat(quark): add Quark Drive adapter (ls, mkdir, mv, rename, rm, save, share-tree)

Browser-based adapter for Quark Cloud Drive (pan.quark.cn) using cookie
strategy. Supports file browsing, folder management, and saving shared
files with task polling for async operations.

* fix(quark): address review feedback on adapter correctness and docs

- ls: fix depth off-by-one (default 0 now lists target folder only)
- save/mv: report success only after pollTask confirms completion; throw on timeout
- save/mv: reject combining --to and --to-fid instead of silently preferring --to-fid
- utils: check content-type before calling r.json() to handle non-JSON responses gracefully
- tests: add quark graceful auth-failure E2E cases for all 7 commands
- docs: add Browser Bridge extension to prerequisites; fix mkdir --parent example; expand command table with positional args; add Notes section explaining stoken flow

* fix(quark): map auth failures and cover utils

* fix(quark): reuse auth mapping for share-tree

---------

Co-authored-by: xzy <xzy@mbp-m5.local>
Co-authored-by: jackwener <jakevingoo@gmail.com>
2026-04-08 00:28:59 +08:00

184 lines
7.8 KiB
TypeScript

/**
* E2E tests for login-required browser commands.
* These commands REQUIRE authentication (cookie/session).
* In CI (headless, no login), they should fail gracefully — NOT crash.
*
* These tests verify the error handling path, not the data extraction.
*/
import { describe, it } from 'vitest';
import { expectGracefulAuthFailure } from './browser-auth-helpers.js';
describe('login-required commands — graceful failure', () => {
// ── bilibili (requires cookie session) ──
it('bilibili me fails gracefully without login', async () => {
await expectGracefulAuthFailure(['bilibili', 'me', '-f', 'json']);
}, 60_000);
it('bilibili dynamic fails gracefully without login', async () => {
await expectGracefulAuthFailure(['bilibili', 'dynamic', '--limit', '3', '-f', 'json']);
}, 60_000);
it('bilibili favorite fails gracefully without login', async () => {
await expectGracefulAuthFailure(['bilibili', 'favorite', '--limit', '3', '-f', 'json']);
}, 60_000);
it('bilibili history fails gracefully without login', async () => {
await expectGracefulAuthFailure(['bilibili', 'history', '--limit', '3', '-f', 'json']);
}, 60_000);
it('bilibili following fails gracefully without login', async () => {
await expectGracefulAuthFailure(['bilibili', 'following', '--limit', '3', '-f', 'json']);
}, 60_000);
// ── twitter (requires login) ──
it('twitter bookmarks fails gracefully without login', async () => {
await expectGracefulAuthFailure(['twitter', 'bookmarks', '--limit', '3', '-f', 'json']);
}, 60_000);
it('twitter timeline fails gracefully without login', async () => {
await expectGracefulAuthFailure(['twitter', 'timeline', '--limit', '3', '-f', 'json']);
}, 60_000);
it('twitter notifications fails gracefully without login', async () => {
await expectGracefulAuthFailure(['twitter', 'notifications', '--limit', '3', '-f', 'json']);
}, 60_000);
// ── v2ex (requires login) ──
it('v2ex me fails gracefully without login', async () => {
await expectGracefulAuthFailure(['v2ex', 'me', '-f', 'json']);
}, 60_000);
it('v2ex notifications fails gracefully without login', async () => {
await expectGracefulAuthFailure(['v2ex', 'notifications', '--limit', '3', '-f', 'json']);
}, 60_000);
// ── xueqiu (requires login) ──
it('xueqiu feed fails gracefully without login', async () => {
await expectGracefulAuthFailure(['xueqiu', 'feed', '--limit', '3', '-f', 'json']);
}, 60_000);
it('xueqiu watchlist fails gracefully without login', async () => {
await expectGracefulAuthFailure(['xueqiu', 'watchlist', '-f', 'json']);
}, 60_000);
it('xueqiu comments fails gracefully without login', async () => {
await expectGracefulAuthFailure(['xueqiu', 'comments', 'SH600519', '--limit', '3', '-f', 'json'], 'xueqiu comments');
}, 60_000);
// ── linux-do (requires login — all endpoints need authentication) ──
it('linux-do feed fails gracefully without login', async () => {
await expectGracefulAuthFailure(['linux-do', 'feed', '--limit', '3', '-f', 'json']);
}, 60_000);
it('linux-do categories fails gracefully without login', async () => {
await expectGracefulAuthFailure(['linux-do', 'categories', '--limit', '3', '-f', 'json']);
}, 60_000);
it('linux-do tags fails gracefully without login', async () => {
await expectGracefulAuthFailure(['linux-do', 'tags', '--limit', '3', '-f', 'json']);
}, 60_000);
it('linux-do topic fails gracefully without login', async () => {
await expectGracefulAuthFailure(['linux-do', 'topic', '1', '-f', 'json']);
}, 60_000);
it('linux-do topic-content fails gracefully without login', async () => {
await expectGracefulAuthFailure(['linux-do', 'topic-content', '1', '-f', 'json']);
}, 60_000);
it('linux-do search fails gracefully without login', async () => {
await expectGracefulAuthFailure(['linux-do', 'search', 'test', '--limit', '3', '-f', 'json']);
}, 60_000);
it('linux-do user-topics fails gracefully without login', async () => {
await expectGracefulAuthFailure(['linux-do', 'user-topics', 'test', '--limit', '3', '-f', 'json']);
}, 60_000);
it('linux-do user-posts fails gracefully without login', async () => {
await expectGracefulAuthFailure(['linux-do', 'user-posts', 'test', '--limit', '3', '-f', 'json']);
}, 60_000);
// ── xiaohongshu (requires login) ──
it('xiaohongshu feed fails gracefully without login', async () => {
await expectGracefulAuthFailure(['xiaohongshu', 'feed', '--limit', '3', '-f', 'json']);
}, 60_000);
it('xiaohongshu notifications fails gracefully without login', async () => {
await expectGracefulAuthFailure(['xiaohongshu', 'notifications', '--limit', '3', '-f', 'json']);
}, 60_000);
// ── yuanbao (requires login) ──
it('yuanbao new fails gracefully without login', async () => {
await expectGracefulAuthFailure(['yuanbao', 'new', '-f', 'json']);
}, 60_000);
it('yuanbao ask fails gracefully without login', async () => {
await expectGracefulAuthFailure(['yuanbao', 'ask', '你好', '-f', 'json']);
}, 60_000);
// ── pixiv (requires login) ──
it('pixiv ranking fails gracefully without login', async () => {
await expectGracefulAuthFailure(['pixiv', 'ranking', '--limit', '3', '-f', 'json']);
}, 60_000);
it('pixiv search fails gracefully without login', async () => {
await expectGracefulAuthFailure(['pixiv', 'search', '初音ミク', '--limit', '3', '-f', 'json']);
}, 60_000);
it('pixiv user fails gracefully without login', async () => {
await expectGracefulAuthFailure(['pixiv', 'user', '11', '-f', 'json']);
}, 60_000);
it('pixiv illusts fails gracefully without login', async () => {
await expectGracefulAuthFailure(['pixiv', 'illusts', '11', '--limit', '3', '-f', 'json']);
}, 60_000);
it('pixiv detail fails gracefully without login', async () => {
await expectGracefulAuthFailure(['pixiv', 'detail', '123456', '-f', 'json']);
}, 60_000);
it('pixiv download fails gracefully without login', async () => {
await expectGracefulAuthFailure(['pixiv', 'download', '123456', '--output', '/tmp/pixiv-e2e-test', '-f', 'json']);
}, 60_000);
// ── yollomi (requires login session) ──
it('yollomi generate fails gracefully without login', async () => {
await expectGracefulAuthFailure(['yollomi', 'generate', 'a cute cat', '--no-download', '-f', 'json']);
}, 60_000);
it('yollomi video fails gracefully without login', async () => {
await expectGracefulAuthFailure(['yollomi', 'video', 'a sunset over the ocean', '--no-download', '-f', 'json']);
}, 60_000);
// ── quark (requires cookie session) ──
it('quark ls fails gracefully without login', async () => {
await expectGracefulAuthFailure(['quark', 'ls', '-f', 'json']);
}, 60_000);
it('quark mkdir fails gracefully without login', async () => {
await expectGracefulAuthFailure(['quark', 'mkdir', 'test', '-f', 'json']);
}, 60_000);
it('quark mv fails gracefully without login', async () => {
await expectGracefulAuthFailure(['quark', 'mv', 'fakefid', '--to-fid', '0', '-f', 'json']);
}, 60_000);
it('quark rename fails gracefully without login', async () => {
await expectGracefulAuthFailure(['quark', 'rename', 'fakefid', '--name', 'new-name', '-f', 'json']);
}, 60_000);
it('quark rm fails gracefully without login', async () => {
await expectGracefulAuthFailure(['quark', 'rm', 'fakefid', '-f', 'json']);
}, 60_000);
it('quark save fails gracefully without login', async () => {
await expectGracefulAuthFailure(['quark', 'save', 'https://pan.quark.cn/s/abc123', '--to-fid', '0', '-f', 'json']);
}, 60_000);
it('quark share-tree fails gracefully without login', async () => {
await expectGracefulAuthFailure(['quark', 'share-tree', 'https://pan.quark.cn/s/abc123', '-f', 'json']);
}, 60_000);
});