Skip to content

Commit ee7ec7c

Browse files
author
Matthias Opitz
committed
CTP-2241: added Behat test
* checking links in alerts
1 parent 21fd1d0 commit ee7ec7c

File tree

2 files changed

+104
-0
lines changed

2 files changed

+104
-0
lines changed

tests/behat/behat_block_alerts.php

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?php
2+
// This file is part of Moodle - http://moodle.org/
3+
//
4+
// Moodle is free software: you can redistribute it and/or modify
5+
// it under the terms of the GNU General Public License as published by
6+
// the Free Software Foundation, either version 3 of the License, or
7+
// (at your option) any later version.
8+
//
9+
// Moodle is distributed in the hope that it will be useful,
10+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
// GNU General Public License for more details.
13+
//
14+
// You should have received a copy of the GNU General Public License
15+
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
16+
17+
/**
18+
* Behat steps definitions for block alerts
19+
*
20+
* @package block_alerts
21+
* @category test
22+
* @copyright 2024 UCL
23+
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24+
*/
25+
26+
// NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php.
27+
28+
require_once(__DIR__ . '/../../../../lib/behat/behat_base.php');
29+
30+
use Behat\Mink\Exception\ExpectationException as ExpectationException,
31+
Behat\Mink\Exception\DriverException as DriverException,
32+
Behat\Mink\Exception\ElementNotFoundException as ElementNotFoundException;
33+
34+
/**
35+
* Behat steps definitions for block social activities
36+
*
37+
* @package block_alerts
38+
* @category test
39+
* @copyright 2024 UCL
40+
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
41+
*/
42+
class behat_block_alerts extends behat_base {
43+
44+
/**
45+
* @When I go back in browser
46+
*/
47+
public function iGoBackInBrowser()
48+
{
49+
$this->getSession()->back();
50+
}
51+
}

tests/behat/show_alerts.feature

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
@block @block_alerts
2+
Feature: Show alerts
3+
In order to alert users
4+
As a user
5+
I need to be able to see that the alerts block shows the intended alerts.
6+
7+
Background:
8+
Given the following "blocks" exist:
9+
| blockname | contextlevel | reference | pagetypepattern | defaultregion |
10+
| alerts | System | 1 | site-index | side-pre |
11+
And the following config values are set as admin:
12+
| config | value | plugin |
13+
| title1 | Alert Title One | block_alerts |
14+
| description1 | Alert Description One | block_alerts |
15+
| link1 | https://nasa.gov | block_alerts |
16+
| linktext1 | Alert Link One | block_alerts |
17+
| title2 | Alert Title Two | block_alerts |
18+
| description2 | Alert Description Two | block_alerts |
19+
| link2 | https://www.london.gov.uk/ | block_alerts |
20+
| linktext2 | Alert Link Two | block_alerts |
21+
| title3 | Alert Title Three | block_alerts |
22+
| description3 | Alert Description Three | block_alerts |
23+
| link3 | https://www.parliament.uk/ | block_alerts |
24+
| linktext3 | Alert Link Three | block_alerts |
25+
26+
Scenario: See news as intended and check the links lead to the intended websites.
27+
When I am on site homepage
28+
Then I should see "Alert Title One"
29+
And I should see "Alert Description One"
30+
And "Alert Link One" "link" should exist in the ".carousel-item" "css_element"
31+
When I click on "Alert Link One" "link"
32+
Then I should see "NASA"
33+
34+
And I am on site homepage
35+
And I click on "[data-slide='next']" "css_element"
36+
And I should see "Alert Title Two"
37+
And I should see "Alert Description Two"
38+
And I should see "Alert Link Two"
39+
When I click on "Alert Link Two" "link"
40+
Then I should see "London"
41+
42+
And I am on site homepage
43+
And I click on "[data-slide='next']" "css_element"
44+
And I should see "Alert Title Three"
45+
And I should see "Alert Description Three"
46+
And I should see "Alert Link Three"
47+
When I click on "Alert Link Three" "link"
48+
Then I should see "Parliament"
49+
50+
And I am on site homepage
51+
And I click on "[data-slide='next']" "css_element"
52+
And I should see "Alert Title One"
53+
And I should see "Alert Description One"

0 commit comments

Comments
 (0)