-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate the litmusOcisSpacesDav test from Drone to GitHub Actions
- Loading branch information
1 parent
6c1f72f
commit f7d7cb3
Showing
13 changed files
with
161 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
Enhancement: Migrate the litmus tests from Drone to GitHub Actions | ||
|
||
We've migrated the litmusOcisOldWebdav and the litmusOcisNewWebdav tests from Drone to GitHub Actions. | ||
We've migrated the litmusOcisOldWebdav, litmusOcisSpacesDav and the litmusOcisNewWebdav tests from Drone to GitHub Actions. | ||
|
||
https://github.com/cs3org/reva/pull/3566 | ||
https://github.com/cs3org/reva/pull/3565 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,91 @@ | ||
version: "3.3" | ||
services: | ||
frontend: | ||
image: ${TEST_IMAGE} | ||
image: ${TAG} | ||
command: -c /litmus/frontend.toml | ||
volumes: | ||
- .:/litmus | ||
working_dir: /litmus | ||
gateway: | ||
image: ${TEST_IMAGE} | ||
image: ${TAG} | ||
command: -c /litmus/gateway.toml | ||
volumes: | ||
- .:/litmus | ||
storage-home-ocis: | ||
image: ${TEST_IMAGE} | ||
image: ${TAG} | ||
command: -c /litmus/storage-home-ocis.toml | ||
volumes: | ||
- .:/litmus | ||
users: | ||
image: ${TEST_IMAGE} | ||
image: ${TAG} | ||
command: -c /litmus/users.toml | ||
volumes: | ||
- .:/litmus | ||
working_dir: /litmus | ||
litmus: | ||
permissions: | ||
profiles: ["3"] | ||
image: ${TAG} | ||
command: -c /litmus/permissions.toml | ||
volumes: | ||
- .:/litmus | ||
storage-users-ocis: | ||
profiles: ["3"] | ||
image: ${TAG} | ||
command: -c /litmus/storage-users-ocis.toml | ||
volumes: | ||
- .:/litmus | ||
- shared-volume:/var/tmp | ||
litmus-1: | ||
profiles: ["1"] | ||
image: registry.cern.ch/docker.io/owncloud/litmus:latest | ||
environment: | ||
LITMUS_URL: http://frontend:20080/remote.php/webdav | ||
LITMUS_USERNAME: einstein | ||
LITMUS_PASSWORD: relativity | ||
TESTS: basic http copymove props | ||
depends_on: | ||
- frontend | ||
- gateway | ||
- users | ||
- storage-home-ocis | ||
litmus-2: | ||
profiles: ["2"] | ||
image: registry.cern.ch/docker.io/owncloud/litmus:latest | ||
environment: | ||
LITMUS_URL: http://frontend:20080${URL_PATH} | ||
LITMUS_URL: http://frontend:20080/remote.php/dav/files/4c510ada-c86b-4815-8820-42cdf82c3d51 | ||
LITMUS_USERNAME: einstein | ||
LITMUS_PASSWORD: relativity | ||
LITMUS_PASSWORD: relativity | ||
TESTS: basic http copymove props | ||
depends_on: | ||
- frontend | ||
- gateway | ||
- users | ||
- storage-home-ocis | ||
litmus-3: | ||
profiles: ["3"] | ||
image: registry.cern.ch/docker.io/owncloud/litmus:latest | ||
environment: | ||
LITMUS_USERNAME: einstein | ||
LITMUS_PASSWORD: relativity | ||
TESTS: basic http copymove props | ||
entrypoint: | ||
- /bin/sh | ||
command: | ||
- -c | ||
- | | ||
curl -s -k -u einstein:relativity -I http://frontend:20080/remote.php/dav/files/einstein | ||
export LITMUS_URL=http://frontend:20080/remote.php/dav/spaces/123e4567-e89b-12d3-a456-426655440000!$$(ls /var/tmp/reva/data/spaces/personal/) | ||
/usr/local/bin/litmus-wrapper | ||
volumes: | ||
- .:/litmus | ||
- shared-volume:/var/tmp | ||
depends_on: | ||
- frontend | ||
- gateway | ||
- users | ||
- storage-home-ocis | ||
- users | ||
- permissions | ||
- storage-users-ocis | ||
|
||
volumes: | ||
shared-volume: |
Oops, something went wrong.