mirror of
https://github.com/Boof2015/astra-mobile.git
synced 2026-08-19 04:06:43 +02:00
34 lines
1.4 KiB
TypeScript
34 lines
1.4 KiB
TypeScript
import assert from 'node:assert/strict';
|
|
import test from 'node:test';
|
|
import { parseNowPlayingCompanion } from './nowPlayingPreferences.ts';
|
|
import { splitCollaborators } from '../../shared/library/albumGrouping.ts';
|
|
import { buildArtistNameTokens } from '../../shared/library/artistCredits.ts';
|
|
|
|
test('defaults missing and invalid companion preferences to queue', () => {
|
|
assert.equal(parseNowPlayingCompanion(null), 'queue');
|
|
assert.equal(parseNowPlayingCompanion(''), 'queue');
|
|
assert.equal(parseNowPlayingCompanion('spectrum'), 'queue');
|
|
});
|
|
|
|
test('restores persisted queue and lyrics companion preferences', () => {
|
|
assert.equal(parseNowPlayingCompanion('queue'), 'queue');
|
|
assert.equal(parseNowPlayingCompanion('lyrics'), 'lyrics');
|
|
});
|
|
|
|
test('builds separate clickable credits for collaborative track artists', () => {
|
|
const artists = splitCollaborators('Dazbee feat. 9Lana & ValkyR');
|
|
assert.deepEqual(artists, ['Dazbee', '9Lana', 'ValkyR']);
|
|
assert.deepEqual(buildArtistNameTokens(artists), [
|
|
{ artist: 'Dazbee', separator: ', ' },
|
|
{ artist: '9Lana', separator: ' & ' },
|
|
{ artist: 'ValkyR', separator: null },
|
|
]);
|
|
});
|
|
|
|
test('structured credits preserve commas and ampersands inside one artist name', () => {
|
|
assert.deepEqual(buildArtistNameTokens(['Earth, Wind & Fire', 'The Emotions']), [
|
|
{ artist: 'Earth, Wind & Fire', separator: ' & ' },
|
|
{ artist: 'The Emotions', separator: null },
|
|
]);
|
|
});
|