Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[full-ci] [tests-only] Added tests for auto-sync disabled #8397

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
304 changes: 290 additions & 14 deletions tests/acceptance/features/apiSharingNg/sharedWithMeSyncDisabled.feature
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Feature: listing sharedWithMe when auto-sync is disabled
And user "Brian" has disabled the auto-sync share


Scenario: user lists the file shared with them when auto-sync is disabled
Scenario: user lists the file shared with them
Given user "Alice" has uploaded file with content "to share" to "textfile.txt"
And user "Alice" has sent the following share invitation:
| resource | textfile.txt |
Expand Down Expand Up @@ -280,7 +280,7 @@ Feature: listing sharedWithMe when auto-sync is disabled
"""


Scenario: user lists the folder shared with them when auto-sync is disabled
Scenario: user lists the folder shared with them
Given user "Alice" has created folder "folderToShare"
And user "Alice" has sent the following share invitation:
| resource | folderToShare |
Expand Down Expand Up @@ -517,9 +517,8 @@ Feature: listing sharedWithMe when auto-sync is disabled
"""


Scenario: group member lists the file shared with them when auto-sync is disabled
Given user "Carol" has been created with default attributes and without skeleton files
And group "grp1" has been created
Scenario: group member lists the file shared with them
Given group "grp1" has been created
And the following users have been added to the following groups
| username | groupname |
| Brian | grp1 |
Expand Down Expand Up @@ -789,9 +788,8 @@ Feature: listing sharedWithMe when auto-sync is disabled
"""


Scenario: group member lists the folder shared with them when auto-sync is disabled
Given user "Carol" has been created with default attributes and without skeleton files
And group "grp1" has been created
Scenario: group member lists the folder shared with them
Given group "grp1" has been created
And the following users have been added to the following groups
| username | groupname |
| Brian | grp1 |
Expand Down Expand Up @@ -1031,7 +1029,7 @@ Feature: listing sharedWithMe when auto-sync is disabled
"""


Scenario: user lists file shares shared with them from project-space when auto-sync is disabled
Scenario: user lists file shares shared with them from project-space
Given using spaces DAV path
And the administrator has assigned the role "Space Admin" to user "Alice" using the Graph API
And user "Alice" has created a space "projectSpace" with the default quota using the Graph API
Expand Down Expand Up @@ -1272,7 +1270,7 @@ Feature: listing sharedWithMe when auto-sync is disabled
"""


Scenario: user lists folder shares shared with them from project-space when auto-sync is disabled
Scenario: user lists folder shares shared with them from project-space
Given using spaces DAV path
And the administrator has assigned the role "Space Admin" to user "Alice" using the Graph API
And user "Alice" has created a space "projectSpace" with the default quota using the Graph API
Expand Down Expand Up @@ -1488,9 +1486,8 @@ Feature: listing sharedWithMe when auto-sync is disabled
"""


Scenario: group member lists the file shared with them from project-space when auto-sync is disabled
Scenario: group member lists the file shared with them from project-space
Given using spaces DAV path
And user "Carol" has been created with default attributes and without skeleton files
And group "grp1" has been created
And the following users have been added to the following groups
| username | groupname |
Expand Down Expand Up @@ -1721,9 +1718,8 @@ Feature: listing sharedWithMe when auto-sync is disabled
"""


Scenario: group member lists the space folder shared with them from project-space when auto-sync is disabled
Scenario: group member lists the space folder shared with them from project-space
Given using spaces DAV path
And user "Carol" has been created with default attributes and without skeleton files
And group "grp1" has been created
And the following users have been added to the following groups
| username | groupname |
Expand Down Expand Up @@ -1922,3 +1918,283 @@ Feature: listing sharedWithMe when auto-sync is disabled
}
}
"""


