mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 06:25:41 +00:00
45e0e1206f
* fix(playback): pin queue streams, cover art, and library links to queue server When the active server changes while a queue from another server is playing, keep streams and UI on queueServerId; switch back for artist/album links and queue or player-bar context menus. * fix(playback): switch to queue server when opening Now Playing Ensure active server matches queueServerId before Subsonic fetches on the Now Playing page, mobile player route, and queue info panel; scope caches by server id. * docs(credits): mention Now Playing in PR #717 contribution line * fix(playback): route scrobble and queue sync to queue server Address PR review: apiForServer for scrobble/now-playing/savePlayQueue, clear queueServerId on server removal, mini-player queueServerId sync, block cross-server enqueue with toast, and regression tests.
87 lines
3.2 KiB
TypeScript
87 lines
3.2 KiB
TypeScript
import { describe, expect, it, beforeEach } from 'vitest';
|
|
import { useAuthStore } from '../../store/authStore';
|
|
import { usePlayerStore } from '../../store/playerStore';
|
|
import {
|
|
bindQueueServerForPlayback,
|
|
clearQueueServerForPlayback,
|
|
ensurePlaybackServerActive,
|
|
getPlaybackServerId,
|
|
playbackCoverArtForId,
|
|
playbackServerDiffersFromActive,
|
|
shouldBindQueueServerForPlay,
|
|
} from './playbackServer';
|
|
import { vi } from 'vitest';
|
|
|
|
vi.mock('../server/switchActiveServer', () => ({
|
|
switchActiveServer: vi.fn(async () => true),
|
|
}));
|
|
|
|
describe('playbackServer', () => {
|
|
beforeEach(() => {
|
|
useAuthStore.setState({
|
|
servers: [
|
|
{ id: 'a', name: 'A', url: 'http://a.test', username: 'u', password: 'p' },
|
|
{ id: 'b', name: 'B', url: 'http://b.test', username: 'u', password: 'p' },
|
|
],
|
|
activeServerId: 'a',
|
|
isLoggedIn: true,
|
|
});
|
|
usePlayerStore.setState({
|
|
queue: [{ id: 't1', title: 'T', artist: 'A', album: 'Al', albumId: 'al1', duration: 100 }],
|
|
queueServerId: 'a',
|
|
queueIndex: 0,
|
|
});
|
|
});
|
|
|
|
it('getPlaybackServerId returns queue server while queue is non-empty', () => {
|
|
useAuthStore.setState({ activeServerId: 'b' });
|
|
expect(getPlaybackServerId()).toBe('a');
|
|
});
|
|
|
|
it('getPlaybackServerId falls back to active when queue is empty', () => {
|
|
clearQueueServerForPlayback();
|
|
usePlayerStore.setState({ queue: [] });
|
|
useAuthStore.setState({ activeServerId: 'b' });
|
|
expect(getPlaybackServerId()).toBe('b');
|
|
});
|
|
|
|
it('bindQueueServerForPlayback pins active server', () => {
|
|
useAuthStore.setState({ activeServerId: 'b' });
|
|
bindQueueServerForPlayback();
|
|
expect(usePlayerStore.getState().queueServerId).toBe('b');
|
|
});
|
|
|
|
it('playbackServerDiffersFromActive when queue server != active', () => {
|
|
useAuthStore.setState({ activeServerId: 'b' });
|
|
expect(playbackServerDiffersFromActive()).toBe(true);
|
|
usePlayerStore.setState({ queue: [] });
|
|
expect(playbackServerDiffersFromActive()).toBe(false);
|
|
});
|
|
|
|
it('ensurePlaybackServerActive calls switch when servers differ', async () => {
|
|
const { switchActiveServer } = await import('../server/switchActiveServer');
|
|
useAuthStore.setState({ activeServerId: 'b' });
|
|
await ensurePlaybackServerActive();
|
|
expect(switchActiveServer).toHaveBeenCalledWith(
|
|
expect.objectContaining({ id: 'a' }),
|
|
);
|
|
});
|
|
|
|
it('playbackCoverArtForId uses queue server credentials when browsing another server', () => {
|
|
useAuthStore.setState({ activeServerId: 'b' });
|
|
const { src, cacheKey } = playbackCoverArtForId('cov1', 128);
|
|
expect(src).toContain('a.test');
|
|
expect(cacheKey).toBe('a:cover:cov1:128');
|
|
});
|
|
|
|
it('shouldBindQueueServerForPlay detects queue replacement', () => {
|
|
const prev = [{ id: 't1', title: 'T', artist: 'A', album: 'Al', albumId: 'al1', duration: 100 }];
|
|
const next = [
|
|
{ id: 't1', title: 'T', artist: 'A', album: 'Al', albumId: 'al1', duration: 100 },
|
|
{ id: 't2', title: 'T2', artist: 'A', album: 'Al', albumId: 'al1', duration: 100 },
|
|
];
|
|
expect(shouldBindQueueServerForPlay(prev, next, next)).toBe(true);
|
|
expect(shouldBindQueueServerForPlay(prev, prev, undefined)).toBe(false);
|
|
});
|
|
});
|