Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
@tool_log @report @report_configlog
2
Feature: In a report, admin can see logstore visibility changes
3
 
4
  # Change log stores visibility so the report contains known data.
5
  Background:
6
    Given I log in as "admin"
7
    And the following config values are set as admin:
8
      | enabled_stores | logstore_standard  | tool_log |
9
 
10
  @javascript
11
  Scenario: Display configuration changes report
12
    When I navigate to "Plugins > Logging > Manage log stores" in site administration
13
    And I click on "Disable" "icon" in the "Standard log" "table_row"
14
    And I click on "Enable" "icon" in the "External database log" "table_row"
15
    And I navigate to "Reports > Config changes" in site administration
16
    Then the following should exist in the "reportbuilder-table" table:
11 efrain 17
      | First name | Plugin               | Setting                  | New value | Original value |
1 efrain 18
      | Admin User | logstore_standard    | tool_logstore_visibility | 0         | 1              |
19
      | Admin User | logstore_database    | tool_logstore_visibility | 1         | 0              |