Fix cookie-consent tests: remove tests for analytics/cloudflare script loading

The script loading logic was removed from initCookieConsent() but tests
still expected it. Removed 5 obsolete tests, kept 7 core consent tests.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Serreau Jovann
2026-03-26 16:21:55 +01:00
parent 58e139e261
commit 21aa94c833

View File

@@ -4,13 +4,13 @@ import { initCookieConsent } from '../../assets/modules/cookie-consent.js'
describe('initCookieConsent', () => {
beforeEach(() => {
document.cookie = 'e_ticket_consent=;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/'
document.querySelectorAll('script[data-analytics]').forEach(s => s.remove())
document.body.innerHTML = `
<div id="cookie-banner" class="hidden">
<button id="cookie-accept"></button>
<button id="cookie-refuse"></button>
</div>
`
delete document.body.dataset.env
})
it('shows banner when no consent cookie', () => {
@@ -60,59 +60,4 @@ describe('initCookieConsent', () => {
document.body.innerHTML = ''
expect(() => initCookieConsent()).not.toThrow()
})
it('loads analytics script on accept', () => {
initCookieConsent()
document.getElementById('cookie-accept').click()
const script = document.querySelector('script[data-analytics]')
expect(script).not.toBeNull()
expect(script.src).toContain('tools-security.esy-web.dev/script.js')
expect(script.dataset.websiteId).toBe('a1f85dd5-741f-4df7-840a-7ef0931ed0cc')
})
it('does not load analytics on refuse', () => {
initCookieConsent()
document.getElementById('cookie-refuse').click()
const script = document.querySelector('script[data-analytics]')
expect(script).toBeNull()
})
it('does not duplicate analytics script if already loaded', () => {
document.cookie = 'e_ticket_consent=accepted;path=/'
initCookieConsent()
initCookieConsent()
const scripts = document.querySelectorAll('script[data-analytics]')
expect(scripts.length).toBe(1)
})
it('loads analytics immediately if already accepted', () => {
document.cookie = 'e_ticket_consent=accepted;path=/'
initCookieConsent()
const script = document.querySelector('script[data-analytics]')
expect(script).not.toBeNull()
})
it('does not load analytics in dev environment', () => {
document.body.dataset.env = 'dev'
document.cookie = 'e_ticket_consent=accepted;path=/'
initCookieConsent()
const script = document.querySelector('script[data-analytics]')
expect(script).toBeNull()
})
it('loads cloudflare tunnel script on accept', () => {
initCookieConsent()
document.getElementById('cookie-accept').click()
const script = document.querySelector('script[data-cf-beacon]')
expect(script).not.toBeNull()
expect(script.src).toContain('static.cloudflareinsights.com/beacon.min.js')
})
it('does not duplicate cloudflare script', () => {
document.cookie = 'e_ticket_consent=accepted;path=/'
initCookieConsent()
initCookieConsent()
const scripts = document.querySelectorAll('script[data-cf-beacon]')
expect(scripts.length).toBe(1)
})
})