-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathtext-field.component.spec.ts
More file actions
128 lines (106 loc) · 4.43 KB
/
text-field.component.spec.ts
File metadata and controls
128 lines (106 loc) · 4.43 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
/**
* Copyright 2026 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {ComponentFixture, TestBed} from '@angular/core/testing';
import {TextFieldComponent} from './text-field.component';
import {A2uiRendererService, A2UI_RENDERER_CONFIG} from '../../core/a2ui-renderer.service';
import {setComponentProps, createBoundProperty, ComponentToProps} from '../../core/test-utils';
import {By} from '@angular/platform-browser';
describe('TextFieldComponent', () => {
let component: TextFieldComponent;
let fixture: ComponentFixture<TextFieldComponent>;
let defaultProps: ComponentToProps<TextFieldComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [TextFieldComponent],
providers: [A2uiRendererService, {provide: A2UI_RENDERER_CONFIG, useValue: {catalogs: []}}],
}).compileComponents();
fixture = TestBed.createComponent(TextFieldComponent);
component = fixture.componentInstance;
fixture.componentRef.setInput('surfaceId', 'surf1');
defaultProps = {
label: createBoundProperty('Username'),
value: createBoundProperty('testuser'),
variant: createBoundProperty('shortText' as const),
isValid: createBoundProperty(true),
validationErrors: createBoundProperty<string[]>([]),
};
setComponentProps(fixture, defaultProps);
});
it('should create', () => {
fixture.detectChanges();
expect(component).toBeTruthy();
});
it('should render label if provided', () => {
fixture.detectChanges();
const label = fixture.debugElement.query(By.css('label'));
expect(label.nativeElement.textContent).toBe('Username');
});
it('should render input with correct value', () => {
fixture.detectChanges();
const input = fixture.debugElement.query(By.css('input'));
expect(input.nativeElement.value).toBe('testuser');
});
it('should return correct input type based on variant', () => {
expect(component.inputType()).toBe('text');
setComponentProps(fixture, {
...defaultProps,
variant: createBoundProperty('obscured' as const),
});
expect(component.inputType()).toBe('password');
setComponentProps(fixture, {
...defaultProps,
variant: createBoundProperty('number' as const),
});
expect(component.inputType()).toBe('number');
});
it('should call onUpdate when input changes', () => {
fixture.detectChanges();
const input = fixture.debugElement.query(By.css('input'));
input.nativeElement.value = 'newuser';
input.triggerEventHandler('input', {target: input.nativeElement});
expect(component.props()['value']!.onUpdate).toHaveBeenCalledWith('newuser');
});
it('should show error messages when checks fail', async () => {
const isValidProp = createBoundProperty(true);
const errorsProp = createBoundProperty<string[]>([]);
setComponentProps(fixture, {
...defaultProps,
isValid: isValidProp,
validationErrors: errorsProp,
});
fixture.detectChanges();
const errorMsgBefore = fixture.debugElement.query(By.css('.a2ui-error-message'));
expect(errorMsgBefore).toBeFalsy();
isValidProp.value.set(false);
errorsProp.value.set(['Value is required']);
fixture.detectChanges();
const errorMsgAfter = fixture.debugElement.query(By.css('.a2ui-error-message'));
expect(errorMsgAfter).toBeTruthy();
expect(errorMsgAfter.nativeElement.textContent).toContain('Value is required');
});
it('should handle multiple error messages', () => {
setComponentProps(fixture, {
...defaultProps,
isValid: createBoundProperty(false),
validationErrors: createBoundProperty(['Error 1', 'Error 2']),
});
fixture.detectChanges();
const errorMsgs = fixture.debugElement.queryAll(By.css('.a2ui-error-message'));
expect(errorMsgs.length).toBe(2);
expect(errorMsgs[0].nativeElement.textContent).toContain('Error 1');
expect(errorMsgs[1].nativeElement.textContent).toContain('Error 2');
});
});