Files
jackwener__opencli/clis/twitter/reply.test.js
jakevin d2974a9ff6 refactor(adapters): convert adapter layer from TypeScript to JavaScript (#928)
* 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.
2026-04-10 14:52:18 +08:00

152 lines
7.2 KiB
JavaScript

import * as fs from 'node:fs';
import * as os from 'node:os';
import * as path from 'node:path';
import { describe, expect, it, vi } from 'vitest';
import { getRegistry } from '@jackwener/opencli/registry';
import { __test__ } from './reply.js';
function createPageMock(evaluateResults, overrides = {}) {
const evaluate = vi.fn();
for (const result of evaluateResults) {
evaluate.mockResolvedValueOnce(result);
}
return {
goto: vi.fn().mockResolvedValue(undefined),
evaluate,
snapshot: vi.fn().mockResolvedValue(undefined),
click: vi.fn().mockResolvedValue(undefined),
typeText: vi.fn().mockResolvedValue(undefined),
pressKey: vi.fn().mockResolvedValue(undefined),
scrollTo: vi.fn().mockResolvedValue(undefined),
getFormState: vi.fn().mockResolvedValue({ forms: [], orphanFields: [] }),
wait: vi.fn().mockResolvedValue(undefined),
tabs: vi.fn().mockResolvedValue([]),
selectTab: vi.fn().mockResolvedValue(undefined),
networkRequests: vi.fn().mockResolvedValue([]),
consoleMessages: vi.fn().mockResolvedValue([]),
scroll: vi.fn().mockResolvedValue(undefined),
autoScroll: vi.fn().mockResolvedValue(undefined),
installInterceptor: vi.fn().mockResolvedValue(undefined),
getInterceptedRequests: vi.fn().mockResolvedValue([]),
getCookies: vi.fn().mockResolvedValue([]),
screenshot: vi.fn().mockResolvedValue(''),
waitForCapture: vi.fn().mockResolvedValue(undefined),
...overrides,
};
}
describe('twitter reply command', () => {
it('uses the dedicated reply composer for text-only replies too', async () => {
const cmd = getRegistry().get('twitter/reply');
expect(cmd?.func).toBeTypeOf('function');
const page = createPageMock([
{ ok: true, message: 'Reply posted successfully.' },
]);
const result = await cmd.func(page, {
url: 'https://x.com/_kop6/status/2040254679301718161?s=20',
text: 'text-only reply',
});
expect(page.goto).toHaveBeenCalledWith('https://x.com/compose/post?in_reply_to=2040254679301718161', { waitUntil: 'load', settleMs: 2500 });
expect(page.wait).toHaveBeenCalledWith({ selector: '[data-testid="tweetTextarea_0"]', timeout: 15 });
expect(result).toEqual([
{
status: 'success',
message: 'Reply posted successfully.',
text: 'text-only reply',
},
]);
});
it('uploads a local image through the dedicated reply composer when --image is provided', async () => {
const cmd = getRegistry().get('twitter/reply');
expect(cmd?.func).toBeTypeOf('function');
const tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'opencli-twitter-reply-'));
const imagePath = path.join(tempDir, 'qr.png');
fs.writeFileSync(imagePath, Buffer.from([0x89, 0x50, 0x4e, 0x47]));
const setFileInput = vi.fn().mockResolvedValue(undefined);
const page = createPageMock([
{ ok: true, previewCount: 1 },
{ ok: true, message: 'Reply posted successfully.' },
], {
setFileInput,
});
const result = await cmd.func(page, {
url: 'https://x.com/_kop6/status/2040254679301718161?s=20',
text: 'reply with image',
image: imagePath,
});
expect(page.goto).toHaveBeenCalledWith('https://x.com/compose/post?in_reply_to=2040254679301718161', { waitUntil: 'load', settleMs: 2500 });
expect(page.wait).toHaveBeenNthCalledWith(1, { selector: '[data-testid="tweetTextarea_0"]', timeout: 15 });
expect(page.wait).toHaveBeenNthCalledWith(2, { selector: 'input[type="file"][data-testid="fileInput"]', timeout: 20 });
expect(setFileInput).toHaveBeenCalledWith([imagePath], 'input[type="file"][data-testid="fileInput"]');
expect(result).toEqual([
{
status: 'success',
message: 'Reply posted successfully.',
text: 'reply with image',
image: imagePath,
},
]);
});
it('downloads a remote image before uploading when --image-url is provided', async () => {
const cmd = getRegistry().get('twitter/reply');
expect(cmd?.func).toBeTypeOf('function');
const fetchMock = vi.fn().mockResolvedValue({
ok: true,
headers: {
get: vi.fn().mockReturnValue('image/png'),
},
arrayBuffer: vi.fn().mockResolvedValue(Uint8Array.from([0x89, 0x50, 0x4e, 0x47]).buffer),
});
vi.stubGlobal('fetch', fetchMock);
const setFileInput = vi.fn().mockResolvedValue(undefined);
const page = createPageMock([
{ ok: true, previewCount: 1 },
{ ok: true, message: 'Reply posted successfully.' },
], {
setFileInput,
});
const result = await cmd.func(page, {
url: 'https://x.com/_kop6/status/2040254679301718161?s=20',
text: 'reply with remote image',
'image-url': 'https://example.com/qr',
});
expect(fetchMock).toHaveBeenCalledWith('https://example.com/qr');
expect(setFileInput).toHaveBeenCalledTimes(1);
const uploadedPath = setFileInput.mock.calls[0][0][0];
expect(uploadedPath).toMatch(/opencli-twitter-reply-.*\/image\.png$/);
expect(fs.existsSync(uploadedPath)).toBe(false);
expect(result).toEqual([
{
status: 'success',
message: 'Reply posted successfully.',
text: 'reply with remote image',
'image-url': 'https://example.com/qr',
},
]);
vi.unstubAllGlobals();
});
it('rejects invalid image paths early', async () => {
await expect(() => __test__.resolveImagePath('/tmp/does-not-exist.png'))
.toThrow('Image file not found');
});
it('rejects using --image and --image-url together', async () => {
const cmd = getRegistry().get('twitter/reply');
expect(cmd?.func).toBeTypeOf('function');
const page = createPageMock([]);
await expect(cmd.func(page, {
url: 'https://x.com/_kop6/status/2040254679301718161?s=20',
text: 'nope',
image: '/tmp/a.png',
'image-url': 'https://example.com/a.png',
})).rejects.toThrow('Use either --image or --image-url, not both.');
});
it('extracts tweet ids from both user and i/status URLs', () => {
expect(__test__.extractTweetId('https://x.com/_kop6/status/2040254679301718161?s=20')).toBe('2040254679301718161');
expect(__test__.extractTweetId('https://x.com/i/status/2040318731105313143')).toBe('2040318731105313143');
expect(__test__.buildReplyComposerUrl('https://x.com/i/status/2040318731105313143'))
.toBe('https://x.com/compose/post?in_reply_to=2040318731105313143');
});
it('prefers content-type when resolving remote image extensions', () => {
expect(__test__.resolveImageExtension('https://example.com/no-ext', 'image/webp')).toBe('.webp');
expect(__test__.resolveImageExtension('https://example.com/a.jpeg?x=1', null)).toBe('.jpeg');
});
});