forked from modelcontextprotocol/inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDynamicJsonForm.test.tsx
95 lines (79 loc) · 2.97 KB
/
DynamicJsonForm.test.tsx
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
import { render, screen, fireEvent } from '@testing-library/react';
import { describe, it, expect, jest } from '@jest/globals';
import DynamicJsonForm from '../DynamicJsonForm';
import type { JsonSchemaType } from '../DynamicJsonForm';
describe('DynamicJsonForm String Fields', () => {
const renderForm = (props = {}) => {
const defaultProps = {
schema: {
type: "string" as const,
description: "Test string field"
} satisfies JsonSchemaType,
value: undefined,
onChange: jest.fn()
};
return render(<DynamicJsonForm {...defaultProps} {...props} />);
};
describe('Type Validation', () => {
it('should handle numeric input as string type', () => {
const onChange = jest.fn();
renderForm({ onChange });
const input = screen.getByRole('textbox');
fireEvent.change(input, { target: { value: '123321' } });
expect(onChange).toHaveBeenCalledWith('123321');
// Verify the value is a string, not a number
expect(typeof onChange.mock.calls[0][0]).toBe('string');
});
it('should render as text input, not number input', () => {
renderForm();
const input = screen.getByRole('textbox');
expect(input).toHaveProperty('type', 'text');
});
});
});
describe('DynamicJsonForm Integer Fields', () => {
const renderForm = (props = {}) => {
const defaultProps = {
schema: {
type: "integer" as const,
description: "Test integer field"
} satisfies JsonSchemaType,
value: undefined,
onChange: jest.fn()
};
return render(<DynamicJsonForm {...defaultProps} {...props} />);
};
describe('Basic Operations', () => {
it('should render number input with step=1', () => {
renderForm();
const input = screen.getByRole('spinbutton');
expect(input).toHaveProperty('type', 'number');
expect(input).toHaveProperty('step', '1');
});
it('should pass integer values to onChange', () => {
const onChange = jest.fn();
renderForm({ onChange });
const input = screen.getByRole('spinbutton');
fireEvent.change(input, { target: { value: '42' } });
expect(onChange).toHaveBeenCalledWith(42);
// Verify the value is a number, not a string
expect(typeof onChange.mock.calls[0][0]).toBe('number');
});
it('should not pass string values to onChange', () => {
const onChange = jest.fn();
renderForm({ onChange });
const input = screen.getByRole('spinbutton');
fireEvent.change(input, { target: { value: 'abc' } });
expect(onChange).not.toHaveBeenCalled();
});
});
describe('Edge Cases', () => {
it('should handle non-numeric input by not calling onChange', () => {
const onChange = jest.fn();
renderForm({ onChange });
const input = screen.getByRole('spinbutton');
fireEvent.change(input, { target: { value: 'abc' } });
expect(onChange).not.toHaveBeenCalled();
});
});
});