You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
242 lines
11 KiB
242 lines
11 KiB
@mod @mod_feedback
|
|
Feature: Mapping courses in a feedback
|
|
In order to collect the same feedback about multiple courses
|
|
As a manager
|
|
I need to be able to map site feedback to courses
|
|
|
|
Background:
|
|
Given the following "users" exist:
|
|
| username | firstname | lastname |
|
|
| user1 | Username | 1 |
|
|
| user2 | Username | 2 |
|
|
| user3 | Username | 3 |
|
|
| teacher | Teacher | 4 |
|
|
| manager | Manager | 5 |
|
|
And the following "courses" exist:
|
|
| fullname | shortname |
|
|
| Course 1 | C1 |
|
|
| Course 2 | C2 |
|
|
| Course 3 | C3 |
|
|
And the following "course enrolments" exist:
|
|
| user | course | role |
|
|
| user1 | C1 | student |
|
|
| user1 | C2 | student |
|
|
| user2 | C1 | student |
|
|
| user2 | C2 | student |
|
|
| user3 | C3 | student |
|
|
| teacher | C1 | editingteacher |
|
|
| teacher | C2 | editingteacher |
|
|
| teacher | C3 | editingteacher |
|
|
And the following "system role assigns" exist:
|
|
| user | course | role |
|
|
| manager | Acceptance test site | manager |
|
|
And the following "activities" exist:
|
|
| activity | name | course | idnumber | anonymous | publish_stats | section |
|
|
| feedback | Course feedback | Acceptance test site | feedback0 | 1 | 1 | 1 |
|
|
| feedback | Another feedback | C1 | feedback1 | 1 | 1 | 0 |
|
|
When I log in as "manager"
|
|
And I am on site homepage
|
|
And I follow "Course feedback"
|
|
And I click on "Edit questions" "link" in the "[role=main]" "css_element"
|
|
And I add a "Information" question to the feedback with:
|
|
| Question | this is an information question |
|
|
| Label | info |
|
|
| Information type | Course |
|
|
And I add a "Multiple choice (rated)" question to the feedback with:
|
|
| Question | this is a multiple choice rated |
|
|
| Label | multichoicerated |
|
|
| Multiple choice type | Multiple choice - single answer |
|
|
| Multiple choice values | 0/option a\n1/option b\n5/option c |
|
|
And I add a "Multiple choice" question to the feedback with:
|
|
| Question | this is a simple multiple choice |
|
|
| Label | multichoicesimple |
|
|
| Multiple choice type | Multiple choice - single answer allowed (drop-down menu) |
|
|
| Multiple choice values | option d\noption e\noption f |
|
|
And I log out
|
|
And I log in as "teacher"
|
|
And I am on "Course 1" course homepage with editing mode on
|
|
And I add the "Feedback" block
|
|
And I am on "Course 2" course homepage
|
|
And I add the "Feedback" block
|
|
And I am on "Course 3" course homepage
|
|
And I add the "Feedback" block
|
|
And I log out
|
|
|
|
Scenario: Course feedback can not be mapped
|
|
And I log in as "manager"
|
|
And I am on "Course 1" course homepage
|
|
And I follow "Another feedback"
|
|
And I should not see "Mapped courses"
|
|
And I should not see "Map feedback to courses"
|
|
|
|
@javascript
|
|
Scenario: Site feedback is not mapped to any course
|
|
And I log in as "user1"
|
|
And I am on site homepage
|
|
And I follow "Course feedback"
|
|
And I follow "Answer the questions"
|
|
And I should see "Acceptance test site" in the ".feedback_form" "css_element"
|
|
And I set the following fields to these values:
|
|
| option a | 1 |
|
|
| this is a simple multiple choice | option d |
|
|
And I press "Submit your answers"
|
|
And I press "Continue"
|
|
And I am on "Course 1" course homepage
|
|
And I click on "Course feedback" "link" in the "Feedback" "block"
|
|
And I follow "Answer the questions"
|
|
And I should not see "Acceptance test site" in the ".feedback_form" "css_element"
|
|
And I should see "C1" in the ".feedback_form" "css_element"
|
|
And I set the following fields to these values:
|
|
| option b | 1 |
|
|
| this is a simple multiple choice | option e |
|
|
And I press "Submit your answers"
|
|
And I press "Continue"
|
|
And I click on "Course feedback" "link" in the "Feedback" "block"
|
|
And I should not see "Answer the questions"
|
|
And I log out
|
|
And I log in as "user2"
|
|
And I am on "Course 1" course homepage
|
|
And I click on "Course feedback" "link" in the "Feedback" "block"
|
|
And I follow "Answer the questions"
|
|
And I should not see "Acceptance test site" in the ".feedback_form" "css_element"
|
|
And I should see "C1" in the ".feedback_form" "css_element"
|
|
And I set the following fields to these values:
|
|
| option c | 1 |
|
|
| this is a simple multiple choice | option e |
|
|
And I press "Submit your answers"
|
|
And I press "Continue"
|
|
And I log out
|
|
And I log in as "manager"
|
|
And I am on site homepage
|
|
And I follow "Course feedback"
|
|
|
|
And I navigate to "Analysis" in current page administration
|
|
And I should see "All courses" in the "#feedback_course_filter [data-fieldtype=autocomplete] .form-autocomplete-selection [role=listitem]" "css_element"
|
|
And I show chart data for the "multichoicerated" feedback
|
|
And I should see "1 (33.33 %)" in the "option a" "table_row"
|
|
And I should see "1 (33.33 %)" in the "option b" "table_row"
|
|
And I should see "1 (33.33 %)" in the "option c" "table_row"
|
|
And I should see "Average: 2.00"
|
|
And I follow "Sort by course"
|
|
And I should see "2.50" in the "C1" "table_row"
|
|
And I should see "1.00" in the "Acceptance test site" "table_row"
|
|
And I click on "Back" "link" in the "region-main" "region"
|
|
And I set the field "Filter by course" to "Course 1"
|
|
And I press "Filter"
|
|
And I should see "Course 1" in the "#feedback_course_filter [data-fieldtype=autocomplete] .form-autocomplete-selection [role=listitem]" "css_element"
|
|
And I show chart data for the "multichoicerated" feedback
|
|
And I should see "0" in the "option a" "table_row"
|
|
And I should see "1 (50.00 %)" in the "option b" "table_row"
|
|
And I should see "1 (50.00 %)" in the "option c" "table_row"
|
|
And I log out
|
|
|
|
@javascript
|
|
Scenario: Site feedback is mapped to courses
|
|
And I log in as "manager"
|
|
And I am on site homepage
|
|
And I follow "Course feedback"
|
|
And I follow "Map feedback to courses"
|
|
And I set the field "Courses" to "Course 2"
|
|
And I set the field "Courses" to "Course 3"
|
|
And I press "Save changes"
|
|
And I should see "Course mapping has been changed"
|
|
And I log out
|
|
|
|
And I log in as "user1"
|
|
And I am on site homepage
|
|
And I follow "Course feedback"
|
|
And I should see "You can only access this feedback from a course"
|
|
And I should not see "Answer the questions"
|
|
|
|
And I am on "Course 1" course homepage
|
|
And "Feedback" "block" should not exist
|
|
And I should not see "Course feedback"
|
|
|
|
And I am on "Course 2" course homepage
|
|
And I click on "Course feedback" "link" in the "Feedback" "block"
|
|
And I follow "Answer the questions"
|
|
And I should not see "Acceptance test site" in the ".feedback_form" "css_element"
|
|
And I should see "C2" in the ".feedback_form" "css_element"
|
|
And I set the following fields to these values:
|
|
| option b | 1 |
|
|
| this is a simple multiple choice | option e |
|
|
And I press "Submit your answers"
|
|
And I press "Continue"
|
|
And I click on "Course feedback" "link" in the "Feedback" "block"
|
|
And I should not see "Answer the questions"
|
|
And I log out
|
|
And I log in as "user2"
|
|
And I am on "Course 2" course homepage
|
|
And I click on "Course feedback" "link" in the "Feedback" "block"
|
|
And I follow "Answer the questions"
|
|
And I should not see "Acceptance test site" in the ".feedback_form" "css_element"
|
|
And I should see "C2" in the ".feedback_form" "css_element"
|
|
And I set the following fields to these values:
|
|
| option c | 1 |
|
|
| this is a simple multiple choice | option e |
|
|
And I press "Submit your answers"
|
|
And I press "Continue"
|
|
And I log out
|
|
And I log in as "user3"
|
|
And I am on "Course 3" course homepage
|
|
And I click on "Course feedback" "link" in the "Feedback" "block"
|
|
And I follow "Answer the questions"
|
|
And I should not see "Acceptance test site" in the ".feedback_form" "css_element"
|
|
And I should see "C3" in the ".feedback_form" "css_element"
|
|
And I set the following fields to these values:
|
|
| option c | 1 |
|
|
| this is a simple multiple choice | option d |
|
|
And I press "Submit your answers"
|
|
And I press "Continue"
|
|
And I log out
|
|
And I log in as "manager"
|
|
And I am on site homepage
|
|
And I follow "Course feedback"
|
|
And I navigate to "Analysis" in current page administration
|
|
And I should see "All courses" in the "#feedback_course_filter [data-fieldtype=autocomplete] .form-autocomplete-selection [role=listitem]" "css_element"
|
|
And I show chart data for the "multichoicerated" feedback
|
|
And I should see "0" in the "option a" "table_row"
|
|
And I should see "1 (33.33 %)" in the "option b" "table_row"
|
|
And I should see "2 (66.67 %)" in the "option c" "table_row"
|
|
And I should see "Average: 3.67"
|
|
And I click on "Sort by course" "link"
|
|
And I should see "3.00" in the "C3" "table_row"
|
|
And I should see "2.50" in the "C2" "table_row"
|
|
And I click on "Back" "link" in the "region-main" "region"
|
|
And I set the field "Filter by course" to "Course 2"
|
|
And I press "Filter"
|
|
And I show chart data for the "multichoicerated" feedback
|
|
And I should see "0" in the "option a" "table_row"
|
|
And I should see "1 (50.00 %)" in the "option b" "table_row"
|
|
And I should see "1 (50.00 %)" in the "option c" "table_row"
|
|
And I show chart data for the "multichoicesimple" feedback
|
|
And I should see "2 (100.00 %)" in the "option e" "table_row"
|
|
And I set the field "Filter by course" to "Course 3"
|
|
And I press "Filter"
|
|
And I show chart data for the "multichoicerated" feedback
|
|
And I should see "0" in the "option a" "table_row"
|
|
And I should see "0" in the "option b" "table_row"
|
|
And I should see "1 (100.00 %)" in the "option c" "table_row"
|
|
And I show chart data for the "multichoicesimple" feedback
|
|
And I should see "1 (100.00 %)" in the "option d" "table_row"
|
|
And I follow "Show all"
|
|
And I show chart data for the "multichoicesimple" feedback
|
|
And I should see "1 (33.33 %)" in the "option d" "table_row"
|
|
And I should see "2 (66.67 %)" in the "option e" "table_row"
|
|
And I should see "0" in the "option f" "table_row"
|
|
And I log out
|
|
|
|
Scenario: Site feedback deletion hides feedback block completely
|
|
When I log in as "manager"
|
|
And I am on site homepage
|
|
And I turn editing mode on
|
|
And I add the "Feedback" block
|
|
And I add the "Main menu" block
|
|
And I click on "Delete" "link" in the "Course feedback" activity
|
|
And I press "Yes"
|
|
And I follow "Turn editing off"
|
|
And I am on site homepage
|
|
Then "Feedback" "block" should not exist
|
|
And I am on "Course 1" course homepage
|
|
And "Feedback" "block" should not exist
|
|
And I log out
|
|
|