This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BC-3844 - upgrade to Vue3 and Vuetify3 (#449)
To be able to use the latest features of Vue we want to upgrade the frontend to Vue 3. Doing that we have to upgrade to Vuetify 3. --------- Co-authored-by: Uzaeir Khan <[email protected]>
- Loading branch information
1 parent
0e59301
commit 3c54ca3
Showing
15 changed files
with
3,423 additions
and
2,012 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
@courses @searchCourse @stableTest @courses_and_topics | ||
Feature: Set of tests to search courses | ||
|
||
Background: User opens Schul-cloud homepage Website | ||
Given user arrives on the Schul-Cloud homepage | ||
Background: User opens Schul-cloud homepage Website | ||
Given user arrives on the Schul-Cloud homepage | ||
|
||
@searchCourseAndFindOne | ||
Scenario Outline: As a user, I want to be able to search a course and find them. | ||
Given <userRole> logs in with email '<username>' and password '<password>' | ||
And <userRole> goes to rooms-overview | ||
When <userRole> enters course name '<courseName>' into search field | ||
And <userRole> should see that course with name '<courseName>' is visible on the list | ||
Examples: | ||
| userRole | username | password | courseName | | ||
| teacher | karl.teacher.qa@schul-cloud.org | Schulcloud1qa! | Biologie | | ||
| student | amelia.strobl.qa@schul-cloud.org | Schulcloud1qa! | German | | ||
@searchCourseAndFindOne | ||
Scenario Outline: As a user, I want to be able to search a course and find them. | ||
Given <userRole> logs in with email '<username>' and password '<password>' | ||
And <userRole> goes to rooms-overview | ||
When <userRole> enters course name '<courseName>' into search field | ||
And <userRole> should see that course with name '<courseName>' is visible on the list | ||
Examples: | ||
| userRole | username | password | courseName | | ||
| teacher | karl.teacher.qa@schul-cloud.org | Schulcloud1qa! | Biologie | | ||
| student | amelia.strobl.qa@schul-cloud.org | Schulcloud1qa! | German | | ||
|
||
@searchCourseAndDontFindOne | ||
Scenario Outline: As a user, I want to be able to search a course and do not find them. | ||
Given <userRole> logs in with email '<username>' and password '<password>' | ||
And <userRole> goes to rooms-overview | ||
When <userRole> enters course name '<courseName>' into search field | ||
Then <userRole> should see that course with name '<courseName>' is not visible on the list | ||
Examples: | ||
| userRole | username | password | courseName | | ||
| teacher | karl.teacher.qa@schul-cloud.org | Schulcloud1qa! | Mathematik | | ||
| student | amelia.strobl.qa@schul-cloud.org | Schulcloud1qa! | Deutsch | | ||
@searchCourseAndDontFindOne | ||
Scenario Outline: As a user, I want to be able to search a course and do not find them. | ||
Given <userRole> logs in with email '<username>' and password '<password>' | ||
And <userRole> goes to rooms-overview | ||
When <userRole> enters course name '<courseName>' into search field | ||
Then <userRole> should see that course with name '<courseName>' is not visible on the list | ||
Examples: | ||
| userRole | username | password | courseName | | ||
| teacher | karl.teacher.qa@schul-cloud.org | Schulcloud1qa! | Mathematik | | ||
| student | amelia.strobl.qa@schul-cloud.org | Schulcloud1qa! | Deutsch | |
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,66 +1,64 @@ | ||
@leftNavigationBar @stableTest @navi_user_settings | ||
Feature: Test set to check the left side menu items | ||
|
||
Background: | ||
Given user arrives on the Schul-Cloud homepage | ||
Background: | ||
Given user arrives on the Schul-Cloud homepage | ||
|
||
@adminTeacherClicksLeftMenuItems @e2eCore | ||
Scenario Outline: As a user, I want to be able to click the left menu items | ||
Given <userRole> logs in | ||
Then <userRole> clicks left navigation item 'logo' | ||
And <userRole> clicks left navigation item 'dashboard' | ||
And <userRole> clicks left navigation item 'teams' | ||
And <userRole> clicks left navigation item 'homework' | ||
And <userRole> clicks left navigation item 'rooms-overview' | ||
And <userRole> clicks left navigation item 'asked homework' | ||
And <userRole> clicks left navigation item 'private homework' | ||
And <userRole> clicks left navigation item 'archived homework' | ||
And <userRole> clicks left navigation item 'files' | ||
And <userRole> clicks left navigation item 'my files' | ||
And <userRole> clicks left navigation item 'course files' | ||
And <userRole> clicks left navigation item 'team files' | ||
And <userRole> clicks left navigation item 'shared files' | ||
And <userRole> clicks left navigation item 'news' | ||
And <userRole> clicks left navigation item 'calendar' | ||
And <userRole> clicks left navigation item 'addons' | ||
And <userRole> clicks left navigation item 'administration' | ||
And <userRole> should see that all sub menu items are visible: '<tabsList>' | ||
And <userRole> clicks left navigation item 'helparea' | ||
And <userRole> clicks left navigation item 'helparticle' | ||
And <userRole> clicks left navigation item 'contact' | ||
# TODO nuxt pages - the navigation structure is different, | ||
# therefor leave it for last page otherwise the other pages won't be found | ||
And <userRole> clicks left navigation item 'content' | ||
Examples: | ||
| userRole | tabsList | | ||
| teacher | SCHÜLER:INNEN, LEHRER:INNEN, KLASSEN | | ||
| admin | SCHÜLER, LEHRER, KURSE, KLASSEN, TEAMS, SCHULE | | ||
@adminTeacherClicksLeftMenuItems @e2eCore | ||
Scenario Outline: As a user, I want to be able to click the left menu items | ||
Given <userRole> logs in | ||
Then <userRole> clicks left navigation item 'logo' | ||
And <userRole> clicks left navigation item 'dashboard' | ||
And <userRole> clicks left navigation item 'teams' | ||
And <userRole> clicks left navigation item 'homework' | ||
And <userRole> clicks left navigation item 'rooms-overview' | ||
And <userRole> clicks left navigation item 'asked homework' | ||
And <userRole> clicks left navigation item 'private homework' | ||
And <userRole> clicks left navigation item 'archived homework' | ||
And <userRole> clicks left navigation item 'files' | ||
And <userRole> clicks left navigation item 'my files' | ||
And <userRole> clicks left navigation item 'course files' | ||
And <userRole> clicks left navigation item 'team files' | ||
And <userRole> clicks left navigation item 'shared files' | ||
And <userRole> clicks left navigation item 'news' | ||
And <userRole> clicks left navigation item 'calendar' | ||
And <userRole> clicks left navigation item 'administration' | ||
And <userRole> should see that all sub menu items are visible: '<tabsList>' | ||
And <userRole> clicks left navigation item 'helparea' | ||
And <userRole> clicks left navigation item 'helparticle' | ||
And <userRole> clicks left navigation item 'contact' | ||
# TODO nuxt pages - the navigation structure is different, | ||
# therefor leave it for last page otherwise the other pages won't be found | ||
And <userRole> clicks left navigation item 'content' | ||
Examples: | ||
| userRole | tabsList | | ||
| teacher | SCHÜLER:INNEN, LEHRER:INNEN, KLASSEN | | ||
| admin | SCHÜLER, LEHRER, KURSE, KLASSEN, TEAMS, SCHULE | | ||
|
||
@studentClicksLeftMenuItems | ||
Scenario Outline: As a user, I want to be able to click the left menu items | ||
Given student logs in | ||
Then <userRole> clicks left navigation item 'logo' | ||
And <userRole> clicks left navigation item 'dashboard' | ||
And <userRole> clicks left navigation item 'rooms-overview' | ||
And <userRole> clicks left navigation item 'teams' | ||
And <userRole> clicks left navigation item 'homework' | ||
And <userRole> clicks left navigation item 'asked homework' | ||
And <userRole> clicks left navigation item 'private homework' | ||
And <userRole> clicks left navigation item 'archived homework' | ||
And <userRole> clicks left navigation item 'files' | ||
And <userRole> clicks left navigation item 'my files' | ||
And <userRole> clicks left navigation item 'course files' | ||
And <userRole> clicks left navigation item 'team files' | ||
And <userRole> clicks left navigation item 'shared files' | ||
And <userRole> clicks left navigation item 'news' | ||
And <userRole> clicks left navigation item 'calendar' | ||
And <userRole> clicks left navigation item 'addons' | ||
And <userRole> clicks left navigation item 'helparea' | ||
And <userRole> clicks left navigation item 'helparticle' | ||
And <userRole> clicks left navigation item 'contact' | ||
# TODO nuxt pages - the navigation structure is different, | ||
# therefor leave it for last page otherwise the other pages won't be found | ||
And <userRole> clicks left navigation item 'content' | ||
Examples: | ||
| userRole | | ||
| student | | ||
@studentClicksLeftMenuItems | ||
Scenario Outline: As a user, I want to be able to click the left menu items | ||
Given student logs in | ||
Then <userRole> clicks left navigation item 'logo' | ||
And <userRole> clicks left navigation item 'dashboard' | ||
And <userRole> clicks left navigation item 'rooms-overview' | ||
And <userRole> clicks left navigation item 'teams' | ||
And <userRole> clicks left navigation item 'homework' | ||
And <userRole> clicks left navigation item 'asked homework' | ||
And <userRole> clicks left navigation item 'private homework' | ||
And <userRole> clicks left navigation item 'archived homework' | ||
And <userRole> clicks left navigation item 'files' | ||
And <userRole> clicks left navigation item 'my files' | ||
And <userRole> clicks left navigation item 'course files' | ||
And <userRole> clicks left navigation item 'team files' | ||
And <userRole> clicks left navigation item 'shared files' | ||
And <userRole> clicks left navigation item 'news' | ||
And <userRole> clicks left navigation item 'calendar' | ||
And <userRole> clicks left navigation item 'helparea' | ||
And <userRole> clicks left navigation item 'helparticle' | ||
And <userRole> clicks left navigation item 'contact' | ||
# TODO nuxt pages - the navigation structure is different, | ||
# therefor leave it for last page otherwise the other pages won't be found | ||
And <userRole> clicks left navigation item 'content' | ||
Examples: | ||
| userRole | | ||
| student | |
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,17 +1,17 @@ | ||
@teams @e2eCore @stableTest @tasks_and_other | ||
Feature: Set of tests to delete teams | ||
|
||
Background: User opens Schul-cloud homepage Website | ||
Given user arrives on the Schul-Cloud homepage | ||
Background: User opens Schul-cloud homepage Website | ||
Given user arrives on the Schul-Cloud homepage | ||
|
||
@deleteTeam | ||
Scenario Outline: As a user, I want to be able to delete a team | ||
Given <userRole> logs in with email '<userName>' and password '<password>' | ||
Then <userRole> goes to Teams Page | ||
And <userRole> sees that team with name '<teamName>' is visible on the list | ||
When <userRole> chooses team with name '<teamName>' | ||
And <userRole> clicks on Delete-team button | ||
Then <userRole> sees that team with name '<teamName>' is not visible on the list | ||
Examples: | ||
| userRole | userName | password | teamName | | ||
| teacher | karl.teacher.qa@schul-cloud.org | Schulcloud1qa! | Musik | | ||
@deleteTeam | ||
Scenario Outline: As a user, I want to be able to delete a team | ||
Given <userRole> logs in with email '<userName>' and password '<password>' | ||
Then <userRole> goes to Teams Page | ||
And <userRole> sees that team with name '<teamName>' is visible on the list | ||
When <userRole> chooses team with name '<teamName>' | ||
And <userRole> clicks on Delete-team button | ||
Then <userRole> sees that team with name '<teamName>' is not visible on the list | ||
Examples: | ||
| userRole | userName | password | teamName | | ||
| teacher | karl.teacher.qa@schul-cloud.org | Schulcloud1qa! | Musik | |
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,24 +1,24 @@ | ||
@teams @e2eCore @stableTest @tasks_and_other | ||
Feature: Set of tests to edit teams | ||
|
||
Background: User opens Schul-cloud homepage Website | ||
Given user arrives on the Schul-Cloud homepage | ||
Background: User opens Schul-cloud homepage Website | ||
Given user arrives on the Schul-Cloud homepage | ||
|
||
@editTeam | ||
Scenario Outline: As a user, I want to be able to edit a team | ||
Given <userRole> logs in with email '<userName>' and password '<password>' | ||
Then <userRole> goes to Teams Page | ||
And <userRole> sees that team with name '<teamName>' is visible on the list | ||
When <userRole> chooses team with name '<teamName>' | ||
And <userRole> clicks on Edit-team button | ||
And <userRole> changes name of Team '<changeName>' | ||
And <userRole> changes team description '<description>' | ||
And <userRole> chooses team colour '<colour>' | ||
And <userRole> clicks on Save-changes in team button | ||
And <userRole> goes to Teams Page | ||
Then <userRole> sees that team with name '<changeName>' is visible on the list | ||
And <userRole> should see that team name '<changeName>' with description correctly displayed '<description>' | ||
And <userRole> should see team with name '<changeName>' has colour '<colour>' | ||
Examples: | ||
| userRole | userName | password | teamName | colour | changeName | description | | ||
| teacher | karl.teacher.qa@schul-cloud.org | Schulcloud1qa! | Musik | green | Sport | I LIKE IT | | ||
@editTeam | ||
Scenario Outline: As a user, I want to be able to edit a team | ||
Given <userRole> logs in with email '<userName>' and password '<password>' | ||
Then <userRole> goes to Teams Page | ||
And <userRole> sees that team with name '<teamName>' is visible on the list | ||
When <userRole> chooses team with name '<teamName>' | ||
And <userRole> clicks on Edit-team button | ||
And <userRole> changes name of Team '<changeName>' | ||
And <userRole> changes team description '<description>' | ||
And <userRole> chooses team colour '<colour>' | ||
And <userRole> clicks on Save-changes in team button | ||
And <userRole> goes to Teams Page | ||
Then <userRole> sees that team with name '<changeName>' is visible on the list | ||
And <userRole> should see that team name '<changeName>' with description correctly displayed '<description>' | ||
And <userRole> should see team with name '<changeName>' has colour '<colour>' | ||
Examples: | ||
| userRole | userName | password | teamName | colour | changeName | description | | ||
| teacher | karl.teacher.qa@schul-cloud.org | Schulcloud1qa! | Musik | green | Sport | I LIKE IT | |
Oops, something went wrong.