page->login()->open('triggers.php?form=update&triggerid='.self::TRIGGER_ID); $this->query('button:Expression constructor')->waitUntilPresent()->one()->click(); $this->query('button:Test')->waitUntilPresent()->one()->click(); $dialog = COverlayDialogElement::find()->one()->waitUntilReady(); // Check table headers presence in tesing dialog. $table_headers = ['Expression Variable Elements', 'Result type', 'Value', 'Expression', 'Result', 'Error']; foreach ($table_headers as $header) { $this->assertTrue($dialog->query('xpath://table//th[text() ="'.$header.'"]')->one()->isPresent()); } // Type value in expression testing form. $dialog->query('xpath:.//input[@type="text"]')->waitUntilPresent()->one()->fill('20M'); // Verify zabbix server connection error message. $dialog->query('button:Test')->one()->click(); $message = $dialog->query('tag:output')->waitUntilPresent()->asMessage()->one(); $this->assertTrue($message->isBad()); $this->assertEquals('Cannot evaluate expression', $message->getTitle()); $message_details = [ 'Connection to Zabbix server "localhost" refused. Possible reasons:', '1. Incorrect server IP/DNS in the "zabbix.conf.php";', '2. Security environment (for example, SELinux) is blocking the connection;', '3. Zabbix server daemon not running;', '4. Firewall is blocking TCP connection.', 'Connection refused' ]; foreach ($message_details as $line) { $this->assertTrue($message->hasLine($line)); } } }