@local @local_staticpage @javascript @_file_upload # @javascript is only used for the background but cannot be added selectively to it. Feature: Using static pages In order to be able to use the static pages As admin I need to be able to configure the local_staticpage plugin Background: When I log in as "admin" And I navigate to "Static Pages" in site administration And I upload "local/staticpage/tests/fixtures/example.html" file to "Documents" filemanager And I press "Save changes" And I log out Scenario: Check if the uploaded page is accessible When I log in as "admin" And I am on site homepage And I turn editing mode on And I add the "HTML" block And I configure the "(new HTML block)" block And I set the field "Content" to "
" And I press "Save changes" And I click on "Example Page" "link" Then I should see "Lorem ipsum dolor sit amet" # This scenario falls into a timeout that might be caused by CURL, so its temporarily commented out. # Scenario: Check if the uploaded page is listed under "List of static pages" # When I log in as "admin" # And I navigate to "List of static pages" in site administration # Then I should see "example.html" Scenario: Check if multilang filters are processed Given the following config values are set as admin: | config | value | plugin | | processfilters | 1 | local_staticpage | And the following "users" exist: | username | lang | | student1 | de | When I log in as "admin" And the "multilang" filter is "on" And the "multilang" filter applies to "content and headings" And I navigate to "Language > Language packs" in site administration And I set the field "Available language packs" to "de" And I press "Install selected language pack(s)" And I am on site homepage And I turn editing mode on And I add the "HTML" block And I configure the "(new HTML block)" block And I set the field "Content" to "" And I press "Save changes" And I log out And I log in as "student1" And I am on site homepage And I click on "Example Page" "link" Then I should see "Dies ist eine h2 Überschrift" And I should not see "This is a h2 heading" # Counter check previous scenario Scenario: Check if multilang filters are not processed Given the following config values are set as admin: | config | value | plugin | | processfilters | 2 | local_staticpage | And the following "users" exist: | username | lang | | student1 | de | When I log in as "admin" And the "multilang" filter is "on" And the "multilang" filter applies to "content and headings" And I navigate to "Language > Language packs" in site administration And I set the field "Available language packs" to "de" And I press "Install selected language pack(s)" And I am on site homepage And I turn editing mode on And I add the "HTML" block And I configure the "(new HTML block)" block And I set the field "Content" to "" And I press "Save changes" And I log out And I log in as "student1" And I am on site homepage And I click on "Example Page" "link" Then I should see "Dies ist eine h2 Überschrift" And I should see "This is a h2 heading" Scenario: Check that the page is only shown to users that are logged in. Given the following config values are set as admin: | config | value | plugin | | forcelogin | 1 | local_staticpage | And the following config values are set as admin: | config | value | | auth_instructions | | And the following "users" exist: | username | | student1 | When I log in as "student1" And I log out And I click on "Log in" "link" And I click on "Example page" "link" Then I should see "You are not logged in" And I should not see "Dies ist eine h2 Überschrift" Scenario: Check if h1 tag is used for the document title Given the following config values are set as admin: | config | value | plugin | | documenttitlesource | 1 | local_staticpage | When I log in as "admin" And I am on site homepage And I turn editing mode on And I add the "HTML" block And I configure the "(new HTML block)" block And I set the field "Content" to "" And I press "Save changes" And I click on "Example Page" "link" Then "//title[contains(text(),'This is a h1 heading')]" "xpath_element" should exist Scenario: Check if h1 tag is used for the document heading Given the following config values are set as admin: | config | value | plugin | | documentheadingsource | 1 | local_staticpage | When I log in as "admin" And I am on site homepage And I turn editing mode on And I add the "HTML" block And I configure the "(new HTML block)" block And I set the field "Content" to "" And I press "Save changes" And I click on "Example Page" "link" Then I should see "This is a h1 heading" in the ".page-header-headings" "css_element" Scenario: Check if h1 tag is used for the breadcrumb item title Given the following config values are set as admin: | config | value | plugin | | documentnavbarsource | 1 | local_staticpage | When I log in as "admin" And I am on site homepage And I turn editing mode on And I add the "HTML" block And I configure the "(new HTML block)" block And I set the field "Content" to "" And I press "Save changes" And I click on "Example Page" "link" Then "//li[contains(text(),'This is a h1 heading')]" "xpath_element" should exist Scenario: Check if title tag is used for the document title Given the following config values are set as admin: | config | value | plugin | | documenttitlesource | 2 | local_staticpage | When I log in as "admin" And I am on site homepage And I turn editing mode on And I add the "HTML" block And I configure the "(new HTML block)" block And I set the field "Content" to "" And I press "Save changes" And I click on "Example Page" "link" Then "//title[contains(text(),'This is a title')]" "xpath_element" should exist Scenario: Check if title tag is used instead of first h1 for the document heading Given the following config values are set as admin: | config | value | plugin | | documentheadingsource | 2 | local_staticpage | When I log in as "admin" And I am on site homepage And I turn editing mode on And I add the "HTML" block And I configure the "(new HTML block)" block And I set the field "Content" to "" And I press "Save changes" And I click on "Example Page" "link" Then I should see "This is a title" in the ".page-header-headings" "css_element" Scenario: Check if h1 tag is used for the breadcrumb item title Given the following config values are set as admin: | config | value | plugin | | documentnavbarsource | 2 | local_staticpage | When I log in as "admin" And I am on site homepage And I turn editing mode on And I add the "HTML" block And I configure the "(new HTML block)" block And I set the field "Content" to "" And I press "Save changes" And I click on "Example Page" "link" Then "//li[contains(text(),'This is a title')]" "xpath_element" should exist Scenario: Check setting "Don't clean HTML code" Given the following config values are set as admin: | config | value | plugin | | cleanhtml | 2 | local_staticpage | When I log in as "admin" And I am on site homepage And I turn editing mode on And I add the "HTML" block And I configure the "(new HTML block)" block And I set the field "Content" to "" And I press "Save changes" And I click on "Example Page" "link" Then "//section[@id='region-main']//div//iframe" "xpath_element" should exist Scenario: Check setting "Clean HTML code" Given the following config values are set as admin: | config | value | plugin | | cleanhtml | 1 | local_staticpage | When I log in as "admin" And I am on site homepage And I turn editing mode on And I add the "HTML" block And I configure the "(new HTML block)" block And I set the field "Content" to "" And I press "Save changes" And I click on "Example Page" "link" Then "//section[@id='region-main']//div//iframe" "xpath_element" should not exist