From 933eddae6dae8e592901fa3d1db9947d5f1a058b Mon Sep 17 00:00:00 2001 From: szaimen Date: Sat, 23 Apr 2022 19:58:20 +0200 Subject: [PATCH] additional qa test plans Signed-off-by: szaimen --- tests/QA/050-optional-addons.md | 4 +++- tests/QA/060-environmental-variables.md | 6 ++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 tests/QA/060-environmental-variables.md diff --git a/tests/QA/050-optional-addons.md b/tests/QA/050-optional-addons.md index f33ef3fa..ce82a33e 100644 --- a/tests/QA/050-optional-addons.md +++ b/tests/QA/050-optional-addons.md @@ -7,4 +7,6 @@ - [ ] ClamAV by trying to upload a testvirus to Nextcloud https://www.eicar.org/?page_id=3950 - [ ] Collabora by trying to open a .docx or .odt file in Nextcloud - [ ] Nextcloud Talk by opening the Talk app in Nextcloud, creating a new chat and trying to join a call in this chat. Also verifying in the settings that the HPB and turn server work. - - [ ] Onlyoffice by trying to open a .docx file in Nextcloud \ No newline at end of file + - [ ] Onlyoffice by trying to open a .docx file in Nextcloud + +You can now continue with [060-environmental-variables.md](./060-environmental-variables.md) \ No newline at end of file diff --git a/tests/QA/060-environmental-variables.md b/tests/QA/060-environmental-variables.md new file mode 100644 index 00000000..d16e7169 --- /dev/null +++ b/tests/QA/060-environmental-variables.md @@ -0,0 +1,6 @@ +# Environmental variables + +- [ ] When starting the mastercontainer with `-e APACHE_PORT=11000` on a clean instance, the domaincheck container should be started with that same port published. That makes sure that also the Apache container will use that port later on. Using a value here that is not a port will not allow the mastercontainer to start correctly. +- [ ] Make also sure that reverse proxies work by following https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md#reverse-proxy-documentation and following [001-initial-setup.md](./001-initial-setup.md) and [002-new-instance.md](./002-new-instance.md) +- [ ] When starting the mastercontainer with `-e NEXTCLOUD_DATADIR="/mnt/testdata"` it should map that location from `/mnt/testdata` to `/mnt/ncdata` inside the Nextcloud container. Not having adjusted the permissions correctly before starting the Nextcloud container the first time will not allow the Nextcloud container to start correctly. See https://github.com/nextcloud/all-in-one#how-to-change-the-default-location-of-nextclouds-datadir for allowed values. +- [ ] When starting the mastercontainer with `-e NEXTCLOUD_MOUNT="/mnt/"` it should map `/mnt/` to `/mnt/` inside the Nextcloud container. See https://github.com/nextcloud/all-in-one#how-to-allow-the-nextcloud-container-to-access-directories-on-the-host for allowed values. \ No newline at end of file