Skip to content

Commit

Permalink
Merge branch 'MDL-58772' of git://github.com/aolley/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed May 3, 2017
2 parents 9a5f5ed + 0fb1335 commit c201e4d
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mod/feedback/classes/completion.php
Expand Up @@ -594,7 +594,7 @@ public function find_last_completed() {
// Not possible to retrieve completed anonymous feedback.
return false;
}
$params = array('feedback' => $this->feedback->id, 'userid' => $USER->id);
$params = array('feedback' => $this->feedback->id, 'userid' => $USER->id, 'anonymous_response' => FEEDBACK_ANONYMOUS_NO);
if ($this->get_courseid()) {
$params['courseid'] = $this->get_courseid();
}
Expand Down
55 changes: 55 additions & 0 deletions mod/feedback/tests/behat/anonymous.feature
Expand Up @@ -244,3 +244,58 @@ Feature: Anonymous feedback
And I should not see "Response number: 1"
And I should see "Response number: 2"
And I log out

Scenario: Collecting new non-anonymous feedback from a previously anonymous feedback activity
When I log in as "teacher"
And I follow "Course 1"
And I follow "Course feedback"
And I click on "Edit settings" "link" in the "Administration" "block"
And I set the following fields to these values:
| Allow multiple submissions | Yes |
And I press "Save and display"
And I follow "Edit questions"
And I add a "Short text answer" question to the feedback with:
| Question | this is a short text answer |
| Label | shorttext |
| Maximum characters accepted | 200 |
And I log out
When I log in as "user1"
And I follow "Course 1"
And I follow "Course feedback"
And I follow "Answer the questions..."
And I set the following fields to these values:
| this is a short text answer | anontext |
And I press "Submit your answers"
And I log out
# Switch to non-anon responses.
And I log in as "teacher"
And I follow "Course 1"
And I follow "Course feedback"
And I click on "Edit settings" "link" in the "Administration" "block"
And I set the following fields to these values:
| Record user names | User's name will be logged and shown with answers |
And I press "Save and display"
And I log out
# Now leave a non-anon feedback as user1
When I log in as "user1"
And I follow "Course 1"
And I follow "Course feedback"
And I follow "Answer the questions..."
And I set the following fields to these values:
| this is a short text answer | usertext |
And I press "Submit your answers"
And I log out
# Now check the responses are correct.
When I log in as "teacher"
And I follow "Course 1"
And I follow "Course feedback"
And I follow "Show responses"
And I should see "Anonymous entries (1)"
And I should see "Non anonymous entries (1)"
And I click on "," "link" in the "Username 1" "table_row"
And I should see "(Username 1)"
And I should see "usertext"
And I follow "Back"
And I follow "Response number: 1"
And I should see "Response number: 1 (Anonymous)"
Then I should see "anontext"

0 comments on commit c201e4d

Please sign in to comment.