HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.0.30
System: Linux multiplicar 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64
User: root (0)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /var/www/html/ceade.tocsa.com.py/search/tests/behat/search_information.feature
@core @core_search
Feature: Show system information in the search interface
  In order to let users know if there are current problems with search
  As an admin
  I need to be able to show information on search pages

  Background:
    Given the following config values are set as admin:
      | enableglobalsearch | 1        |
      | searchengine       | simpledb |
    And I log in as "admin"

  @javascript
  Scenario: Information displays when enabled
    When the following config values are set as admin:
      | searchbannerenable | 1                                                                             |
      | searchbanner       | The search currently only finds frog-related content; we hope to fix it soon. |
    And I search for "toads" using the header global search box
    Then I should see "The search currently only finds frog-related content" in the ".notifywarning" "css_element"

  @javascript
  Scenario: Information does not display when not enabled
    When the following config values are set as admin:
      | searchbannerenable | 0                                                                             |
      | searchbanner       | The search currently only finds frog-related content; we hope to fix it soon. |
    And I search for "toads" using the header global search box
    Then I should not see "The search currently only finds frog-related content"
    And ".notifywarning" "css_element" should not exist

  @javascript
  Scenario: Information does not display when left blank
    When the following config values are set as admin:
      | searchbannerenable | 1 |
      | searchbanner       |   |
    And I search for "toads" using the header global search box
    Then ".notifywarning" "css_element" should not exist