Rev 1 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
@mod @mod_feedbackFeature: Exporting and importing feedbacksIn order to quickly copy feedbacks across courses and sitesAs a teacherI need to be able to export and import feedbacksBackground:Given the following "users" exist:| username | firstname | lastname || teacher | Teacher | 1 |And the following "courses" exist:| fullname | shortname || Course 1 | C1 || Course 2 | C2 |And the following "course enrolments" exist:| user | course | role || teacher | C1 | editingteacher || teacher | C1 | editingteacher |And the following "activities" exist:| activity | name | course | idnumber || feedback | Learning experience | C1 | feedback0 |And I change window size to "large"Scenario: Export sample feedback and compare with the fixtureWhen I am on the "Learning experience" "feedback activity" page logged in as teacherAnd I navigate to "Questions" in current page administrationAnd "Export questions" "link" should not exist in the ".tertiary-navigation" "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 "Text and media area" question to the feedback with:| Contents | label text |And I add a "Longer text answer" question to the feedback with:| Question | this is a longer text answer || Label | longertext || Required | 1 |And I add a "Multiple choice" question to the feedback with:| Question | this is a multiple choice 1 || Label | multichoice1 || Multiple choice type | Multiple choice - single answer || Multiple choice values | option a\noption b\noption c |And I add a page break to the feedbackAnd I add a "Multiple choice" question to the feedback with:| Question | this is a multiple choice 2 || Label | multichoice2 || Multiple choice type | Multiple choice - multiple answers || Hide the "Not selected" option | Yes || Multiple choice values | option d\noption e\noption f || Dependence item | multichoice1 || Dependence value | option a |And I add a "Multiple choice" question to the feedback with:| Question | this is a multiple choice 3 || Label | multichoice3 || Multiple choice type | Multiple choice - single answer allowed (drop-down menu) || Multiple choice values | option g\noption h\noption i |And I add a "Multiple choice (rated)" question to the feedback with:| Question | this is a multiple choice rated || Label | multichoice4 || Multiple choice type | Multiple choice - single answer || Multiple choice values | 0/option k\n1/option l\n5/option m |And I add a "Numeric answer" question to the feedback with:| Question | this is a numeric answer || Label | numeric || Range to | 100 |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 |Then following "Export questions" should export feedback identical to "mod/feedback/tests/fixtures/testexport.xml"@javascript @_file_uploadScenario: Import feedback deleting old itemsWhen I am on the "Learning experience" "feedback activity" page logged in as teacherAnd I navigate to "Questions" in current page administrationAnd I add a "Numeric answer" question to the feedback with:| Question | Existing question || Label | numeric || Range to | 100 |And I press "Actions"And I choose "Import" in the open action menuAnd I upload "mod/feedback/tests/fixtures/testexport.xml" file to "File" filemanagerAnd I press "Import"Then I should not see "Existing question"And I should see "this is an information question"And I should see "label text"And I should see "this is a longer text answer"And I should see "this is a multiple choice 1"And I should see "this is a multiple choice 2"And I should see "this is a multiple choice 3"And I should see "this is a multiple choice rated"And I should see "this is a numeric answer"And I should see "this is a short text answer"@javascript @_file_uploadScenario: Import feedback appending new itemsWhen I am on the "Learning experience" "feedback activity" page logged in as teacherAnd I navigate to "Questions" in current page administrationAnd I add a "Numeric answer" question to the feedback with:| Question | Existing question || Label | numeric || Range to | 100 |And I press "Actions"And I choose "Import" in the open action menuAnd I set the field "Keep existing questions and add new questions at the end" to "1"And I upload "mod/feedback/tests/fixtures/testexport.xml" file to "File" filemanagerAnd I press "Import"Then I should see "Existing question"And "Existing question" "text" should appear before "this is an information question" "text"And I should see "this is an information question"And I should see "label text"And I should see "this is a longer text answer"And I should see "this is a multiple choice 1"And I should see "this is a multiple choice 2"And I should see "this is a multiple choice 3"And I should see "this is a multiple choice rated"And I should see "this is a numeric answer"And I should see "this is a short text answer"