HEX
Server: LiteSpeed
System: Linux server.zepintelhosting.com 4.18.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
User: enamadmin (1026)
PHP: 8.2.30
Disabled: exec,system,passthru,shell_exec,proc_nice,proc_terminate,pfsockopen,dl,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname,leak,apache_child_terminate
Upload Files
File: /home/enamadmin/public_html/aaelearningb/mod/h5pactivity/tests/behat/reports.feature
@mod @mod_h5pactivity @core_h5p
Feature: Reporting information in the h5p activity
  In order to let teachers view a report on the attempts made in the h5p activity
  As a teacher
  I can access the report page and see the attempts made by the students

  Background:
    Given the following "users" exist:
      | username | firstname | lastname | email                |
      | teacher1 | Teacher   | 1        | teacher1@example.com |
      | student1 | Student   | 1        | student1@example.com |
      | student2 | Student   | 2        | student2@example.com |
    And the following "courses" exist:
      | fullname | shortname | category |
      | Course 1 | C1        | 0        |
    And the following "course enrolments" exist:
      | user     | course | role           |
      | teacher1 | C1     | editingteacher |
      | student1 | C1     | student        |
      | student2 | C1     | student        |
    # This test is only about reporting, we don't need to specify any valid H5P file for it.
    And the following "activity" exists:
      | activity | h5pactivity          |
      | name     | H5P package          |
      | intro    | Test H5P description |
      | course   | C1                   |
      | idnumber | h5ppackage           |
    And the following "mod_h5pactivity > attempts" exist:
      | user     | h5pactivity | attempt | interactiontype | rawscore | maxscore | duration | completion | success |
      | student1 | H5P package | 1       | compound        | 2        | 2        | 4        | 1          | 1       |
      | student2 | H5P package | 1       | choice          | 2        | 2        | 4        | 1          | 1       |
      | student1 | H5P package | 2       | compound        | 2        | 2        | 4        | 1          | 1       |

  Scenario: Access the report page and check the label for the attempts and attempt headers
    Given I am on the "H5P package" "h5pactivity activity" page logged in as teacher1
    When I navigate to "Attempts report" in current page administration
    Then I should see "View (2)" in the "Student 1" "table_row"
    And I should see "View (1)" in the "Student 2" "table_row"
    And I should see "Attempts (3)" in the "table" "table"