dav-v2-public.feature 737 B

12345678910111213141516171819202122
  1. # SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  2. # SPDX-License-Identifier: AGPL-3.0-or-later
  3. Feature: dav-v2-public
  4. Background:
  5. Given using api version "1"
  6. Scenario: See note to recipient in public shares
  7. Given using new dav path
  8. And As an "admin"
  9. And user "user0" exists
  10. And user "user1" exists
  11. And As an "user1"
  12. And user "user1" created a folder "/testshare"
  13. And as "user1" creating a share with
  14. | path | testshare |
  15. | shareType | 3 |
  16. | permissions | 1 |
  17. | note | Hello |
  18. And As an "user0"
  19. Given using new public dav path
  20. When Requesting share note on dav endpoint
  21. Then the single response should contain a property "{http://nextcloud.org/ns}note" with value "Hello"