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
84 lines
3.9 KiB
JavaScript
84 lines
3.9 KiB
JavaScript
import { afterEach, describe, expect, it, vi } from 'vitest';
|
|
import { getRegistry } from '@jackwener/opencli/registry';
|
|
import { ArgumentError, CommandExecutionError, EmptyResultError } from '@jackwener/opencli/errors';
|
|
import './country.js';
|
|
import './region.js';
|
|
|
|
afterEach(() => {
|
|
vi.unstubAllGlobals();
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
describe('rest-countries country adapter', () => {
|
|
const cmd = getRegistry().get('rest-countries/country');
|
|
|
|
it('rejects bad args before fetching', async () => {
|
|
const fetchMock = vi.fn();
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
await expect(cmd.func({ name: '' })).rejects.toThrow(ArgumentError);
|
|
await expect(cmd.func({ name: 'japan', limit: 9999 })).rejects.toThrow(ArgumentError);
|
|
expect(fetchMock).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('maps HTTP 429 to CommandExecutionError', async () => {
|
|
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response('throttled', { status: 429 })));
|
|
await expect(cmd.func({ name: 'japan' })).rejects.toThrow(CommandExecutionError);
|
|
});
|
|
|
|
it('maps HTTP 404 to EmptyResultError', async () => {
|
|
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response('not found', { status: 404 })));
|
|
await expect(cmd.func({ name: 'no-country-by-this-name' })).rejects.toThrow(EmptyResultError);
|
|
});
|
|
|
|
it('round-trips cca3 from row into restcountries.com alpha URL', async () => {
|
|
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response(JSON.stringify([
|
|
{
|
|
name: { common: 'Japan', official: 'Japan' },
|
|
cca2: 'JP', cca3: 'JPN', ccn3: '392',
|
|
capital: ['Tokyo'],
|
|
region: 'Asia', subregion: 'Eastern Asia',
|
|
population: 125000000, area: 377000,
|
|
languages: { jpn: 'Japanese' },
|
|
currencies: { JPY: { name: 'Japanese yen', symbol: '¥' } },
|
|
latlng: [36, 138], timezones: ['UTC+09:00'], independent: true, unMember: true, landlocked: false, flag: '🇯🇵',
|
|
},
|
|
]), { status: 200 })));
|
|
const rows = await cmd.func({ name: 'japan', limit: 5 });
|
|
expect(rows[0]).toMatchObject({
|
|
rank: 1, commonName: 'Japan', cca2: 'JP', cca3: 'JPN',
|
|
capital: 'Tokyo', region: 'Asia',
|
|
languages: 'Japanese', currencies: 'JPY (Japanese yen)',
|
|
latitude: 36, longitude: 138,
|
|
url: 'https://restcountries.com/v3.1/alpha/jpn',
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('rest-countries region adapter', () => {
|
|
const cmd = getRegistry().get('rest-countries/region');
|
|
|
|
it('rejects unknown regions before fetching', async () => {
|
|
const fetchMock = vi.fn();
|
|
vi.stubGlobal('fetch', fetchMock);
|
|
await expect(cmd.func({ region: '' })).rejects.toThrow(ArgumentError);
|
|
await expect(cmd.func({ region: 'middle-earth' })).rejects.toThrow(ArgumentError);
|
|
expect(fetchMock).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('throws EmptyResultError on empty payload', async () => {
|
|
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response(JSON.stringify([]), { status: 200 })));
|
|
await expect(cmd.func({ region: 'oceania' })).rejects.toThrow(EmptyResultError);
|
|
});
|
|
|
|
it('sorts by population descending so largest country is rank 1', async () => {
|
|
vi.stubGlobal('fetch', vi.fn().mockResolvedValue(new Response(JSON.stringify([
|
|
{ name: { common: 'Tuvalu' }, cca3: 'TUV', population: 12000 },
|
|
{ name: { common: 'Australia' }, cca3: 'AUS', population: 26000000 },
|
|
{ name: { common: 'Fiji' }, cca3: 'FJI', population: 900000 },
|
|
]), { status: 200 })));
|
|
const rows = await cmd.func({ region: 'oceania' });
|
|
expect(rows.map((r) => r.commonName)).toEqual(['Australia', 'Fiji', 'Tuvalu']);
|
|
expect(rows[0]).toMatchObject({ cca3: 'AUS', url: 'https://restcountries.com/v3.1/alpha/aus' });
|
|
});
|
|
});
|