Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ config = {
"earlyFail": True,
"skip": False,
"features": [
"cucumber/features/journeys",
"cucumber/features/admin-settings/users.feature:20",
"cucumber/features/admin-settings/users.feature:43",
"cucumber/features/admin-settings/users.feature:106",
Expand Down Expand Up @@ -111,6 +110,7 @@ config = {
"earlyFail": True,
"skip": False,
"suites": [
"journeys",
Comment thread
nirajacharya2 marked this conversation as resolved.
"smoke",
],
},
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
matrix:
suites:
- suite: part-1
test_suites: admin-settings,spaces
test_suites: admin-settings,spaces,journeys
- suite: part-2
test_suites: navigation,user-settings,app-store,file-action
- suite: part-3
Expand All @@ -100,7 +100,7 @@ jobs:
test_suites: mfa
mfa: true
- suite: keycloak
feature_files: specs/admin-settings/spaces.spec.ts
feature_files: specs/admin-settings/spaces.spec.ts,specs/journeys/kindergarten.spec.ts
keycloak: true
env:
BASE_URL_OCIS: localhost:9200
Expand Down
32 changes: 20 additions & 12 deletions tests/e2e-playwright/specs/app-provider/officeSuites.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,14 +209,18 @@ test.describe('Integrate with online office suites like Collabora and OnlyOffice
// When "Alice" updates following sharee role
// | resource | recipient | type | role | resourceType |
// | OpenDocument.odt | Brian | user | Can edit with trashbin | file |
await ui.userUpdatesShareeRole({
await ui.userUpdatesShareeRoles({
world,
stepUser: 'Alice',
resource: 'OpenDocument.odt',
recipient: 'Brian',
type: 'user',
role: 'Can edit with trashbin',
resourceType: 'file'
roleUpdates: [
{
resource: 'OpenDocument.odt',
recipient: 'Brian',
type: 'user',
role: 'Can edit with trashbin',
resourceType: 'file'
}
]
})

// And "Alice" opens the following file in Collabora
Expand Down Expand Up @@ -510,14 +514,18 @@ test.describe('Integrate with online office suites like Collabora and OnlyOffice
// When "Alice" updates following sharee role
// | resource | recipient | type | role | resourceType |
// | MicrosoftWord.docx | Brian | user | Can edit with trashbin | file |
await ui.userUpdatesShareeRole({
await ui.userUpdatesShareeRoles({
world,
stepUser: 'Alice',
resource: 'MicrosoftWord.docx',
recipient: 'Brian',
type: 'user',
role: 'Can edit with trashbin',
resourceType: 'file'
roleUpdates: [
{
resource: 'MicrosoftWord.docx',
recipient: 'Brian',
type: 'user',
role: 'Can edit with trashbin',
resourceType: 'file'
}
]
})

// And "Alice" opens the following file in OnlyOffice
Expand Down
Loading
Loading