Scenario: user who is also a member of group lists the file shared with them
Given group "grp1" has been created
And the following users have been added to the following groups
| username | groupname |
| Brian | grp1 |
And user "Alice" has uploaded file with content "to share" to "textfile.txt"
And user "Alice" has sent the following share invitation:
| resource | textfile.txt |
| space | Personal |
| sharee | Brian |
| shareType | user |
| permissionsRole | Viewer |
And user "Alice" has sent the following share invitation:
| resource | textfile.txt |
| space | Personal |
| sharee | grp1 |
| shareType | group |
| permissionsRole | Viewer |
When user "Brian" lists the shares shared with him using the Graph API
Then the HTTP status code should be "200"
And the JSON data of the response should match
"""
{
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "array",
"items": {
"type": "object",
"required": [
"@UI.Hidden",
"@client.synchronize",
"createdBy",
"eTag",
"file",
"id",
"lastModifiedDateTime",
"name",
"parentReference",
"remoteItem",
"size"
],
"properties": {
"@UI.Hidden": {
"type": "boolean",
"enum": [false]
},
"@client.synchronize": {
"type": "boolean",
"enum": [false]
},
"remoteItem": {
"type": "object",
"required": [
"createdBy",
"eTag",
"file",
"id",
"lastModifiedDateTime",
"name",
"parentReference",
"permissions",
"size"
],
"properties": {
"permissions": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"oneOf": [
{
"type": "object",
"required": [
"grantedToV2",
"id",
"invitation",
"roles"
],
"properties": {
"grantedToV2": {
"type": "object",
"required": ["user"],
"properties": {
"group": {
"type": "object",
"required": ["displayName", "id"],
"properties": {
"displayName": {
"type": "string",
"enum": ["Brian Murphy"]
}
}
}
}
}
}
},
{
"type": "object",
"required": [
"grantedToV2",
"id",
"invitation",
"roles"
],
"properties": {
"grantedToV2": {
"type": "object",
"required": ["group"],
"properties": {
"group": {
"type": "object",
"required": ["displayName", "id"],
"properties": {
"displayName": {
"type": "string",
"enum": ["grp1"]
}
}
}
}
}
}
}
]
}
}
}
}
}
}
}
}
}
"""


Scenario: user who is also a member of group lists the folder shared with them
Given group "grp1" has been created
And the following users have been added to the following groups
| username | groupname |
| Brian | grp1 |
And user "Alice" has created folder "folderToShare"
And user "Alice" has sent the following share invitation:
| resource | folderToShare |
| space | Personal |
| sharee | Brian |
| shareType | user |
| permissionsRole | Viewer |
And user "Alice" has sent the following share invitation:
| resource | folderToShare |
| space | Personal |
| sharee | grp1 |
| shareType | group |
| permissionsRole | Viewer |
When user "Brian" lists the shares shared with him using the Graph API
Then the HTTP status code should be "200"
And the JSON data of the response should match
"""
{
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "array",
"items": {
"type": "object",
"required": [
"@UI.Hidden",
"@client.synchronize",
"createdBy",
"eTag",
"folder",
"id",
"lastModifiedDateTime",
"name",
"parentReference",
"remoteItem"
],
"properties": {
"@UI.Hidden": {
"type": "boolean",
"enum": [false]
},
"@client.synchronize": {
"type": "boolean",
"enum": [false]
},
"remoteItem": {
"type": "object",
"required": [
"createdBy",
"eTag",
"folder",
"id",
"lastModifiedDateTime",
"name",
"parentReference",
"permissions"
],
"properties": {
"permissions": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"oneOf": [
{
"type": "object",
"required": [
"grantedToV2",
"id",
"invitation",
"roles"
],
"properties": {
"grantedToV2": {
"type": "object",
"required": ["user"],
"properties": {
"group": {
"type": "object",
"required": ["displayName", "id"],
"properties": {
"displayName": {
"type": "string",
"enum": ["Brian Murphy"]
}
}
}
}
}
}
},
{
"type": "object",
"required": [
"grantedToV2",
"id",
"invitation",
"roles"
],
"properties": {
"grantedToV2": {
"type": "object",
"required": ["group"],
"properties": {
"group": {
"type": "object",
"required": ["displayName", "id"],
"properties": {
"displayName": {
"type": "string",
"enum": ["grp1"]
}
}
}
}
}
}
}
]
}
}
}
}
}
}
}
}
}
"""