From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- .../e2e/filesystems/filesystems.e2e-spec.feature | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/pybind/mgr/dashboard/frontend/cypress/e2e/filesystems/filesystems.e2e-spec.feature (limited to 'src/pybind/mgr/dashboard/frontend/cypress/e2e/filesystems/filesystems.e2e-spec.feature') diff --git a/src/pybind/mgr/dashboard/frontend/cypress/e2e/filesystems/filesystems.e2e-spec.feature b/src/pybind/mgr/dashboard/frontend/cypress/e2e/filesystems/filesystems.e2e-spec.feature new file mode 100644 index 000000000..2c08fb56e --- /dev/null +++ b/src/pybind/mgr/dashboard/frontend/cypress/e2e/filesystems/filesystems.e2e-spec.feature @@ -0,0 +1,30 @@ +Feature: CephFS Management + + Goal: To test out the CephFS management features + + Background: Login + Given I am logged in + + Scenario: Create a CephFS Volume + Given I am on the "cephfs" page + And I click on "Create" button + And enter "name" "test_cephfs" + And I click on "Create File System" button + Then I should see a row with "test_cephfs" + + Scenario: Edit CephFS Volume + Given I am on the "cephfs" page + And I select a row "test_cephfs" + And I click on "Edit" button + And enter "name" "test_cephfs_edit" + And I click on "Edit File System" button + Then I should see a row with "test_cephfs_edit" + + Scenario: Remove CephFS Volume + Given I am on the "cephfs" page + And I select a row "test_cephfs_edit" + And I click on "Remove" button from the table actions + Then I should see the modal + And I check the tick box in modal + And I click on "Remove File System" button + Then I should not see a row with "test_cephfs_edit" -- cgit v1.2.3