| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- /**
- * Tests for the ConfigureAmsSlotModal component.
- */
- import { describe, it, expect, vi, beforeEach } from 'vitest';
- import { screen, fireEvent, waitFor } from '@testing-library/react';
- import { render } from '../utils';
- import { ConfigureAmsSlotModal } from '../../components/ConfigureAmsSlotModal';
- import { api } from '../../api/client';
- // Mock the API client
- vi.mock('../../api/client', () => ({
- api: {
- getCloudSettings: vi.fn(),
- getKProfiles: vi.fn(),
- configureAmsSlot: vi.fn(),
- getCloudSettingDetail: vi.fn(),
- saveSlotPreset: vi.fn(),
- getSettings: vi.fn().mockResolvedValue({}),
- updateSettings: vi.fn().mockResolvedValue({}),
- getLocalPresets: vi.fn(),
- getBuiltinFilaments: vi.fn(),
- searchColors: vi.fn(),
- getColorCatalog: vi.fn(),
- resetAmsSlot: vi.fn(),
- },
- }));
- const mockCloudSettings = {
- filament: [
- {
- setting_id: 'GFSL05_09',
- name: 'Bambu PLA Basic @BBL X1C',
- filament_id: 'GFL05',
- },
- {
- setting_id: 'PFUScd84f663d2c2ef',
- name: '# Overture Matte PLA @BBL H2D',
- filament_id: null,
- },
- ],
- };
- const mockKProfiles = {
- profiles: [
- {
- id: 1,
- name: 'PLA Basic',
- k_value: '0.020',
- filament_id: 'GFL05',
- setting_id: '',
- extruder_id: 1,
- cali_idx: 1,
- },
- ],
- };
- const defaultProps = {
- isOpen: true,
- onClose: vi.fn(),
- printerId: 1,
- slotInfo: {
- amsId: 0,
- trayId: 0,
- trayCount: 4,
- trayType: 'PLA',
- trayColor: 'FFFFFF',
- traySubBrands: 'PLA Basic',
- },
- nozzleDiameter: '0.4',
- onSuccess: vi.fn(),
- };
- describe('ConfigureAmsSlotModal', () => {
- beforeEach(() => {
- vi.clearAllMocks();
- // Mock scrollIntoView which is not available in jsdom
- Element.prototype.scrollIntoView = vi.fn();
- (api.getCloudSettings as ReturnType<typeof vi.fn>).mockResolvedValue(mockCloudSettings);
- (api.getKProfiles as ReturnType<typeof vi.fn>).mockResolvedValue(mockKProfiles);
- (api.configureAmsSlot as ReturnType<typeof vi.fn>).mockResolvedValue({ success: true });
- (api.saveSlotPreset as ReturnType<typeof vi.fn>).mockResolvedValue({ success: true });
- (api.getLocalPresets as ReturnType<typeof vi.fn>).mockResolvedValue({ filament: [] });
- (api.getBuiltinFilaments as ReturnType<typeof vi.fn>).mockResolvedValue([]);
- (api.searchColors as ReturnType<typeof vi.fn>).mockResolvedValue([]);
- (api.getColorCatalog as ReturnType<typeof vi.fn>).mockResolvedValue([]);
- (api.resetAmsSlot as ReturnType<typeof vi.fn>).mockResolvedValue({ success: true, message: 'ok' });
- });
- it('renders nothing visible when closed', () => {
- render(<ConfigureAmsSlotModal {...defaultProps} isOpen={false} />);
- expect(screen.queryByText('Configure AMS Slot')).not.toBeInTheDocument();
- });
- it('renders modal when open', async () => {
- render(<ConfigureAmsSlotModal {...defaultProps} />);
- await waitFor(() => {
- expect(screen.getByText(/Configure AMS/)).toBeInTheDocument();
- });
- });
- it('displays basic color buttons', async () => {
- render(<ConfigureAmsSlotModal {...defaultProps} />);
- await waitFor(() => {
- // Check for basic color buttons by their title attribute
- expect(screen.getByTitle('White')).toBeInTheDocument();
- expect(screen.getByTitle('Black')).toBeInTheDocument();
- expect(screen.getByTitle('Red')).toBeInTheDocument();
- expect(screen.getByTitle('Blue')).toBeInTheDocument();
- expect(screen.getByTitle('Green')).toBeInTheDocument();
- expect(screen.getByTitle('Yellow')).toBeInTheDocument();
- expect(screen.getByTitle('Orange')).toBeInTheDocument();
- expect(screen.getByTitle('Gray')).toBeInTheDocument();
- });
- });
- it('does not show extended colors by default', async () => {
- render(<ConfigureAmsSlotModal {...defaultProps} />);
- await waitFor(() => {
- expect(screen.getByTitle('White')).toBeInTheDocument();
- });
- // Extended colors should not be visible initially
- expect(screen.queryByTitle('Cyan')).not.toBeInTheDocument();
- expect(screen.queryByTitle('Purple')).not.toBeInTheDocument();
- expect(screen.queryByTitle('Coral')).not.toBeInTheDocument();
- });
- it('shows extended colors when expand button is clicked', async () => {
- render(<ConfigureAmsSlotModal {...defaultProps} />);
- await waitFor(() => {
- expect(screen.getByTitle('White')).toBeInTheDocument();
- });
- // Click the expand button (+ button)
- const expandButton = screen.getByTitle('Show more colors');
- fireEvent.click(expandButton);
- // Extended colors should now be visible
- await waitFor(() => {
- expect(screen.getByTitle('Cyan')).toBeInTheDocument();
- expect(screen.getByTitle('Purple')).toBeInTheDocument();
- expect(screen.getByTitle('Pink')).toBeInTheDocument();
- expect(screen.getByTitle('Brown')).toBeInTheDocument();
- expect(screen.getByTitle('Coral')).toBeInTheDocument();
- });
- });
- it('hides extended colors when collapse button is clicked', async () => {
- render(<ConfigureAmsSlotModal {...defaultProps} />);
- await waitFor(() => {
- expect(screen.getByTitle('White')).toBeInTheDocument();
- });
- // Click the expand button
- const expandButton = screen.getByTitle('Show more colors');
- fireEvent.click(expandButton);
- // Wait for extended colors to appear
- await waitFor(() => {
- expect(screen.getByTitle('Cyan')).toBeInTheDocument();
- });
- // Click the collapse button
- const collapseButton = screen.getByTitle('Show less colors');
- fireEvent.click(collapseButton);
- // Extended colors should be hidden again
- await waitFor(() => {
- expect(screen.queryByTitle('Cyan')).not.toBeInTheDocument();
- });
- });
- it('selects a color when color button is clicked', async () => {
- render(<ConfigureAmsSlotModal {...defaultProps} />);
- await waitFor(() => {
- expect(screen.getByTitle('Red')).toBeInTheDocument();
- });
- // Click the red color button
- const redButton = screen.getByTitle('Red');
- fireEvent.click(redButton);
- // The color input should now show "Red"
- const colorInput = screen.getByPlaceholderText(/Color name or hex/);
- expect(colorInput).toHaveValue('Red');
- });
- it('sends PFUS setting_id as tray_info_idx when cloud detail has filament_id: null (#1053)', async () => {
- // Cloud returns a user preset that inherits from a generic Bambu base and
- // has no distinct filament_id of its own — this is how Bambu Cloud responds
- // for custom presets built on top of "Generic ABS @BBL H2D" etc.
- (api.getCloudSettingDetail as ReturnType<typeof vi.fn>).mockResolvedValue({
- filament_id: null,
- base_id: 'GFSB99_07',
- name: '# Overture Matte PLA @BBL H2D',
- });
- const slotInfo = {
- ...defaultProps.slotInfo,
- savedPresetId: 'PFUScd84f663d2c2ef',
- };
- render(<ConfigureAmsSlotModal {...defaultProps} slotInfo={slotInfo} />);
- await waitFor(() => {
- expect(screen.getByText('# Overture Matte PLA @BBL H2D')).toBeInTheDocument();
- });
- fireEvent.click(screen.getByRole('button', { name: /Configure Slot/i }));
- await waitFor(() => {
- expect(api.configureAmsSlot).toHaveBeenCalled();
- });
- const payload = (api.configureAmsSlot as ReturnType<typeof vi.fn>).mock.calls[0][3];
- // Before the fix, this collapsed to 'GFB99' (Generic ABS's filament_id),
- // which made OrcaSlicer/BambuStudio Sync Filaments resolve to "Generic ABS".
- expect(payload.tray_info_idx).toBe('PFUScd84f663d2c2ef');
- expect(payload.setting_id).toBe('PFUScd84f663d2c2ef');
- });
- it('uses cloud detail filament_id when present', async () => {
- (api.getCloudSettingDetail as ReturnType<typeof vi.fn>).mockResolvedValue({
- filament_id: 'P285e239',
- base_id: 'GFSB99_07',
- name: '# Overture Matte PLA @BBL H2D',
- });
- const slotInfo = {
- ...defaultProps.slotInfo,
- savedPresetId: 'PFUScd84f663d2c2ef',
- };
- render(<ConfigureAmsSlotModal {...defaultProps} slotInfo={slotInfo} />);
- await waitFor(() => {
- expect(screen.getByText('# Overture Matte PLA @BBL H2D')).toBeInTheDocument();
- });
- fireEvent.click(screen.getByRole('button', { name: /Configure Slot/i }));
- await waitFor(() => {
- expect(api.configureAmsSlot).toHaveBeenCalled();
- });
- const payload = (api.configureAmsSlot as ReturnType<typeof vi.fn>).mock.calls[0][3];
- expect(payload.tray_info_idx).toBe('P285e239');
- expect(payload.setting_id).toBe('PFUScd84f663d2c2ef');
- });
- it('sends short GF filament_id for Bambu GFS* presets (cloud detail not consulted)', async () => {
- // Bambu-provided presets (GFS*) convert the setting_id → filament_id locally.
- // The cloud detail endpoint must NOT be consulted for them; the rewrite that
- // fixed #1053 preserves this pre-existing shortcut.
- const slotInfo = {
- ...defaultProps.slotInfo,
- savedPresetId: 'GFSL05_09',
- };
- render(<ConfigureAmsSlotModal {...defaultProps} slotInfo={slotInfo} />);
- await waitFor(() => {
- expect(screen.getByText('Bambu PLA Basic @BBL X1C')).toBeInTheDocument();
- });
- fireEvent.click(screen.getByRole('button', { name: /Configure Slot/i }));
- await waitFor(() => {
- expect(api.configureAmsSlot).toHaveBeenCalled();
- });
- const payload = (api.configureAmsSlot as ReturnType<typeof vi.fn>).mock.calls[0][3];
- expect(payload.tray_info_idx).toBe('GFL05');
- expect(payload.setting_id).toBe('GFSL05_09');
- expect(api.getCloudSettingDetail).not.toHaveBeenCalled();
- });
- it('keeps default PFUS tray_info_idx when cloud detail fetch fails', async () => {
- // Network/5xx from /cloud/settings/{id} must not abort the configure flow
- // nor leave tray_info_idx empty — we fall back to the setting_id default.
- (api.getCloudSettingDetail as ReturnType<typeof vi.fn>).mockRejectedValue(
- new Error('cloud unreachable')
- );
- const slotInfo = {
- ...defaultProps.slotInfo,
- savedPresetId: 'PFUScd84f663d2c2ef',
- };
- render(<ConfigureAmsSlotModal {...defaultProps} slotInfo={slotInfo} />);
- await waitFor(() => {
- expect(screen.getByText('# Overture Matte PLA @BBL H2D')).toBeInTheDocument();
- });
- fireEvent.click(screen.getByRole('button', { name: /Configure Slot/i }));
- await waitFor(() => {
- expect(api.configureAmsSlot).toHaveBeenCalled();
- });
- const payload = (api.configureAmsSlot as ReturnType<typeof vi.fn>).mock.calls[0][3];
- expect(payload.tray_info_idx).toBe('PFUScd84f663d2c2ef');
- expect(payload.setting_id).toBe('PFUScd84f663d2c2ef');
- });
- it('renders configure slot button', async () => {
- render(<ConfigureAmsSlotModal {...defaultProps} />);
- await waitFor(() => {
- expect(screen.getByText(/Configure AMS/)).toBeInTheDocument();
- });
- // Find the Configure Slot button
- const configureButton = screen.getByRole('button', { name: /Configure Slot/i });
- expect(configureButton).toBeInTheDocument();
- });
- it('filters presets by printer model', async () => {
- // Render with printerModel="H2D"
- render(<ConfigureAmsSlotModal {...defaultProps} printerModel="H2D" />);
- // Wait for presets to load - the H2D preset should be visible
- await waitFor(() => {
- expect(screen.getByText(/Overture Matte PLA/)).toBeInTheDocument();
- });
- // The X1C preset should NOT be visible (filtered out by model)
- expect(screen.queryByText(/Bambu PLA Basic @BBL X1C/)).not.toBeInTheDocument();
- });
- it('shows current preset even when it does not match model filter', async () => {
- // Render with printerModel="H2D" but savedPresetId pointing to the X1C preset
- const slotInfo = {
- ...defaultProps.slotInfo,
- savedPresetId: 'GFSL05_09', // X1C preset
- };
- render(<ConfigureAmsSlotModal {...defaultProps} slotInfo={slotInfo} printerModel="H2D" />);
- await waitFor(() => {
- // Both should be visible - H2D matches model, X1C is saved preset
- // Use the full preset name to match the list item (not the "Filtering for" label)
- expect(screen.getByText('Bambu PLA Basic @BBL X1C')).toBeInTheDocument();
- expect(screen.getByText(/Overture Matte PLA/)).toBeInTheDocument();
- });
- });
- it('preset row expands inline on hover so the full name is readable (#1237)', async () => {
- // Long preset names (e.g. "SUNLU PETG GLOW IN THE DARK GEN2 @Bambu Lab H2C 0.4 nozzle")
- // get visually truncated; the row un-truncates on hover via group-hover so the
- // nozzle suffix is readable without waiting on the browser's title-tooltip delay,
- // and the title attribute remains as a fallback for assistive tech / touch.
- render(<ConfigureAmsSlotModal {...defaultProps} />);
- await waitFor(() => {
- const fullName = 'Bambu PLA Basic @BBL X1C';
- const span = screen.getByText(fullName);
- expect(span).toHaveAttribute('title', fullName);
- expect(span).toHaveClass('truncate');
- expect(span).toHaveClass('group-hover:whitespace-normal');
- expect(span).toHaveClass('group-hover:break-all');
- expect(span.closest('button')).toHaveClass('group');
- });
- });
- it('pre-selects saved preset when opening configured slot', async () => {
- const slotInfo = {
- ...defaultProps.slotInfo,
- savedPresetId: 'GFSL05_09',
- };
- render(<ConfigureAmsSlotModal {...defaultProps} slotInfo={slotInfo} />);
- await waitFor(() => {
- // The saved preset should have the selected style (green border)
- // Use the full preset name to avoid matching the "Filtering for" label
- const presetButton = screen.getByText('Bambu PLA Basic @BBL X1C').closest('button');
- expect(presetButton).toHaveClass('bg-bambu-green/20');
- });
- });
- it('pre-populates color from trayColor', async () => {
- const slotInfo = {
- ...defaultProps.slotInfo,
- trayColor: 'FF0000FF', // Red with alpha
- };
- render(<ConfigureAmsSlotModal {...defaultProps} slotInfo={slotInfo} />);
- await waitFor(() => {
- expect(screen.getByTitle('White')).toBeInTheDocument();
- });
- // The hex display should show the pre-populated color
- expect(screen.getByText('Hex: #FF0000', { exact: false })).toBeInTheDocument();
- });
- it('uses translated text for modal elements', async () => {
- render(<ConfigureAmsSlotModal {...defaultProps} />);
- await waitFor(() => {
- expect(screen.getByText('Configure AMS Slot')).toBeInTheDocument();
- expect(screen.getByText('Filament Profile')).toBeInTheDocument();
- });
- // Check footer buttons
- expect(screen.getByRole('button', { name: /Configure Slot/i })).toBeInTheDocument();
- expect(screen.getByRole('button', { name: /Cancel/i })).toBeInTheDocument();
- expect(screen.getByRole('button', { name: /Reset Slot/i })).toBeInTheDocument();
- });
- });
|