AttendeePermissionsUtilTest.kt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Nextcloud Talk application
  3. *
  4. * @author Marcel Hibbe
  5. * Copyright (C) 2022 Marcel Hibbe <dev@mhibbe.de>
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. package com.nextcloud.talk.utils
  21. import junit.framework.TestCase
  22. import org.junit.Test
  23. class AttendeePermissionsUtilTest : TestCase() {
  24. @Test
  25. fun test_areFlagsSet() {
  26. val attendeePermissionsUtil =
  27. AttendeePermissionsUtil(
  28. AttendeePermissionsUtil.PUBLISH_SCREEN or
  29. AttendeePermissionsUtil.JOIN_CALL or
  30. AttendeePermissionsUtil.DEFAULT
  31. )
  32. assert(attendeePermissionsUtil.canPublishScreen)
  33. assert(attendeePermissionsUtil.canJoinCall)
  34. assert(attendeePermissionsUtil.isDefault)
  35. assertFalse(attendeePermissionsUtil.isCustom)
  36. assertFalse(attendeePermissionsUtil.canStartCall)
  37. assertFalse(attendeePermissionsUtil.canIgnoreLobby)
  38. assertFalse(attendeePermissionsUtil.canPublishAudio)
  39. assertFalse(attendeePermissionsUtil.canPublishVideo)
  40. }
  41. }