Skip to content

Commit

Permalink
add test for search version restored files by content
Browse files Browse the repository at this point in the history
  • Loading branch information
nabim777 committed Aug 14, 2023
1 parent a8108b3 commit 18eccec
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions tests/acceptance/features/apiFullTextSearch/search.feature
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ Feature: full text search
| old |
| new |

@skipOnStable3.0
Examples:
| dav-path-version |
| spaces |


Scenario Outline: search deleted files by content
Given using <dav-path-version> DAV path
Expand Down Expand Up @@ -83,3 +88,19 @@ Feature: full text search
| old |
| new |
| spaces |


Scenario Outline: search restored version of a file by content
Given using <dav-path-version> DAV path
And user "Alice" has uploaded file with content "hello world" to "test.txt"
And user "Alice" has uploaded file with content "Namaste nepal" to "test.txt"
And user "Alice" has restored version index "1" of file "test.txt"
When user "Alice" searches for "Content:hello" using the WebDAV API
Then the HTTP status code should be "207"
And the search result of user "Alice" should contain only these files:
| test.txt |
Examples:
| dav-path-version |
| old |
| new |
| spaces |

0 comments on commit 18eccec

Please sign in to comment.