MOBILE-4470 course: Fix tests for previous LMS versions
parent
f7248f4203
commit
f2c0e474d0
|
@ -5,7 +5,8 @@ Feature: Test basic usage of one course in app
|
|||
I need basic course functionality to work
|
||||
|
||||
Background:
|
||||
Given the following "users" exist:
|
||||
Given the Moodle site is compatible with this feature
|
||||
And the following "users" exist:
|
||||
| username | firstname | lastname | email |
|
||||
| teacher1 | Teacher | teacher | teacher1@example.com |
|
||||
| student1 | Student | student | student1@example.com |
|
||||
|
@ -72,8 +73,7 @@ Feature: Test basic usage of one course in app
|
|||
| workshop | Test workshop name | Test workshop | C1 | workshop | 0 | 3 |
|
||||
|
||||
Scenario: Self enrol
|
||||
Given the Moodle site is compatible with this feature
|
||||
And I log in as "teacher1"
|
||||
Given I log in as "teacher1"
|
||||
And I am on "Course 1" course homepage
|
||||
And I add "Self enrolment" enrolment method with:
|
||||
| Custom instance name | Student self enrolment |
|
||||
|
|
|
@ -0,0 +1,335 @@
|
|||
@core_course @app @javascript @lms_upto4.3
|
||||
Feature: Test basic usage of one course in app
|
||||
In order to participate in one course while using the mobile app
|
||||
As a student
|
||||
I need basic course functionality to work
|
||||
|
||||
Background:
|
||||
Given the Moodle site is compatible with this feature
|
||||
And the following "users" exist:
|
||||
| username | firstname | lastname | email |
|
||||
| teacher1 | Teacher | teacher | teacher1@example.com |
|
||||
| student1 | Student | student | student1@example.com |
|
||||
| student2 | Student2 | student2 | student2@example.com |
|
||||
And the following "courses" exist:
|
||||
| fullname | shortname | category |
|
||||
| Course 1 | C1 | 0 |
|
||||
And the following "course enrolments" exist:
|
||||
| user | course | role |
|
||||
| teacher1 | C1 | editingteacher |
|
||||
| student1 | C1 | student |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | option | section |
|
||||
| choice | Choice course 1 | Test choice description | C1 | choice1 | Option 1, Option 2, Option 3 | 1 |
|
||||
And the following "activities" exist:
|
||||
| activity | course | idnumber | name | intro | assignsubmission_onlinetext_enabled | section |
|
||||
| assign | C1 | assign1 | assignment | Test assignment description | 1 | 1 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | groupmode | assessed | scale[modgrade_type] |
|
||||
| forum | Test forum name | Test forum | C1 | forum | 0 | 5 | Point |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | groupmode | section |
|
||||
| chat | Test chat name | Test chat | C1 | chat | 0 | 2 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | section |
|
||||
| data | Web links | Useful links | C1 | data1 | 4 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | groupmode | section |
|
||||
| lti | Test external name | Test external | C1 | external | 0 | 1 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | groupmode | section |
|
||||
| feedback | Test feedback name | Test feedback | C1 | feedback | 0 | 3 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | section |
|
||||
| glossary | Test glossary | glossary description | C1 | gloss1 | 5 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | section |
|
||||
| quiz | Quiz 1 | Quiz 1 description | C1 | quiz1 | 2 |
|
||||
And the following "question categories" exist:
|
||||
| contextlevel | reference | name |
|
||||
| Course | C1 | Test questions |
|
||||
And the following "questions" exist:
|
||||
| questioncategory | qtype | name | questiontext |
|
||||
| Test questions | truefalse | TF1 | Text of the first question |
|
||||
| Test questions | truefalse | TF2 | Text of the second question |
|
||||
And quiz "Quiz 1" contains the following questions:
|
||||
| question | page |
|
||||
| TF1 | 1 |
|
||||
| TF2 | 2 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | groupmode | section |
|
||||
| survey | Test survey name | Test survey | C1 | survey | 0 | 1 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | groupmode |
|
||||
| wiki | Test wiki name | Test wiki | C1 | wiki | 0 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | groupmode | section |
|
||||
| lesson | Test lesson name | Test lesson | C1 | lesson | 0 | 3 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | groupmode | section |
|
||||
| scorm | Test scorm name | Test scorm | C1 | scorm | 0 | 2 |
|
||||
And the following "activities" exist:
|
||||
| activity | name | intro | course | idnumber | groupmode | section |
|
||||
| workshop | Test workshop name | Test workshop | C1 | workshop | 0 | 3 |
|
||||
|
||||
# TODO remove once MDL-77951 is resolved.
|
||||
And I log in as "admin"
|
||||
And I am on "Course 1" course homepage with editing mode on
|
||||
And I open "Choice course 1" actions menu
|
||||
And I click on "Move right" "link" in the "Choice course 1" activity
|
||||
And I open "assignment" actions menu
|
||||
And I click on "Move right" "link" in the "assignment" activity
|
||||
And I log out
|
||||
|
||||
Scenario: View section contents
|
||||
When I entered the course "Course 1" as "student1" in the app
|
||||
Then the header should be "Course 1" in the app
|
||||
And I should find "Test forum name" in the app
|
||||
And I should find "Test wiki name" in the app
|
||||
And I should find "Choice course 1" in the app
|
||||
And I should find "assignment" in the app
|
||||
And I should find "Test external name" in the app
|
||||
And I should find "Test survey name" in the app
|
||||
And I should find "Test chat name" in the app
|
||||
And I should find "Quiz 1" in the app
|
||||
And I should find "Test scorm name" in the app
|
||||
And I should find "Test feedback name" in the app
|
||||
And I should find "Test lesson name" in the app
|
||||
And I should find "Test workshop name" in the app
|
||||
And I should not find "Web links" in the app
|
||||
And I should not find "Test glossary" in the app
|
||||
|
||||
When I press "Course index" in the app
|
||||
And I press "General" in the app
|
||||
Then I should find "Test forum name" in the app
|
||||
And I should find "Test wiki name" in the app
|
||||
But I should not find "Choice course 1" in the app
|
||||
And I should not find "assignment" in the app
|
||||
And I should not find "Test chat name" in the app
|
||||
And I should not find "Web links" in the app
|
||||
And I should not find "Test external name" in the app
|
||||
And I should not find "Test feedback name" in the app
|
||||
And I should not find "Test glossary" in the app
|
||||
And I should not find "Quiz 1" in the app
|
||||
And I should not find "Test survey name" in the app
|
||||
And I should not find "Test lesson name" in the app
|
||||
And I should not find "Test scorm name" in the app
|
||||
And I should not find "Test workshop name" in the app
|
||||
|
||||
When I press "Test forum name" in the app
|
||||
Then the header should be "Test forum name" in the app
|
||||
|
||||
When I press the back button in the app
|
||||
And I press "Test wiki name" in the app
|
||||
Then the header should be "Test wiki name" in the app
|
||||
|
||||
When I press the back button in the app
|
||||
And I press "Course index" in the app
|
||||
And I press "Topic 1" in the app
|
||||
Then I should find "Choice course 1" in the app
|
||||
And I should find "assignment" in the app
|
||||
And I should find "Test external name" in the app
|
||||
And I should find "Test survey name" in the app
|
||||
But I should not find "Test forum name" in the app
|
||||
And I should not find "Test chat name" in the app
|
||||
And I should not find "Web links" in the app
|
||||
And I should not find "Test feedback name" in the app
|
||||
And I should not find "Test glossary" in the app
|
||||
And I should not find "Quiz 1" in the app
|
||||
And I should not find "Test wiki name" in the app
|
||||
And I should not find "Test lesson name" in the app
|
||||
And I should not find "Test scorm name" in the app
|
||||
And I should not find "Test workshop name" in the app
|
||||
|
||||
When I press "Choice course 1" in the app
|
||||
Then the header should be "Choice course 1" in the app
|
||||
|
||||
When I press the back button in the app
|
||||
And I press "assignment" in the app
|
||||
Then the header should be "assignment" in the app
|
||||
|
||||
When I press the back button in the app
|
||||
And I press "Test external name" in the app
|
||||
Then the header should be "Test external name" in the app
|
||||
|
||||
When I press the back button in the app
|
||||
And I press "Test survey name" in the app
|
||||
Then the header should be "Test survey name" in the app
|
||||
|
||||
When I press the back button in the app
|
||||
And I press "Course index" in the app
|
||||
And I press "Topic 2" in the app
|
||||
Then I should find "Quiz 1" in the app
|
||||
And I should find "Test chat name" in the app
|
||||
And I should find "Test scorm name" in the app
|
||||
But I should not find "Choice course 1" in the app
|
||||
And I should not find "assignment" in the app
|
||||
And I should not find "Test forum name" in the app
|
||||
And I should not find "Web links" in the app
|
||||
And I should not find "Test external name" in the app
|
||||
And I should not find "Test feedback name" in the app
|
||||
And I should not find "Test glossary" in the app
|
||||
And I should not find "Test survey name" in the app
|
||||
And I should not find "Test wiki name" in the app
|
||||
And I should not find "Test lesson name" in the app
|
||||
And I should not find "Test workshop name" in the app
|
||||
|
||||
When I press "Test chat name" in the app
|
||||
Then the header should be "Test chat name" in the app
|
||||
|
||||
When I press the back button in the app
|
||||
And I press "Quiz 1" in the app
|
||||
Then the header should be "Quiz 1" in the app
|
||||
|
||||
When I press the back button in the app
|
||||
And I press "Test scorm name" in the app
|
||||
Then the header should be "Test scorm name" in the app
|
||||
|
||||
When I press the back button in the app
|
||||
And I press "Course index" in the app
|
||||
And I press "Topic 3" in the app
|
||||
Then I should find "Test feedback name" in the app
|
||||
And I should find "Test lesson name" in the app
|
||||
And I should find "Test workshop name" in the app
|
||||
But I should not find "Choice course 1" in the app
|
||||
And I should not find "assignment" in the app
|
||||
And I should not find "Test forum name" in the app
|
||||
And I should not find "Test chat name" in the app
|
||||
And I should not find "Web links" in the app
|
||||
And I should not find "Test external name" in the app
|
||||
And I should not find "Test glossary" in the app
|
||||
And I should not find "Quiz 1" in the app
|
||||
And I should not find "Test survey name" in the app
|
||||
And I should not find "Test wiki name" in the app
|
||||
And I should not find "Test scorm name" in the app
|
||||
|
||||
When I press "Test feedback name" in the app
|
||||
And I press "OK" in the app
|
||||
Then the header should be "Test feedback name" in the app
|
||||
|
||||
When I press the back button in the app
|
||||
And I press "Test lesson name" in the app
|
||||
Then the header should be "Test lesson name" in the app
|
||||
|
||||
When I press the back button in the app
|
||||
And I press "Test workshop name" in the app
|
||||
Then the header should be "Test workshop name" in the app
|
||||
|
||||
When I press the back button in the app
|
||||
And I press "Course index" in the app
|
||||
And I press "Topic 4" in the app
|
||||
Then I should find "Web links" in the app
|
||||
But I should not find "Choice course 1" in the app
|
||||
And I should not find "assignment" in the app
|
||||
And I should not find "Test forum name" in the app
|
||||
And I should not find "Test chat name" in the app
|
||||
And I should not find "Test external name" in the app
|
||||
And I should not find "Test feedback name" in the app
|
||||
And I should not find "Test glossary" in the app
|
||||
And I should not find "Quiz 1" in the app
|
||||
And I should not find "Test survey name" in the app
|
||||
And I should not find "Test wiki name" in the app
|
||||
And I should not find "Test lesson name" in the app
|
||||
And I should not find "Test scorm name" in the app
|
||||
And I should not find "Test workshop name" in the app
|
||||
|
||||
When I press "Web links" in the app
|
||||
Then the header should be "Web links" in the app
|
||||
|
||||
When I press the back button in the app
|
||||
And I press "Course index" in the app
|
||||
And I press "Topic 5" in the app
|
||||
Then I should find "Test glossary" in the app
|
||||
But I should not find "Choice course 1" in the app
|
||||
And I should not find "assignment" in the app
|
||||
And I should not find "Test forum name" in the app
|
||||
And I should not find "Test chat name" in the app
|
||||
And I should not find "Web links" in the app
|
||||
And I should not find "Test external name" in the app
|
||||
And I should not find "Test feedback name" in the app
|
||||
And I should not find "Quiz 1" in the app
|
||||
And I should not find "Test survey name" in the app
|
||||
And I should not find "Test wiki name" in the app
|
||||
And I should not find "Test lesson name" in the app
|
||||
And I should not find "Test scorm name" in the app
|
||||
And I should not find "Test workshop name" in the app
|
||||
|
||||
When I press "Test glossary" in the app
|
||||
Then the header should be "Test glossary" in the app
|
||||
|
||||
Scenario: Navigation between sections using the bottom arrows
|
||||
When I entered the course "Course 1" as "student1" in the app
|
||||
Then the header should be "Course 1" in the app
|
||||
And I should find "Test forum name" in the app
|
||||
And I should find "Test wiki name" in the app
|
||||
And I should find "Choice course 1" in the app
|
||||
And I should find "assignment" in the app
|
||||
And I should find "Test external name" in the app
|
||||
And I should find "Test survey name" in the app
|
||||
And I should find "Test chat name" in the app
|
||||
And I should find "Quiz 1" in the app
|
||||
And I should find "Test scorm name" in the app
|
||||
And I should find "Test feedback name" in the app
|
||||
And I should find "Test lesson name" in the app
|
||||
And I should find "Test workshop name" in the app
|
||||
And I should not find "Web links" in the app
|
||||
And I should not find "Test glossary" in the app
|
||||
|
||||
When I press "Course index" in the app
|
||||
And I press "General" in the app
|
||||
Then I should find "General" in the app
|
||||
And I should find "Next: Topic 1" in the app
|
||||
But I should not find "Topic 2" in the app
|
||||
And I should not find "Topic 3" in the app
|
||||
And I should not find "Topic 4" in the app
|
||||
And I should not find "Topic 5" in the app
|
||||
And I should not find "Previous:" in the app
|
||||
|
||||
When I press "Next:" in the app
|
||||
Then I should find "Topic 1" in the app
|
||||
And I should find "Previous: General" in the app
|
||||
And I should find "Next: Topic 2" in the app
|
||||
But I should not find "Topic 3" in the app
|
||||
And I should not find "Topic 4" in the app
|
||||
And I should not find "Topic 5" in the app
|
||||
|
||||
When I press "Next:" in the app
|
||||
Then I should find "Topic 2" in the app
|
||||
And I should find "Previous: Topic 1" in the app
|
||||
And I should find "Next: Topic 3" in the app
|
||||
But I should not find "General" in the app
|
||||
And I should not find "Topic 4" in the app
|
||||
And I should not find "Topic 5" in the app
|
||||
|
||||
When I press "Next:" in the app
|
||||
Then I should find "Topic 3" in the app
|
||||
And I should find "Previous: Topic 2" in the app
|
||||
And I should find "Next: Topic 4" in the app
|
||||
But I should not find "General" in the app
|
||||
And I should not find "Topic 1" in the app
|
||||
And I should not find "Topic 5" in the app
|
||||
|
||||
When I press "Next:" in the app
|
||||
Then I should find "Topic 4" in the app
|
||||
And I should find "Previous: Topic 3" in the app
|
||||
And I should find "Next: Topic 5" in the app
|
||||
But I should not find "General" in the app
|
||||
And I should not find "Topic 1" in the app
|
||||
And I should not find "Topic 2" in the app
|
||||
|
||||
When I press "Next:" in the app
|
||||
Then I should find "Topic 5" in the app
|
||||
And I should find "Previous: Topic 4" in the app
|
||||
But I should not find "General" in the app
|
||||
And I should not find "Topic 1" in the app
|
||||
And I should not find "Topic 2" in the app
|
||||
And I should not find "Topic 3" in the app
|
||||
And I should not find "Next:" in the app
|
||||
|
||||
When I press "Previous:" in the app
|
||||
Then I should find "Topic 4" in the app
|
||||
And I should find "Previous: Topic 3" in the app
|
||||
And I should find "Next: Topic 5" in the app
|
||||
But I should not find "General" in the app
|
||||
And I should not find "Topic 1" in the app
|
||||
And I should not find "Topic 2" in the app
|
|
@ -5,7 +5,8 @@ Feature: Test basic usage of one course in app
|
|||
I need basic course functionality to work
|
||||
|
||||
Background:
|
||||
Given the following "users" exist:
|
||||
Given the Moodle site is compatible with this feature
|
||||
And the following "users" exist:
|
||||
| username | firstname | lastname | email |
|
||||
| teacher1 | Teacher | teacher | teacher1@example.com |
|
||||
| student1 | Student | student | student1@example.com |
|
||||
|
@ -168,6 +169,7 @@ Feature: Test basic usage of one course in app
|
|||
And I press "Test workshop name" in the app
|
||||
Then the header should be "Test workshop name" in the app
|
||||
|
||||
@lms_from4.4
|
||||
Scenario: View section contents
|
||||
When I entered the course "Course 1" as "student1" in the app
|
||||
Then the header should be "Course 1" in the app
|
||||
|
@ -344,6 +346,7 @@ Feature: Test basic usage of one course in app
|
|||
When I press "Test glossary" in the app
|
||||
Then the header should be "Test glossary" in the app
|
||||
|
||||
@lms_from4.4
|
||||
Scenario: Navigation between sections using the bottom arrows
|
||||
When I entered the course "Course 1" as "student1" in the app
|
||||
Then the header should be "Course 1" in the app
|
||||
|
@ -423,8 +426,7 @@ Feature: Test basic usage of one course in app
|
|||
|
||||
@lms_from4.0
|
||||
Scenario: Self enrol
|
||||
Given the Moodle site is compatible with this feature
|
||||
And I log in as "teacher1"
|
||||
Given I log in as "teacher1"
|
||||
And I add "Self enrolment" enrolment method in "Course 1" with:
|
||||
| Custom instance name | Student self enrolment |
|
||||
And I entered the app as "student2"
|
||||
|
|
|
@ -0,0 +1,46 @@
|
|||
@core_course @app @javascript @lms_from4.0 @lms_upto4.3
|
||||
Feature: Check relative dates feature.
|
||||
|
||||
Background:
|
||||
Given the Moodle site is compatible with this feature
|
||||
And the following config values are set as admin:
|
||||
| enablecourserelativedates | 1 |
|
||||
And the following "users" exist:
|
||||
| username | firstname | lastname | email |
|
||||
| student1 | Student | 1 | student1@example.com |
|
||||
| teacher1 | Student | 1 | student1@example.com |
|
||||
And the following "courses" exist:
|
||||
| fullname | shortname | category | startdate | enddate | relativedatesmode | showactivitydates |
|
||||
| Course 1 | C1 | 0 | ## 1 January 2022 ## | ## 1 January 2023 ## | 1 | 1 |
|
||||
And the following "course enrolments" exist:
|
||||
| user | course | role |
|
||||
| student1 | C1 | student |
|
||||
| teacher1 | C1 | editingteacher |
|
||||
And the following "activities" exist:
|
||||
| activity | course | idnumber | name | allowsubmissionsfromdate | duedate | section |
|
||||
| assign | C1 | assign1 | Assignment 1 | ## 20 January 2022 ## | ## 31 July 2022 ## | 1 |
|
||||
| assign | C1 | assign2 | Assignment 2 | ## 1 December 2021 ## | ## 31 January 2023 10:00 AM ## | 2 |
|
||||
|
||||
Scenario: Relative dates (student)
|
||||
Given I entered the course "Course 1" as "student1" in the app
|
||||
When I press "Course index" in the app
|
||||
And I press "Topic 1" in the app
|
||||
Then I should find "20 January 2022, 12:00 AM" near "Opened:" in the app
|
||||
And I should find "31 July 2022, 12:00 AM" near "Due:" in the app
|
||||
|
||||
When I press "Course index" in the app
|
||||
And I press "Topic 2" in the app
|
||||
And I should find "1 December 2021, 12:00 AM" near "Opened:" in the app
|
||||
And I should find "31 January 2023, 10:00 AM" near "Due:" in the app
|
||||
|
||||
Scenario: Relative dates (teacher)
|
||||
Given I entered the course "Course 1" as "teacher1" in the app
|
||||
When I press "Course index" in the app
|
||||
And I press "Topic 1" in the app
|
||||
Then I should find "19 days after course start" near "Opened:" in the app
|
||||
And I should find "211 days after course start" near "Due:" in the app
|
||||
|
||||
When I press "Course index" in the app
|
||||
And I press "Topic 2" in the app
|
||||
And I should find "31 days before course start" near "Opened:" in the app
|
||||
And I should find "1 year 30 days 10 hours after course start" near "Due:" in the app
|
|
@ -1,10 +1,11 @@
|
|||
@core_course @app @javascript @lms_from4.0
|
||||
@core_course @app @javascript @lms_from4.4
|
||||
Feature: Check relative dates feature.
|
||||
|
||||
Background:
|
||||
Given the following config values are set as admin:
|
||||
Given the Moodle site is compatible with this feature
|
||||
And the following config values are set as admin:
|
||||
| enablecourserelativedates | 1 |
|
||||
Given the following "users" exist:
|
||||
And the following "users" exist:
|
||||
| username | firstname | lastname | email |
|
||||
| student1 | Student | 1 | student1@example.com |
|
||||
| teacher1 | Student | 1 | student1@example.com |
|
||||
|
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
Loading…
Reference in New Issue