Merge branch 'MDL-81827-main' of https://github.com/lucaboesch/moodle

This commit is contained in:
Huong Nguyen 2024-12-02 10:03:37 +07:00
commit e56abd2369
No known key found for this signature in database
GPG Key ID: 40D88AB693A3E72A
2 changed files with 42 additions and 1 deletions

View File

@ -534,7 +534,12 @@ class quizaccess_seb extends access_rule_base {
$button = '';
if (!empty($this->get_seb_download_url())) {
$button = $OUTPUT->single_button($this->get_seb_download_url(), get_string('sebdownloadbutton', 'quizaccess_seb'));
$sebdownloadlink = $this->get_seb_download_url();
$button = html_writer::start_tag('div', ['class' => 'singlebutton']);
$button .= html_writer::link($sebdownloadlink, get_string('sebdownloadbutton', 'quizaccess_seb'),
['class' => 'btn btn-secondary', 'target' => '_blank']);
$button .= html_writer::end_tag('div');
}
return $button;

View File

@ -0,0 +1,36 @@
@javascript @mod_quiz @quizaccess @quizaccess_seb
Feature: Quiz start with Safe Exam Browser access rule
Background:
Given the following "courses" exist:
| fullname | shortname |
| Course 1 | C1 |
And the following "users" exist:
| username | firstname | lastname | email |
| teacher1 | Teacher | 1 | teacher1@example.com |
| student1 | Student | 1 | student1@example.com |
And the following "course enrolments" exist:
| user | course | role |
| teacher1 | C1 | editingteacher |
| student1 | C1 | student |
And the following "activities" exist:
| activity | course | section | name |
| quiz | C1 | 1 | Quiz 1 |
And the following "question categories" exist:
| contextlevel | reference | name |
| Course | C1 | Test questions |
And the following "questions" exist:
| questioncategory | qtype | name | questiontext |
| Test questions | truefalse | TF1 | First question |
And quiz "Quiz 1" contains the following questions:
| question | page | maxmark |
| TF1 | 1 | |
Scenario: Start a quiz as student with Safe Exam Browser quiz access rule
When I am on the "Quiz 1" "quiz activity editing" page logged in as teacher1
And I expand all fieldsets
And I set the following fields to these values:
| seb_requiresafeexambrowser | 1 |
And I press "Save and return to course"
And I am on the "Quiz 1" "mod_quiz > View" page logged in as "student1"
Then the "target" attribute of "a[title='Download Safe Exam Browser']" "css_element" should contain "_blank"