-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tests for KTextbox
#322
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
import { shallowMount, mount } from '@vue/test-utils'; | ||
import KTextbox from '../index'; | ||
|
||
describe('KTextbox component', () => { | ||
it(`smoke test`, () => { | ||
const wrapper = shallowMount(KTextbox); | ||
expect(wrapper.exists()).toBe(true); | ||
}); | ||
|
||
describe('props', () => { | ||
it(`a label should appear`, () => { | ||
const wrapper = mount(KTextbox, { | ||
propsData: { | ||
label: 'test', | ||
}, | ||
}); | ||
expect(wrapper.find('label').text()).toEqual('test'); | ||
}); | ||
it(`value of the text field should appear when passed in`, () => { | ||
const initialValue = '1234paowiejfapwoeifjapwoeijf'; | ||
const wrapper = mount(KTextbox, { | ||
propsData: { | ||
label: 'test', | ||
value: initialValue, | ||
}, | ||
}); | ||
const value = wrapper.find('input').element.value; | ||
expect(value).toBe(initialValue); | ||
}); | ||
it(`invalidText is not displayed if showInvalidText is false`, () => { | ||
const wrapper = mount(KTextbox, { | ||
propsData: { | ||
invalid: true, | ||
showInvalidText: false, | ||
invalidText: 'error!', | ||
}, | ||
}); | ||
const errorTextField = wrapper.find('.ui-textbox-feedback-text'); | ||
expect(errorTextField.text()).not.toBe('error!'); | ||
}); | ||
it(`invalidText is displayed through error prop if invalid and showInvalidText are both true`, () => { | ||
const wrapper = mount(KTextbox, { | ||
propsData: { | ||
invalid: true, | ||
showInvalidText: true, | ||
invalidText: 'error!', | ||
}, | ||
}); | ||
const errorTextField = wrapper.find('.ui-textbox-feedback-text'); | ||
expect(errorTextField.text()).toBe('error!'); | ||
}); | ||
it(`text field is disabled when 'disabled' is true`, () => { | ||
const wrapper = mount(KTextbox, { | ||
propsData: { | ||
disabled: true, | ||
}, | ||
}); | ||
expect(wrapper.find('input').attributes('disabled')).toBe('disabled'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't totally understand why this would be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/disabled There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TIL it has something to do with xhtml: https://stackoverflow.com/a/6531804 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ahah - thanks for the canonical explanation! |
||
}); | ||
it(`text field is autofocused when 'autofocus' is true`, () => { | ||
const wrapper = shallowMount(KTextbox, { | ||
propsData: { | ||
autofocus: true, | ||
}, | ||
}); | ||
const textField = wrapper.findComponent({ name: 'UiTextbox' }); | ||
expect(textField.attributes('autofocus')).toBe('true'); | ||
}); | ||
it(`length of characters for value matches maxlength prop`, () => { | ||
const wrapper = shallowMount(KTextbox, { | ||
propsData: { | ||
maxlength: 13, | ||
}, | ||
}); | ||
const textField = wrapper.findComponent({ name: 'UiTextbox' }); | ||
expect(textField.attributes('maxlength')).toBe('13'); | ||
}); | ||
it(`HTML autocomplete attribute is passed with autocomplete prop`, () => { | ||
const wrapper = shallowMount(KTextbox, { | ||
propsData: { | ||
autocomplete: 'current-password', | ||
}, | ||
}); | ||
const textField = wrapper.findComponent({ name: 'UiTextbox' }); | ||
expect(textField.attributes('autocomplete')).toBe('current-password'); | ||
}); | ||
it(`HTML autocapitalize attribute is passed with autocapitalize prop`, () => { | ||
const wrapper = shallowMount(KTextbox, { | ||
propsData: { | ||
autocapitalize: 'sentences', | ||
}, | ||
}); | ||
const textField = wrapper.findComponent({ name: 'UiTextbox' }); | ||
expect(textField.attributes('autocapitalize')).toBe('sentences'); | ||
}); | ||
it(`input type is 'number' when type is set to 'number'`, () => { | ||
const wrapper = mount(KTextbox, { | ||
propsData: { | ||
type: 'number', | ||
}, | ||
}); | ||
expect(wrapper.find('input').attributes('number')).toBe('true'); | ||
expect(wrapper.find('input').attributes('type')).toBe('number'); | ||
}); | ||
it(`input type is 'text' when type is set to 'text'`, () => { | ||
const wrapper = mount(KTextbox, { | ||
propsData: { | ||
type: 'text', | ||
}, | ||
}); | ||
expect(wrapper.find('input').attributes('type')).toBe('text'); | ||
}); | ||
it(`min length of value is passed as an attribute by the 'min' prop`, () => { | ||
const wrapper = mount(KTextbox, { | ||
propsData: { | ||
type: 'number', | ||
min: 50, | ||
}, | ||
}); | ||
expect(wrapper.find('input').attributes('type')).toBe('number'); | ||
expect(wrapper.find('input').attributes('number')).toBe('true'); | ||
expect(wrapper.find('input').attributes('min')).toBe('50'); | ||
}); | ||
it(`max length of value is passed as an attribute by the 'max' prop`, () => { | ||
const wrapper = mount(KTextbox, { | ||
propsData: { | ||
type: 'number', | ||
max: 50, | ||
}, | ||
}); | ||
expect(wrapper.find('input').attributes('type')).toBe('number'); | ||
expect(wrapper.find('input').attributes('number')).toBe('true'); | ||
expect(wrapper.find('input').attributes('max')).toBe('50'); | ||
}); | ||
it(`when 'true', textarea element is rendered`, () => { | ||
const wrapper = mount(KTextbox, { | ||
propsData: { | ||
textArea: true, | ||
}, | ||
}); | ||
expect(wrapper.find('textarea').exists()).toBeTruthy(); | ||
}); | ||
}); | ||
describe('event handling', () => { | ||
it('should emit a input when value is updated', () => { | ||
const wrapper = mount(KTextbox, { | ||
propsData: { | ||
value: 'test', | ||
}, | ||
}); | ||
|
||
const input = wrapper.find('input'); | ||
input.element.value = 'new value'; | ||
input.trigger('input'); | ||
expect(wrapper.emitted().input).toBeTruthy(); | ||
}); | ||
}); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm so sorry for this weird set of props for handling invalid states but glad to have tests added for it!