Source
xxxxxxxxxx
$this->zbxTestClickXpathWait("//button[contains(@onclick, 'unlink_and_clear[".$hostid."]') and text()='Unlink and clear']");
<?php
/*
** Zabbix
** Copyright (C) 2001-2022 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';
use Facebook\WebDriver\WebDriverBy;
/**
* Test the creation of inheritance of new objects on a previously linked template.
*
* @backup items
*/
class testTemplateInheritance extends CLegacyWebTest {
/**
* The name of the test template created in the test data set.
*
* @var string
*/
protected $templateName = 'Inheritance test template';
/**
* The name of the test host created in the test data set.
*
* @var string
*/
protected $hostName = 'Template inheritance test host';
public function testTemplateInheritance_linkHost(){
$sql = "select hostid from hosts where host='Template Module Zabbix agent';";
$this->assertEquals(1, CDBHelper::getCount($sql));
$row = DBfetch(DBselect($sql));
$hostid = $row['hostid'];
$this->zbxTestLogin('hosts.php');
$this->zbxTestCheckTitle('Configuration of hosts');
$this->zbxTestClickLinkTextWait($this->hostName);
$this->zbxTestTabSwitch('Templates');
$this->zbxTestClickButtonMultiselect('add_templates_');
$this->zbxTestLaunchOverlayDialog('Templates');
COverlayDialogElement::find()->one()->setDataContext('Templates');
$this->zbxTestClickLinkTextWait('Template Module Zabbix agent');
$this->zbxTestTextPresent('Template Module Zabbix agent');
$this->zbxTestClickWait('update');
$this->zbxTestWaitUntilMessageTextPresent('msg-good', 'Host updated');
$sql = 'select hosttemplateid from hosts_templates where templateid='.$hostid.' AND hostid=15001';
$this->assertEquals(1, CDBHelper::getCount($sql));
}
public static function dataCreate() {
// result, template, itemName, keyName, errorMsg
return [
[
TEST_GOOD,
'Inheritance test template',
'Test LLD item1',
'test-general-item',
[]
],
// Duplicated item on Template inheritance test host
[
TEST_BAD,
'Inheritance test template',
'testInheritance',
'key-item-inheritance',
[
'Item "key-item-inheritance" already exists on "Template inheritance test host", inherited from '.
'another template.'
]