You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.0 KiB
63 lines
2.0 KiB
<?php
|
|
/*
|
|
** Zabbix
|
|
** Copyright (C) 2001-2023 Zabbix SIA
|
|
**
|
|
** This program is free software; you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation; either version 2 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** This program is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program; if not, write to the Free Software
|
|
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
**/
|
|
|
|
require_once dirname(__FILE__).'/../../include/CBehavior.php';
|
|
|
|
/**
|
|
* Behavior for global messages.
|
|
*/
|
|
class CMessageBehavior extends CBehavior {
|
|
|
|
/**
|
|
* Function check message type and compares the title and details of messages with reference values.
|
|
*
|
|
* @param constant $expected constant that defines whether the message should be good or bad
|
|
* @param string $title reference title
|
|
* @param string, array $details reference array or string values of which should be present in message details
|
|
*/
|
|
public function assertMessage($expected, $title = null, $details = null) {
|
|
$message = CMessageElement::find()->waitUntilVisible()->one();
|
|
|
|
if ($expected === TEST_GOOD) {
|
|
$message->isGood();
|
|
}
|
|
elseif ($expected === TEST_BAD) {
|
|
$message->isBad();
|
|
}
|
|
else {
|
|
$message->isWarning();
|
|
}
|
|
|
|
if ($title !== null) {
|
|
$this->test->assertEquals($title, $message->getTitle(), 'Message title and the expected title do not match.');
|
|
}
|
|
|
|
if ($details !== null) {
|
|
if (!is_array($details)) {
|
|
$details = [$details];
|
|
}
|
|
|
|
foreach ($details as $detail) {
|
|
$this->test->assertTrue($message->hasLine($detail), 'Line "'.$detail.'" was not found in message details');
|
|
}
|
|
}
|
|
}
|
|
}
|