mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
Merge branch 'MDL-79758_404' of https://github.com/timhunt/moodle into MOODLE_404_STABLE
This commit is contained in:
commit
f142770c37
@ -45,38 +45,41 @@ Feature: Adding questions to a quiz from the question bank
|
||||
And I should not see "question 02 name" in the "categoryquestions" "table"
|
||||
|
||||
Scenario: The question modal can be paginated
|
||||
Given the following "questions" exist:
|
||||
| questioncategory | qtype | name | user | questiontext |
|
||||
| Test questions | essay | question 03 name | teacher1 | Question 03 text |
|
||||
| Test questions | essay | question 04 name | teacher1 | Question 04 text |
|
||||
| Test questions | essay | question 05 name | teacher1 | Question 05 text |
|
||||
| Test questions | essay | question 06 name | teacher1 | Question 06 text |
|
||||
| Test questions | essay | question 07 name | teacher1 | Question 07 text |
|
||||
| Test questions | essay | question 08 name | teacher1 | Question 08 text |
|
||||
| Test questions | essay | question 09 name | teacher1 | Question 09 text |
|
||||
| Test questions | essay | question 10 name | teacher1 | Question 10 text |
|
||||
| Test questions | essay | question 11 name | teacher1 | Question 11 text |
|
||||
| Test questions | essay | question 12 name | teacher1 | Question 12 text |
|
||||
| Test questions | essay | question 13 name | teacher1 | Question 13 text |
|
||||
| Test questions | essay | question 14 name | teacher1 | Question 14 text |
|
||||
| Test questions | essay | question 15 name | teacher1 | Question 15 text |
|
||||
| Test questions | essay | question 16 name | teacher1 | Question 16 text |
|
||||
| Test questions | essay | question 17 name | teacher1 | Question 17 text |
|
||||
| Test questions | essay | question 18 name | teacher1 | Question 18 text |
|
||||
| Test questions | essay | question 19 name | teacher1 | Question 19 text |
|
||||
| Test questions | essay | question 20 name | teacher1 | Question 20 text |
|
||||
| Test questions | essay | question 21 name | teacher1 | Question 21 text |
|
||||
| Test questions | essay | question 22 name | teacher1 | Question 22 text |
|
||||
And I log in as "teacher1"
|
||||
And I am on the "Quiz 1" "mod_quiz > Edit" page
|
||||
Given the following "question categories" exist:
|
||||
| contextlevel | reference | name |
|
||||
| Course | C1 | My collection |
|
||||
And 45 "questions" exist with the following data:
|
||||
| questioncategory | My collection |
|
||||
| qtype | essay |
|
||||
| name | Feature question [count] |
|
||||
| questiontext | Write about topic [count] |
|
||||
| user | teacher1 |
|
||||
# Sadly, the above step generates questions which sort like FQ1, FQ11, FQ12, ..., FQ19, FQ2, FQ20, ...
|
||||
# so the expected paging behaviour is not immediately intuitive with 20 questions per page.
|
||||
When I am on the "Quiz 1" "mod_quiz > Edit" page logged in as teacher1
|
||||
And I open the "last" add to quiz menu
|
||||
And I follow "from question bank"
|
||||
And I click on "2" "link" in the ".pagination" "css_element"
|
||||
Then I should see "question 21 name" in the "categoryquestions" "table"
|
||||
And I should see "question 22 name" in the "categoryquestions" "table"
|
||||
And I should not see "question 01 name" in the "categoryquestions" "table"
|
||||
And I click on "1" "link" in the ".pagination" "css_element"
|
||||
And I should see "question 01 name" in the "categoryquestions" "table"
|
||||
And I should see "question 02 name" in the "categoryquestions" "table"
|
||||
And I should not see "Feature question" in the "categoryquestions" "table"
|
||||
And I set the field "Category" to "My collection"
|
||||
And I press "Apply filters"
|
||||
And I wait until the page is ready
|
||||
Then I should not see "question 01 name" in the "categoryquestions" "table"
|
||||
And I should see "Feature question 1" in the "categoryquestions" "table"
|
||||
And I should see "Feature question 27" in the "categoryquestions" "table"
|
||||
And I should not see "Feature question 28" in the "categoryquestions" "table"
|
||||
And I click on "2" "link" in the ".pagination" "css_element"
|
||||
And I wait until the page is ready
|
||||
And I should not see "Feature question 27" in the "categoryquestions" "table"
|
||||
And I should see "Feature question 28" in the "categoryquestions" "table"
|
||||
And I should see "Feature question 45" in the "categoryquestions" "table"
|
||||
And I should not see "Feature question 5"
|
||||
And I click on "3" "link" in the ".pagination" "css_element"
|
||||
And I wait until the page is ready
|
||||
And I should not see "Feature question 45" in the "categoryquestions" "table"
|
||||
And I should see "Feature question 5"
|
||||
And I should see "Feature question 9"
|
||||
|
||||
Scenario: Questions are added in the right place with multiple sections
|
||||
Given the following "questions" exist:
|
||||
|
@ -1366,6 +1366,9 @@ class view {
|
||||
}
|
||||
// Pagination.
|
||||
$pageingurl = new \moodle_url($this->base_url());
|
||||
// TODO MDL-82312: it really should not be necessary to set filter here, and not like this.
|
||||
// This should be handled in baseurl, but it isn't so we do this so Moodle basically works for now.
|
||||
$pageingurl->param('filter', json_encode($this->pagevars['filter']));
|
||||
$pagingbar = new \paging_bar($this->totalcount, $page, $perpage, $pageingurl);
|
||||
$pagingbar->pagevar = 'qpage';
|
||||
echo $OUTPUT->render($pagingbar);
|
||||
|
Loading…
x
Reference in New Issue
Block a user