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
14 changes: 0 additions & 14 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -77,20 +77,6 @@ config = {
"spaces",
],
},
"3": {
"earlyFail": True,
"skip": False,
"tikaNeeded": True,
"suites": [
"shares",
],
"extraServerEnvironment": {
"FRONTEND_FULL_TEXT_SEARCH_ENABLED": True,
"SEARCH_EXTRACTOR_TYPE": "tika",
"SEARCH_EXTRACTOR_TIKA_TIKA_URL": "http://tika:9998",
"SEARCH_EXTRACTOR_CS3SOURCE_INSECURE": True,
},
},
"keycloak": {
"earlyFail": True,
"skip": False,
Expand Down
6 changes: 6 additions & 0 deletions tests/actions/.env.ocis
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,9 @@ AUTH_BASIC_LDAP_BIND_PASSWORD=some-ldap-reva-password
IDM_IDPSVC_PASSWORD=some-ldap-idp-password
IDP_LDAP_BIND_PASSWORD=some-ldap-idp-password
GRAPH_APPLICATION_ID=application-1
OCIS_PASSWORD_POLICY_BANNED_PASSWORDS_LIST="$GITHUB_WORKSPACE/tests/drone/banned-passwords.txt"
OCIS_PASSWORD_POLICY_MIN_CHARACTERS=3
OCIS_PASSWORD_POLICY_MIN_LOWERCASE_CHARACTERS=0
OCIS_PASSWORD_POLICY_MIN_UPPERCASE_CHARACTERS=0
OCIS_PASSWORD_POLICY_MIN_DIGITS=0
OCIS_PASSWORD_POLICY_MIN_SPECIAL_CHARACTERS=0
14 changes: 7 additions & 7 deletions tests/e2e-playwright/specs/file-action/fileViewer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ test.describe('Different file viewers', { tag: '@predefined-users' }, () => {
})

// Then "Alice" is in a media-viewer
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Alice',
fileViewerType: 'media-viewer'
Expand All @@ -116,7 +116,7 @@ test.describe('Different file viewers', { tag: '@predefined-users' }, () => {
})

// Then "Alice" is in a media-viewer
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Alice',
fileViewerType: 'media-viewer'
Expand Down Expand Up @@ -150,7 +150,7 @@ test.describe('Different file viewers', { tag: '@predefined-users' }, () => {
})

// Then "Alice" is in a media-viewer
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Alice',
fileViewerType: 'media-viewer'
Expand All @@ -170,7 +170,7 @@ test.describe('Different file viewers', { tag: '@predefined-users' }, () => {
})

// Then "Alice" is in a media-viewer
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Alice',
fileViewerType: 'media-viewer'
Expand All @@ -190,7 +190,7 @@ test.describe('Different file viewers', { tag: '@predefined-users' }, () => {
})

// Then "Alice" is in a media-viewer
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Alice',
fileViewerType: 'media-viewer'
Expand All @@ -210,7 +210,7 @@ test.describe('Different file viewers', { tag: '@predefined-users' }, () => {
})

// Then "Alice" is in a media-viewer
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Alice',
fileViewerType: 'media-viewer'
Expand All @@ -230,7 +230,7 @@ test.describe('Different file viewers', { tag: '@predefined-users' }, () => {
})

// Then "Alice" is in a media-viewer
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Alice',
fileViewerType: 'media-viewer'
Expand Down
6 changes: 3 additions & 3 deletions tests/e2e-playwright/specs/navigation/shortcut.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ test.describe(
name: 'important file.url'
})
// Then "Alice" is in a text-editor
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Alice',
fileViewerType: 'text-editor'
Expand Down Expand Up @@ -150,7 +150,7 @@ test.describe(
name: 'logo.url'
})
// Then "Brian" is in a media-viewer
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Brian',
fileViewerType: 'media-viewer'
Expand Down Expand Up @@ -182,7 +182,7 @@ test.describe(
stepUser: 'Brian'
})
// Then "Brian" is in a text-editor
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Brian',
fileViewerType: 'text-editor'
Expand Down
6 changes: 3 additions & 3 deletions tests/e2e-playwright/specs/navigation/urlJourneys.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ test.describe('Navigate web directly through urls', () => {
})

// Then "Alice" is in a text-editor
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Alice',
fileViewerType: 'text-editor'
Expand Down Expand Up @@ -182,7 +182,7 @@ test.describe('Navigate web directly through urls', () => {
application: 'texteditor'
})
// Then "Alice" is in a text-editor
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Alice',
fileViewerType: 'text-editor'
Expand All @@ -205,7 +205,7 @@ test.describe('Navigate web directly through urls', () => {
application: 'texteditor'
})
// Then "Alice" is in a text-editor
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Alice',
fileViewerType: 'text-editor'
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e-playwright/specs/ocm/ocm.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ test.describe('federation management', { tag: '@ocm' }, async () => {
})

// Then "Brian" is in a media-viewer
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Brian',
fileViewerType: 'media-viewer'
Expand Down Expand Up @@ -280,7 +280,7 @@ test.describe('federation management', { tag: '@ocm' }, async () => {
})

// Then "Brian" is in a media-viewer
await ui.userIsInFileViewer({
await ui.userShouldBeInFileViewer({
world,
stepUser: 'Brian',
fileViewerType: 'media-viewer'
Expand Down
Loading
Loading