Skip to content

Commit

Permalink
added test for /app/open endpoint with different view mode
Browse files Browse the repository at this point in the history
  • Loading branch information
PrajwolAmatya committed Sep 2, 2024
1 parent 9a2a493 commit 8f7a979
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions tests/acceptance/features/apiCollaboration/wopi.feature
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,56 @@ Feature: collaboration (wopi)
| /app/open?file_id=<<FILEID>>&app_name=FakeOffice |
| /app/open?file_id=<<FILEID>> |


Scenario Outline: open file with .odt extension with different view mode
Given user "Alice" has uploaded file "filesForUpload/simple.odt" to "simple.odt"
And we save it into "FILEID"
When user "Alice" sends HTTP method "POST" to URL "<app-endpoint>"
Then the HTTP status code should be "200"
And the JSON data of the response should match
"""
{
"type": "object",
"required": [
"app_url",
"method",
"form_parameters"
],
"properties": {
"app_url": {
"type": "string",
"pattern": "^.*\\?WOPISrc=.*wopi%2Ffiles%2F[a-fA-F0-9]{64}$"
},
"method": {
"const": "POST"
},
"form_parameters": {
"type": "object",
"required": [
"access_token",
"access_token_ttl"
],
"properties": {
"access_token": {
"type": "string"
},
"access_token_ttl": {
"type": "string"
}
}
}
}
}
"""
Examples:
| app-endpoint |
| /app/open?file_id=<<FILEID>>&app_name=FakeOffice&view_mode=view |
| /app/open?file_id=<<FILEID>>&app_name=FakeOffice&view_mode=read |
| /app/open?file_id=<<FILEID>>&app_name=FakeOffice&view_mode=write |
| /app/open?file_id=<<FILEID>>&view_mode=view |
| /app/open?file_id=<<FILEID>>&view_mode=read |
| /app/open?file_id=<<FILEID>>&view_mode=write |

@issue-9495
Scenario Outline: open file with .odt extension (open-with-web)
Given user "Alice" has uploaded file "filesForUpload/simple.odt" to "simple.odt"
Expand Down

0 comments on commit 8f7a979

Please sign in to comment.