feat(web): add /library/albums wrapping-grid page
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
import { describe, expect, test, vi } from 'vitest';
|
||||
import { render, screen } from '@testing-library/svelte';
|
||||
import { readable } from 'svelte/store';
|
||||
|
||||
vi.mock('$lib/api/albums', () => ({
|
||||
createAlbumsAlphaInfiniteQuery: () => readable({
|
||||
data: { pages: [{
|
||||
items: [
|
||||
{ id: 'a1', title: 'Apple', sort_title: 'Apple',
|
||||
artist_id: 'art-1', artist_name: 'X',
|
||||
track_count: 5, duration_sec: 100, cover_url: '/api/albums/a1/cover' },
|
||||
{ id: 'b1', title: 'Banana', sort_title: 'Banana',
|
||||
artist_id: 'art-1', artist_name: 'X',
|
||||
track_count: 3, duration_sec: 50, cover_url: '/api/albums/b1/cover' }
|
||||
],
|
||||
total: 2, limit: 50, offset: 0
|
||||
}] },
|
||||
isPending: false,
|
||||
isError: false,
|
||||
hasNextPage: false,
|
||||
isFetchingNextPage: false,
|
||||
refetch: () => {},
|
||||
fetchNextPage: () => {}
|
||||
}),
|
||||
ALBUM_PAGE_SIZE: 50
|
||||
}));
|
||||
vi.mock('$lib/api/client', () => ({ api: { get: vi.fn() } }));
|
||||
vi.mock('$lib/player/store.svelte', () => ({
|
||||
enqueueTracks: vi.fn(),
|
||||
playQueue: vi.fn()
|
||||
}));
|
||||
vi.mock('$lib/api/likes', () => ({
|
||||
createLikedIdsQuery: () => readable({
|
||||
data: { track_ids: [], album_ids: [], artist_ids: [] },
|
||||
isPending: false, isError: false
|
||||
}),
|
||||
likeEntity: vi.fn(),
|
||||
unlikeEntity: vi.fn()
|
||||
}));
|
||||
|
||||
import Page from './+page.svelte';
|
||||
|
||||
describe('/library/albums', () => {
|
||||
test('renders title + count + alphabetical dividers', () => {
|
||||
render(Page);
|
||||
expect(screen.getByRole('heading', { name: /albums/i })).toBeInTheDocument();
|
||||
expect(screen.getByText(/2 albums/)).toBeInTheDocument();
|
||||
expect(screen.getByText('A')).toBeInTheDocument();
|
||||
expect(screen.getByText('B')).toBeInTheDocument();
|
||||
expect(screen.getByText('Apple')).toBeInTheDocument();
|
||||
expect(screen.getByText('Banana')).toBeInTheDocument();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user