* refactor(auth): replace dashboard sessions with stateless tokens * feat(auth): harden session issuance and distributed enforcement * fix(proxy): preserve trusted proxy compatibility defaults * refactor: address dashboard auth review feedback * refactor: remove classic frontend and flatten web app
70 lines
2.1 KiB
TypeScript
70 lines
2.1 KiB
TypeScript
/*
|
|
Copyright (C) 2023-2026 QuantumNous
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
*/
|
|
import assert from 'node:assert/strict'
|
|
import { describe, test } from 'node:test'
|
|
|
|
import { handleDropdownMenuItemSelect } from './dropdown-menu-events'
|
|
|
|
function createMenuEvent() {
|
|
let defaultPrevented = false
|
|
let baseUIHandlerPrevented = false
|
|
|
|
return {
|
|
get defaultPrevented() {
|
|
return defaultPrevented
|
|
},
|
|
preventDefault() {
|
|
defaultPrevented = true
|
|
},
|
|
preventBaseUIHandler() {
|
|
baseUIHandlerPrevented = true
|
|
},
|
|
get baseUIHandlerPrevented() {
|
|
return baseUIHandlerPrevented
|
|
},
|
|
} as unknown as Parameters<typeof handleDropdownMenuItemSelect>[0] & {
|
|
baseUIHandlerPrevented: boolean
|
|
}
|
|
}
|
|
|
|
describe('DropdownMenuItem onSelect compatibility', () => {
|
|
test('calls the Radix-style onSelect handler on item click', () => {
|
|
const event = createMenuEvent()
|
|
let selected = false
|
|
|
|
handleDropdownMenuItemSelect(event, undefined, () => {
|
|
selected = true
|
|
})
|
|
|
|
assert.equal(selected, true)
|
|
assert.equal(event.baseUIHandlerPrevented, false)
|
|
})
|
|
|
|
test('keeps the Base UI menu open when onSelect prevents default', () => {
|
|
const event = createMenuEvent()
|
|
|
|
handleDropdownMenuItemSelect(event, undefined, (selectEvent) => {
|
|
selectEvent.preventDefault()
|
|
})
|
|
|
|
assert.equal(event.defaultPrevented, true)
|
|
assert.equal(event.baseUIHandlerPrevented, true)
|
|
})
|
|
})
|