mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-18 17:25:16 -04:00

Co-authored-by: Philip Molares <philip.molares@udo.edu> Co-authored-by: Tilman Vatteroth <git@tilmanvatteroth.de>
31 lines
978 B
TypeScript
31 lines
978 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import { initialState } from '../initial-state'
|
|
import type { NotePermissions } from '../../../api/notes/types'
|
|
import { buildStateFromServerPermissions } from './build-state-from-server-permissions'
|
|
import type { NoteDetails } from '../types/note-details'
|
|
|
|
describe('build state from server permissions', () => {
|
|
it('creates a new state with the given permissions', () => {
|
|
const state: NoteDetails = { ...initialState }
|
|
const permissions: NotePermissions = {
|
|
owner: 'test-owner',
|
|
sharedToUsers: [
|
|
{
|
|
username: 'test-user',
|
|
canEdit: true
|
|
}
|
|
],
|
|
sharedToGroups: [
|
|
{
|
|
groupName: 'test-group',
|
|
canEdit: false
|
|
}
|
|
]
|
|
}
|
|
expect(buildStateFromServerPermissions(state, permissions)).toStrictEqual({ ...state, permissions: permissions })
|
|
})
|
|
})
|