|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- import { getFormValues, setFormValues } from '../../src';
- import * as utils from '../utils'
-
- describe('checkbox', () => {
- describe('basic', () => {
- beforeEach(utils.setup(`
- <!DOCTYPE html>
- <html lang="en-PH">
- <head>
- <meta charset="UTF-8">
- <title>Checkbox/Basic</title>
- </head>
- <body>
- <form>
- <label>
- <span>Hello</span>
- <input type="checkbox" name="enabled" />
- </label>
- <button type="submit">Submit</button>
- </form>
- </body>
- </html>
- `))
-
- it('should have no form values', () => {
- utils.test({
- action: (cy: any) => cy.get('[type="submit"]'),
- test: (form: HTMLFormElement, submitter: any, search: any) => {
- const values = getFormValues(form, { submitter })
- const before = utils.makeSearchParams(values)
- .toString();
- const after = utils.makeSearchParams(search)
- .toString();
- expect(values['enabled'])
- .toBeUndefined();
- expect(before)
- .toEqual(after);
- },
- expectedStaticValue: '',
- });
- });
-
- it('should have false checked value', () => {
- utils.test({
- action: (cy: any) => cy.get('[type="submit"]'),
- test: (form: HTMLFormElement, submitter: any, search: any) => {
- const values = getFormValues(form,
- {
- submitter,
- booleanValuelessCheckbox: true
- }
- )
- expect(values['enabled'])
- .toBe(false);
- }
- });
- });
- })
-
- describe('checked', () => {
- beforeEach(utils.setup(`
- <!DOCTYPE html>
- <html lang="en-PH">
- <head>
- <meta charset="UTF-8">
- <title>Checkbox/Checked</title>
- </head>
- <body>
- <form>
- <label>
- <span>Hello</span>
- <input type="checkbox" name="enabled" checked />
- </label>
- <button type="submit">Submit</button>
- </form>
- </body>
- </html>
- `))
-
- it('should have single form value on a single field', () => {
- utils.test({
- action: (cy: any) => cy.get('[type="submit"]'),
- test: (form: HTMLFormElement, submitter: any, search: any) => {
- const before = utils.makeSearchParams(getFormValues(form, { submitter }))
- .toString();
- const after = utils.makeSearchParams(search)
- .toString();
- expect(before)
- .toEqual(after);
- },
- expectedStaticValue: 'enabled=on',
- });
- });
- });
-
-
- describe('duplicate', () => {
- beforeEach(utils.setup(`
- <!DOCTYPE html>
- <html lang="en-PH">
- <head>
- <meta charset="UTF-8">
- <title>Text/Basic</title>
- </head>
- <body>
- <form>
- <label>
- <span>Hello 1</span>
- <input type="checkbox" name="enabled" value="hello 1" checked />
- </label>
- <label>
- <span>Hello 2</span>
- <input type="checkbox" name="enabled" value="hello 2" checked />
- </label>
- <label>
- <span>Hello 3</span>
- <input type="checkbox" name="enabled" value="hello 3" />
- </label>
- <label>
- <span>Hello 4</span>
- <input type="checkbox" name="enabled" value="hello 4" />
- </label>
- <button type="submit">Submit</button>
- </form>
- </body>
- </html>
- `));
-
- it('should get both values', () => {
- utils.test({
- action: (cy: any) => cy.get('[type="submit"]'),
- test: (form: HTMLFormElement, submitter: any, search: any) => {
- const before = utils.makeSearchParams(getFormValues(form, { submitter }))
- .toString();
- const after = utils.makeSearchParams(search)
- .toString();
- expect(before)
- .toEqual(after);
- },
- expectedStaticValue: {
- enabled: ['hello 1', 'hello 2'],
- },
- });
- });
-
- it('should set both values', () => {
- utils.test({
- preAction: (form: HTMLFormElement) => {
- setFormValues(form, {
- enabled: ['hello 3', 'hello 4'],
- })
- },
- action: (cy: any) => cy.get('[type="submit"]'),
- test: (form: HTMLFormElement, submitter: any, search: any) => {
- const before = utils.makeSearchParams(getFormValues(form, { submitter }))
- .toString();
- const after = utils.makeSearchParams(search)
- .toString();
- expect(before)
- .toEqual(after);
- },
- expectedStaticValue: {
- enabled: ['hello 3', 'hello 4'],
- },
- });
- });
- });
- });
|