86 lines
3.0 KiB
TypeScript
86 lines
3.0 KiB
TypeScript
import React from 'react';
|
|
import { describe, expect, it, vi } from 'vitest';
|
|
import { fireEvent, render, screen } from '@testing-library/react';
|
|
|
|
vi.mock('@tamagui/core', () => ({
|
|
useTheme: () => ({
|
|
color: { val: '#111827' },
|
|
gray: { val: '#6b7280' },
|
|
borderColor: { val: '#e5e7eb' },
|
|
primary: { val: '#FF5A5F' },
|
|
surface: { val: '#ffffff' },
|
|
red10: { val: '#b91c1c' },
|
|
}),
|
|
}));
|
|
|
|
vi.mock('@tamagui/stacks', () => ({
|
|
YStack: ({ children, ...props }: { children: React.ReactNode }) => <div {...props}>{children}</div>,
|
|
XStack: ({ children, ...props }: { children: React.ReactNode }) => <div {...props}>{children}</div>,
|
|
}));
|
|
|
|
vi.mock('@tamagui/text', () => ({
|
|
SizableText: ({ children, ...props }: { children: React.ReactNode }) => <span {...props}>{children}</span>,
|
|
}));
|
|
|
|
vi.mock('tamagui', () => ({
|
|
Input: ({ ...props }: React.InputHTMLAttributes<HTMLInputElement>) => <input {...props} />,
|
|
TextArea: ({ ...props }: React.TextareaHTMLAttributes<HTMLTextAreaElement>) => <textarea {...props} />,
|
|
}));
|
|
|
|
vi.mock('@tamagui/select', () => {
|
|
const SelectContext = React.createContext<{ onValueChange?: (value: string) => void } | null>(null);
|
|
const Select = ({ children, onValueChange }: { children: React.ReactNode; onValueChange?: (value: string) => void }) => (
|
|
<SelectContext.Provider value={{ onValueChange }}>
|
|
<div>{children}</div>
|
|
</SelectContext.Provider>
|
|
);
|
|
const Trigger = ({ children, ...props }: { children: React.ReactNode }) => <div {...props}>{children}</div>;
|
|
const Value = ({ placeholder }: { placeholder?: React.ReactNode }) => <span>{placeholder}</span>;
|
|
const Content = ({ children }: { children: React.ReactNode }) => <div>{children}</div>;
|
|
const Viewport = ({ children }: { children: React.ReactNode }) => <div>{children}</div>;
|
|
const Group = ({ children }: { children: React.ReactNode }) => <div>{children}</div>;
|
|
const Item = ({ children, value }: { children: React.ReactNode; value: string }) => {
|
|
const ctx = React.useContext(SelectContext);
|
|
return (
|
|
<button type="button" data-value={value} onClick={() => ctx?.onValueChange?.(value)}>
|
|
{children}
|
|
</button>
|
|
);
|
|
};
|
|
const ItemText = ({ children }: { children: React.ReactNode }) => <span>{children}</span>;
|
|
|
|
Select.Trigger = Trigger;
|
|
Select.Value = Value;
|
|
Select.Content = Content;
|
|
Select.Viewport = Viewport;
|
|
Select.Group = Group;
|
|
Select.Item = Item;
|
|
Select.ItemText = ItemText;
|
|
|
|
return { Select };
|
|
});
|
|
|
|
import { MobileSelect } from './FormControls';
|
|
|
|
describe('MobileSelect', () => {
|
|
it('maps options and forwards selection changes', () => {
|
|
const handleChange = vi.fn();
|
|
|
|
render(
|
|
<MobileSelect value="" onChange={handleChange}>
|
|
<option value="">None</option>
|
|
<option value="one">One</option>
|
|
</MobileSelect>,
|
|
);
|
|
|
|
const items = screen.getAllByRole('button');
|
|
fireEvent.click(items[1]);
|
|
|
|
expect(handleChange).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
target: expect.objectContaining({ value: 'one' }),
|
|
}),
|
|
);
|
|
});
|
|
});
|