Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
admin
/
htdocs
/
phppgadmin-5.6
/
tests
/
simpletests
/
testcase
/
Databases
/
/srv/admin/htdocs/phppgadmin-5.6/tests/simpletests/testcase/Databases/FindObjectsTest.php
<?php /** * Function area : Database. * Sub Function area : FindObjects. * * @author Augmentum SpikeSource Team * @copyright Copyright (c) 2005 by Augmentum, Inc. */ // Import the precondition class. if (is_dir('../Public')) { require_once('../Public/SetPrecondition.php'); } /** * This class is to test the FindObjects implementation. */ class FindObjectsTest extends PreconditionSet { /** * Set up the preconditon. */ function setUp() { global $webUrl; global $SUPER_USER_NAME; global $SUPER_USER_PASSWORD; $this->login($SUPER_USER_NAME, $SUPER_USER_PASSWORD, "$webUrl/login.php"); return TRUE; } /** * Release the relational resource. */ function tearDown() { // Logout this system. $this->logout(); return TRUE; } /** * TestCaseId: DFO001 * This test is used to find objects in the search component. */ function testSimpleFindObject() { global $webUrl; global $lang, $SERVER, $DATABASE; // Locate the list page of databases. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'find')) ); $this->assertTrue($this->setField('term', 'student')); $this->assertTrue($this->setField('filter', 'All objects')); $this->assertTrue($this->clickSubmit ($lang['strfind'])); return true; } /** * TestCaseId: DFO002 * This test is used to find objects in the search component. */ function testFindObjsInSchemas() { global $webUrl; global $lang, $SERVER, $DATABASE; // Locate the list page of databases. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'find')) ); $this->assertTrue($this->setField('term', 'student')); $this->assertTrue($this->setField('filter', 'Schemas')); $this->assertTrue($this->clickSubmit ($lang['strfind'])); // Locate the list page of databases. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'find')) ); $this->assertTrue($this->setField('term', 'student')); $this->assertTrue($this->setField('filter', 'Tables')); $this->assertTrue($this->clickSubmit ($lang['strfind'])); // Locate the list page of databases. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'find')) ); $this->assertTrue($this->setField('term', 'student')); $this->assertTrue($this->setField('filter', 'Views')); $this->assertTrue($this->clickSubmit ($lang['strfind'])); // Locate the list page of databases. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'find')) ); $this->assertTrue($this->setField('term', 'student')); $this->assertTrue($this->setField('filter', 'Sequences')); $this->assertTrue($this->clickSubmit ($lang['strfind'])); // Locate the list page of databases. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'find')) ); $this->assertTrue($this->setField('term', 'student')); $this->assertTrue($this->setField('filter', 'Columns')); $this->assertTrue($this->clickSubmit ($lang['strfind'])); // Locate the list page of databases. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'find')) ); $this->assertTrue($this->setField('term', 'student')); $this->assertTrue($this->setField('filter', 'Rules')); $this->assertTrue($this->clickSubmit ($lang['strfind'])); // Locate the list page of databases. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'find')) ); $this->assertTrue($this->setField('term', 'student')); $this->assertTrue($this->setField('filter', 'Indexes')); $this->assertTrue($this->clickSubmit ($lang['strfind'])); // Locate the list page of databases. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'find')) ); $this->assertTrue($this->setField('term', 'student')); $this->assertTrue($this->setField('filter', 'Triggers')); $this->assertTrue($this->clickSubmit ($lang['strfind'])); // Locate the list page of databases. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'find')) ); $this->assertTrue($this->setField('term', 'student')); $this->assertTrue($this->setField('filter', 'Constraints')); $this->assertTrue($this->clickSubmit ($lang['strfind'])); // Locate the list page of databases. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'find')) ); $this->assertTrue($this->setField('term', 'student')); $this->assertTrue($this->setField('filter', 'Functions')); $this->assertTrue($this->clickSubmit ($lang['strfind'])); // Locate the list page of databases. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'find')) ); $this->assertTrue($this->setField('term', 'student')); $this->assertTrue($this->setField('filter', 'Domains')); $this->assertTrue($this->clickSubmit ($lang['strfind'])); return true; } /** * TestCaseId: DFO003 * This test is used to find objects in the search component in top bar. */ function testFindTopObjects() { global $webUrl; global $lang, $SERVER, $DATABASE; // Locate the list page of databases. $this->assertTrue($this->get("$webUrl/sqledit.php", array( 'server' => $SERVER, 'action' => 'find')) ); $this->assertTrue($this->setField('database', $DATABASE)); $this->assertTrue($this->setField('term', 'All objects')); $this->assertTrue($this->clickSubmit ($lang['strfind'])); return true; } } ?>