-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModelCustomDownloadView.test.tsx
More file actions
134 lines (114 loc) · 3.65 KB
/
Copy pathModelCustomDownloadView.test.tsx
File metadata and controls
134 lines (114 loc) · 3.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import { Text } from 'ink';
import { render } from 'ink-testing-library';
import { THEME } from '@/constants';
import { getLastTextInputProps, type MockTextInputProps } from './test-utils';
const { mockModelSuggestions, mockTextInput } = vi.hoisted(() => ({
mockModelSuggestions:
vi.fn<
(props: {
input: string;
onHighlight?: (value: string | null) => void;
onSelect?: (value: string) => void;
}) => void
>(),
mockTextInput: vi.fn<(props: MockTextInputProps) => void>(),
}));
vi.mock('../TextInput', () => ({
TextInput: (props: MockTextInputProps) => {
mockTextInput(props);
return (
<Text>
{props.value === '' ? (props.placeholder ?? '') : props.value}
</Text>
);
},
}));
vi.mock('./ModelSuggestions', () => ({
ModelSuggestions: (props: {
input: string;
onHighlight?: (value: string | null) => void;
onSelect?: (value: string) => void;
}) => {
mockModelSuggestions(props);
return <Text>{`Suggestions:${props.input}`}</Text>;
},
}));
import { ModelCustomDownloadView } from './ModelCustomDownloadView';
describe('ModelCustomDownloadView', () => {
beforeEach(() => {
mockModelSuggestions.mockReset();
mockTextInput.mockReset();
});
it('renders the prompt, placeholder, and suggestions', () => {
const { lastFrame } = render(
<ModelCustomDownloadView
downloadDraft=""
notice={null}
theme={THEME.getTheme()}
onDraftChange={vi.fn()}
onHighlight={vi.fn()}
onSelectSuggestion={vi.fn()}
onSubmit={vi.fn()}
/>,
);
expect(lastFrame()).toContain('Enter an Ollama model name to download.');
expect(lastFrame()).toContain('name:tag');
expect(lastFrame()).toContain('Suggestions:');
expect(lastFrame()).toContain('Press Enter to download.');
});
it('renders notice text when provided', () => {
const { lastFrame } = render(
<ModelCustomDownloadView
downloadDraft="gemma4"
notice={{ tone: 'error', text: 'Download failed' }}
theme={THEME.getTheme()}
onDraftChange={vi.fn()}
onHighlight={vi.fn()}
onSelectSuggestion={vi.fn()}
onSubmit={vi.fn()}
/>,
);
expect(lastFrame()).toContain('Download failed');
});
it('forwards TextInput change and submit callbacks', () => {
const onDraftChange = vi.fn();
const onSubmit = vi.fn();
render(
<ModelCustomDownloadView
downloadDraft=""
notice={null}
theme={THEME.getTheme()}
onDraftChange={onDraftChange}
onHighlight={vi.fn()}
onSelectSuggestion={vi.fn()}
onSubmit={onSubmit}
/>,
);
const props = getLastTextInputProps(mockTextInput);
props.onChange('gemma:latest');
props.onSubmit('gemma:latest');
expect(onDraftChange).toHaveBeenCalledWith('gemma:latest');
expect(onSubmit).toHaveBeenCalledWith('gemma:latest');
});
it('passes suggestion props and forwards highlight and select callbacks', () => {
const onHighlight = vi.fn();
const onSelectSuggestion = vi.fn();
render(
<ModelCustomDownloadView
downloadDraft="gemma"
notice={null}
theme={THEME.getTheme()}
onDraftChange={vi.fn()}
onHighlight={onHighlight}
onSelectSuggestion={onSelectSuggestion}
onSubmit={vi.fn()}
/>,
);
const [props] = mockModelSuggestions.mock.calls.at(-1) ?? [];
expect(props?.input).toBe('gemma');
props?.onHighlight?.('gemma:latest');
props?.onSelect?.('gemma:latest');
expect(onHighlight).toHaveBeenCalledWith('gemma:latest');
expect(onSelectSuggestion).toHaveBeenCalledWith('gemma:latest');
});
});