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.

322 lines
12 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/CLegacyWebTest.php';
class testPageActions extends CLegacyWebTest {
private $sqlHashAction = '';
private $oldHashAction = '';
private $sqlHashConditions = '';
private $oldHashConditions = '';
private $sqlHashOperations = '';
private $oldHashOperations = '';
private $sqlHashOpMessage = '';
private $oldHashOpMessage = '';
private $sqlHashOpMessageGrp = '';
private $oldHashOpMessageGrp = '';
private $sqlHashOpMessageUsr = '';
private $oldHashOpMessageUsr = '';
private $sqlHashOpCommand = '';
private $oldHashOpCommand = '';
private $sqlHashOpCommandHst = '';
private $oldHashOpCommandHst = '';
private $sqlHashOpCommandGrp = '';
private $oldHashOpCommandGrp = '';
private $sqlHashOpGroup = '';
private $oldHashOpGroup = '';
private $sqlHashOpTemplate = '';
private $oldHashOpTemplate = '';
private $sqlHashOpConditions = '';
private $oldHashOpConditions = '';
private $event_sources = [
EVENT_SOURCE_TRIGGERS => 'Trigger actions',
EVENT_SOURCE_DISCOVERY => 'Discovery actions',
EVENT_SOURCE_AUTOREGISTRATION => 'Autoregistration actions',
EVENT_SOURCE_INTERNAL => 'Internal actions'
];
private function calculateHash($actionid) {
$this->sqlHashAction = 'SELECT actionid,name,eventsource,evaltype,status,formula,pause_suppressed FROM actions '
. 'WHERE actionid='.$actionid;
$this->oldHashAction = CDBHelper::getHash($this->sqlHashAction);
$this->sqlHashConditions = 'SELECT * FROM conditions WHERE actionid='.$actionid.' AND actionid>2 ORDER BY conditionid';
$this->oldHashConditions = CDBHelper::getHash($this->sqlHashConditions);
$this->sqlHashOperations = 'SELECT * FROM operations WHERE actionid='.$actionid.' ORDER BY operationid';
$this->oldHashOperations = CDBHelper::getHash($this->sqlHashOperations);
$this->sqlHashOpMessage =
'SELECT om.* FROM opmessage om,operations o'.
' WHERE om.operationid=o.operationid'.
' AND o.actionid='.$actionid.
' ORDER BY om.operationid';
$this->oldHashOpMessage = CDBHelper::getHash($this->sqlHashOpMessage);
$this->sqlHashOpMessageGrp =
'SELECT omg.* FROM opmessage_grp omg,operations o'.
' WHERE omg.operationid=o.operationid'.
' AND o.actionid='.$actionid.
' ORDER BY omg.opmessage_grpid';
$this->oldHashOpMessageGrp = CDBHelper::getHash($this->sqlHashOpMessageGrp);
$this->sqlHashOpMessageUsr =
'SELECT omu.* FROM opmessage_usr omu,operations o'.
' WHERE omu.operationid=o.operationid'.
' AND o.actionid='.$actionid.
' ORDER BY omu.opmessage_usrid';
$this->oldHashOpMessageUsr = CDBHelper::getHash($this->sqlHashOpMessageUsr);
$this->sqlHashOpCommand =
'SELECT oc.* FROM opcommand oc,operations o'.
' WHERE oc.operationid=o.operationid'.
' AND o.actionid='.$actionid.
' ORDER BY oc.operationid';
$this->oldHashOpCommand = CDBHelper::getHash($this->sqlHashOpCommand);
$this->sqlHashOpCommandHst =
'SELECT och.* FROM opcommand_hst och,operations o'.
' WHERE och.operationid=o.operationid'.
' AND o.actionid='.$actionid.
' ORDER BY och.opcommand_hstid';
$this->oldHashOpCommandHst = CDBHelper::getHash($this->sqlHashOpCommandHst);
$this->sqlHashOpCommandGrp =
'SELECT ocg.* FROM opcommand_grp ocg,operations o'.
' WHERE ocg.operationid=o.operationid'.
' AND o.actionid='.$actionid.
' ORDER BY ocg.opcommand_grpid';
$this->oldHashOpCommandGrp = CDBHelper::getHash($this->sqlHashOpCommandGrp);
$this->sqlHashOpGroup =
'SELECT og.* FROM opgroup og,operations o'.
' WHERE og.operationid=o.operationid'.
' AND o.actionid='.$actionid.
' ORDER BY og.opgroupid';
$this->oldHashOpGroup = CDBHelper::getHash($this->sqlHashOpGroup);
$this->sqlHashOpTemplate =
'SELECT ot.* FROM optemplate ot,operations o'.
' WHERE ot.operationid=o.operationid'.
' AND o.actionid='.$actionid.
' ORDER BY ot.optemplateid';
$this->oldHashOpTemplate = CDBHelper::getHash($this->sqlHashOpTemplate);
$this->sqlHashOpConditions =
'SELECT oc.* FROM opconditions oc,operations o'.
' WHERE oc.operationid=o.operationid'.
' AND o.actionid='.$actionid.
' ORDER BY oc.opconditionid';
$this->oldHashOpConditions = CDBHelper::getHash($this->sqlHashOpConditions);
}
private function verifyHash() {
$this->assertEquals($this->oldHashAction, CDBHelper::getHash($this->sqlHashAction));
$this->assertEquals($this->oldHashConditions, CDBHelper::getHash($this->sqlHashConditions));
$this->assertEquals($this->oldHashOperations, CDBHelper::getHash($this->sqlHashOperations));
$this->assertEquals($this->oldHashOpMessage, CDBHelper::getHash($this->sqlHashOpMessage));
$this->assertEquals($this->oldHashOpMessageGrp, CDBHelper::getHash($this->sqlHashOpMessageGrp));
$this->assertEquals($this->oldHashOpMessageUsr, CDBHelper::getHash($this->sqlHashOpMessageUsr));
$this->assertEquals($this->oldHashOpCommand, CDBHelper::getHash($this->sqlHashOpCommand));
$this->assertEquals($this->oldHashOpCommandHst, CDBHelper::getHash($this->sqlHashOpCommandHst));
$this->assertEquals($this->oldHashOpCommandGrp, CDBHelper::getHash($this->sqlHashOpCommandGrp));
$this->assertEquals($this->oldHashOpGroup, CDBHelper::getHash($this->sqlHashOpGroup));
$this->assertEquals($this->oldHashOpTemplate, CDBHelper::getHash($this->sqlHashOpTemplate));
$this->assertEquals($this->oldHashOpConditions, CDBHelper::getHash($this->sqlHashOpConditions));
}
public static function allEventSources() {
return [
[EVENT_SOURCE_TRIGGERS],
[EVENT_SOURCE_DISCOVERY],
[EVENT_SOURCE_AUTOREGISTRATION],
[EVENT_SOURCE_INTERNAL]
];
}
public static function allActions() {
return CDBHelper::getDataProvider(
'SELECT actionid,eventsource,name,status'.
' FROM actions'.
' ORDER BY actionid'
);
}
/**
* @dataProvider allEventSources
*/
public function testPageActions_CheckLayout($eventsource) {
$this->zbxTestLogin('zabbix.php?action=action.list&eventsource='.$eventsource);
$this->zbxTestCheckTitle('Configuration of actions');
$this->zbxTestCheckHeader($this->event_sources[$eventsource]);
$this->zbxTestTextPresent('Displaying');
$this->zbxTestTextPresent(['Name', 'Conditions', 'Operations', 'Status']);
$dbResult = DBselect(
'SELECT name,status'.
' FROM actions'.
' WHERE eventsource='.$eventsource.
' ORDER BY actionid'
);
while ($dbRow = DBfetch($dbResult)) {
$statusStr = ($dbRow['status'] == ACTION_STATUS_ENABLED ? 'Enabled' : 'Disabled');
$this->zbxTestTextPresent([$dbRow['name'], $statusStr]);
}
$this->zbxTestTextPresent(['Enable', 'Disable', 'Delete']);
}
/**
* @dataProvider allActions
*/
public function testPageActions_SimpleUpdate($action) {
$this->calculateHash($action['actionid']);
$this->zbxTestLogin('zabbix.php?action=action.list&eventsource='.$action['eventsource']);
$this->zbxTestClickLinkText($action['name']);
$this->zbxTestClickButtonText('Update');
$this->zbxTestCheckTitle('Configuration of actions');
$this->zbxTestWaitUntilMessageTextPresent('msg-good', 'Action updated');
$this->zbxTestTextPresent($action['name']);
$this->verifyHash();
}
/**
* @dataProvider allActions
*/
public function testPageActions_SingleEnableDisable($action) {
$this->sqlHashAction = 'SELECT * FROM actions WHERE actionid<>'.$action['actionid'].' ORDER BY actionid';
$this->oldHashAction = CDBHelper::getHash($this->sqlHashAction);
$this->zbxTestLogin('zabbix.php?action=action.list&eventsource='.$action['eventsource']);
$this->zbxTestCheckTitle('Configuration of actions');
switch ($action['status']) {
case ACTION_STATUS_ENABLED:
$this->zbxTestClickXpath('//a[contains(@data-actionid,"'.$action['actionid'].'") and (text()="Enabled")]');
$this->page->acceptAlert();
$this->zbxTestWaitUntilMessageTextPresent('msg-good', 'Action disabled');
$newStatus = ACTION_STATUS_DISABLED;
break;
case ACTION_STATUS_DISABLED:
$this->zbxTestClickXpath('//a[contains(@data-actionid,"'.$action['actionid'].'") and (text()="Disabled")]');
$this->page->acceptAlert();
$this->zbxTestWaitUntilMessageTextPresent('msg-good', 'Action enabled');
$newStatus = ACTION_STATUS_ENABLED;
break;
default:
$this->assertTrue(false);
}
$this->zbxTestCheckTitle('Configuration of actions');
$this->assertEquals(1, CDBHelper::getCount(
'SELECT NULL'.
' FROM actions'.
' WHERE actionid='.$action['actionid'].
' AND status='.$newStatus
));
$this->assertEquals($this->oldHashAction, CDBHelper::getHash($this->sqlHashAction));
}
/**
* @dataProvider allActions
*/
public function testPageActions_MassDisable($action) {
$this->sqlHashAction = 'SELECT * FROM actions WHERE actionid<>'.$action['actionid'].' ORDER BY actionid';
$this->oldHashAction = CDBHelper::getHash($this->sqlHashAction);
$this->zbxTestLogin('zabbix.php?action=action.list&eventsource='.$action['eventsource']);
$this->zbxTestCheckTitle('Configuration of actions');
$this->zbxTestCheckHeader($this->event_sources[$action['eventsource']]);
$this->zbxTestCheckboxSelect('actionids_'.$action['actionid']);
$this->zbxTestClickXpath('//button[contains(@class,"massdisable-action")]');
$this->page->acceptAlert();
$this->zbxTestCheckTitle('Configuration of actions');
$this->zbxTestWaitUntilMessageTextPresent('msg-good', 'Action disabled');
$this->zbxTestTextPresent('Disabled');
$this->assertEquals(1, CDBHelper::getCount(
'SELECT NULL'.
' FROM actions'.
' WHERE actionid='.$action['actionid'].
' AND status='.ACTION_STATUS_DISABLED
));
$this->assertEquals($this->oldHashAction, CDBHelper::getHash($this->sqlHashAction));
}
/**
* @dataProvider allActions
*/
public function testPageActions_MassEnable($action) {
$this->sqlHashAction = 'SELECT * FROM actions WHERE actionid<>'.$action['actionid'].' ORDER BY actionid';
$this->oldHashAction = CDBHelper::getHash($this->sqlHashAction);
$this->zbxTestLogin('zabbix.php?action=action.list&eventsource='.$action['eventsource']);
$this->zbxTestCheckTitle('Configuration of actions');
$this->zbxTestCheckHeader($this->event_sources[$action['eventsource']]);
$this->zbxTestCheckboxSelect('actionids_'.$action['actionid']);
$this->zbxTestClickXpath('//button[contains(@class,"massenable-action")]');
$this->page->acceptAlert();
$this->zbxTestCheckTitle('Configuration of actions');
$this->zbxTestWaitUntilMessageTextPresent('msg-good', 'Action enabled');
$this->zbxTestTextPresent('Enabled');
$this->assertEquals(1, CDBHelper::getCount(
'SELECT NULL'.
' FROM actions'.
' WHERE actionid='.$action['actionid'].
' AND status='.ACTION_STATUS_ENABLED
));
$this->assertEquals($this->oldHashAction, CDBHelper::getHash($this->sqlHashAction));
}
/**
* @dataProvider allActions
* @backupOnce actions
*/
public function testPageActions_MassDelete($action) {
$this->sqlHashAction = 'SELECT * FROM actions WHERE actionid<>'.$action['actionid'].' ORDER BY actionid';
$this->oldHashAction = CDBHelper::getHash($this->sqlHashAction);
$this->zbxTestLogin('zabbix.php?action=action.list&eventsource='.$action['eventsource']);
$this->zbxTestCheckTitle('Configuration of actions');
$this->zbxTestCheckHeader($this->event_sources[$action['eventsource']]);
$this->zbxTestCheckboxSelect('actionids_'.$action['actionid']);
$this->zbxTestClickXpath('//button[contains(@class,"massdelete-action")]');
$this->page->acceptAlert();
$this->zbxTestCheckTitle('Configuration of actions');
$this->zbxTestWaitUntilMessageTextPresent('msg-good', 'Action deleted');
$this->assertEquals(0, CDBHelper::getCount('SELECT * FROM actions WHERE actionid='.$action['actionid']));
$this->assertEquals($this->oldHashAction, CDBHelper::getHash($this->sqlHashAction));
}
}