Files
wehub-resource-sync 7a0da7932b
Backwards Compatibility / Verify Encryption Constants (push) Waiting to run
Backwards Compatibility / PyPI Version Compatibility (push) Waiting to run
Backwards Compatibility / Database Migration Tests (push) Waiting to run
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-form] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-metrics] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-workflow] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-core] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-pages] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [history-news] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [library] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [link-analytics] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [mobile] (push) Blocked by required conditions
Docker Tests (Consolidated) / detect-changes (push) Waiting to run
Docker Tests (Consolidated) / Build Test Image (push) Waiting to run
Docker Tests (Consolidated) / All Pytest Tests + Coverage (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [accessibility] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [api-crud] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-login] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-pages] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-register] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-core] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-lifecycle] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [error-benchmark] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) (push) Blocked by required conditions
Docker Tests (Consolidated) / Accessibility Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / LLM Unit Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / LLM Example Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / Production Image Smoke Test (push) Blocked by required conditions
Docker Tests (Consolidated) / Infrastructure Tests (push) Blocked by required conditions
OSSF Scorecard / OSSF Security Scorecard Analysis (push) Waiting to run
OSV-Scanner (Scheduled) / scan-scheduled (push) Failing after 0s
Create Release / test-gate (push) Has been cancelled
Create Release / release-gate (push) Has been cancelled
Create Release / ci-gate (push) Has been cancelled
Create Release / version-check (push) Has been cancelled
Create Release / e2e-test-gate (push) Has been cancelled
Create Release / responsive-test-gate (push) Has been cancelled
Create Release / compat-test-gate (push) Has been cancelled
Create Release / compose-integration-gate (push) Has been cancelled
Create Release / vulture-gate (push) Has been cancelled
Create Release / build (push) Has been cancelled
Create Release / provenance (push) Has been cancelled
Create Release / prerelease-docker (push) Has been cancelled
Create Release / publish-docker (push) Has been cancelled
Create Release / create-release (push) Has been cancelled
Create Release / cleanup-changelog (push) Has been cancelled
Create Release / trigger-pypi (push) Has been cancelled
Create Release / monitor-pypi (push) Has been cancelled
Create Release / Clean up orphan prerelease tags and signatures (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:08:55 +08:00

131 lines
4.1 KiB
JavaScript

/**
* Tests for components/checkbox_handler.js
*
* Tests the checkbox-hidden input fallback pattern that ensures
* both checked and unchecked states are submitted in HTML forms.
*/
let handler;
beforeAll(async () => {
await import('@js/components/checkbox_handler.js');
handler = window.checkboxHandler;
});
describe('CheckboxHandler', () => {
let form;
beforeEach(() => {
form = document.createElement('form');
document.body.appendChild(form);
});
afterEach(() => {
form.remove();
});
describe('setupCheckbox', () => {
it('disables hidden input when checkbox is checked', () => {
const checkbox = document.createElement('input');
checkbox.type = 'checkbox';
checkbox.checked = true;
checkbox.setAttribute('data-hidden-fallback', 'hidden-1');
const hidden = document.createElement('input');
hidden.type = 'hidden';
hidden.id = 'hidden-1';
hidden.value = 'false';
form.appendChild(checkbox);
form.appendChild(hidden);
handler.setupCheckbox(checkbox);
expect(hidden.disabled).toBe(true);
});
it('enables hidden input when checkbox is unchecked', () => {
const checkbox = document.createElement('input');
checkbox.type = 'checkbox';
checkbox.checked = false;
checkbox.setAttribute('data-hidden-fallback', 'hidden-2');
const hidden = document.createElement('input');
hidden.type = 'hidden';
hidden.id = 'hidden-2';
hidden.value = 'false';
form.appendChild(checkbox);
form.appendChild(hidden);
handler.setupCheckbox(checkbox);
expect(hidden.disabled).toBe(false);
});
it('toggles hidden input on change event', () => {
const checkbox = document.createElement('input');
checkbox.type = 'checkbox';
checkbox.checked = false;
checkbox.setAttribute('data-hidden-fallback', 'hidden-3');
const hidden = document.createElement('input');
hidden.type = 'hidden';
hidden.id = 'hidden-3';
form.appendChild(checkbox);
form.appendChild(hidden);
handler.setupCheckbox(checkbox);
expect(hidden.disabled).toBe(false);
checkbox.checked = true;
checkbox.dispatchEvent(new Event('change'));
expect(hidden.disabled).toBe(true);
checkbox.checked = false;
checkbox.dispatchEvent(new Event('change'));
expect(hidden.disabled).toBe(false);
});
});
describe('cleanup', () => {
it('removes event listener from checkbox', () => {
const checkbox = document.createElement('input');
checkbox.type = 'checkbox';
checkbox.setAttribute('data-hidden-fallback', 'hidden-4');
const hidden = document.createElement('input');
hidden.type = 'hidden';
hidden.id = 'hidden-4';
form.appendChild(checkbox);
form.appendChild(hidden);
handler.setupCheckbox(checkbox);
expect(checkbox._checkboxHandlerCleanup).toBeTypeOf('function');
handler.cleanup(checkbox);
expect(checkbox._checkboxHandlerCleanup).toBeUndefined();
});
});
describe('prepareFormSubmission', () => {
it('syncs all checkbox-hidden pairs before submit', () => {
const checkbox = document.createElement('input');
checkbox.type = 'checkbox';
checkbox.checked = true;
checkbox.setAttribute('data-hidden-fallback', 'hidden-5');
const hidden = document.createElement('input');
hidden.type = 'hidden';
hidden.id = 'hidden-5';
hidden.disabled = false;
form.appendChild(checkbox);
form.appendChild(hidden);
handler.prepareFormSubmission(form);
expect(hidden.disabled).toBe(true);
});
});
});