Rev 1 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
@mod @mod_page @core_completionFeature: View activity completion information in the Page resourceIn order to have visibility of page completion requirementsAs a studentI need to be able to view my page completion progressBackground:Given the following "users" exist:| username | firstname | lastname | email || student1 | Vinnie | Student1 | student1@example.com || teacher1 | Darrell | Teacher1 | teacher1@example.com |And the following "courses" exist:| fullname | shortname | category | enablecompletion | showcompletionconditions || Course 1 | C1 | 0 | 1 | 1 || Course 2 | C2 | 0 | 1 | 0 |And the following "course enrolments" exist:| user | course | role || student1 | C1 | student || student1 | C2 | student || teacher1 | C1 | editingteacher || teacher1 | C2 | editingteacher |Scenario: A teacher can view a page resource automatic completion itemsGiven the following "activity" exists:| activity | page || course | C1 || idnumber | page1 || name | Music history || intro | A lesson learned in life || completion | 2 || completionview | 1 |When I am on the "Music history" "page activity" page logged in as teacher1Then "Music history" should have the "View" completion conditionScenario: A student can complete a page resource by viewing itGiven the following "activity" exists:| activity | page || course | C1 || idnumber | page1 || name | Music history || intro | A lesson learned in life || completion | 2 || completionview | 1 |When I am on the "Music history" "page activity" page logged in as student1Then the "View" completion condition of "Music history" is displayed as "done"@javascriptScenario: A teacher cannot manually mark the page activity as doneGiven the following "activity" exists:| activity | page || course | C1 || idnumber | page1 || name | Music history || intro | A lesson learned in life || completion | 1 |# Teacher view.When I am on the "Music history" "page activity" page logged in as teacher1Then the manual completion button for "Music history" should be disabled@javascriptScenario: A student can manually mark the page activity as doneGiven the following "activity" exists:| activity | page || course | C1 || idnumber | page1 || name | Music history || intro | A lesson learned in life || completion | 1 |# Teacher view.When I am on the "Music history" "page activity" page logged in as student1And I toggle the manual completion state of "Music history"And the manual completion button of "Music history" is displayed as "Done"Scenario Outline: Page module manual completion button hidden if Show activity completion is set to NoGiven the following "activity" exists:| activity | page || course | C2 || idnumber | page1 || name | Music history || intro | A lesson learned in life || completion | 1 |When I am on the "Course 2" course page logged in as <user># Course 2 has 'Show activity completion conditions' set to No, so the manual completion button should not be displayed.Then the manual completion button for "Music history" should not existExamples:| user || teacher1 || student1 |