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
/
Tables
/
/srv/admin/htdocs/phppgadmin-5.6/tests/simpletests/testcase/Tables/InfoTest.php
<?php /** * Function area: Table * Subfunction area: Info * @author Augmentum SpikeSource Team * @copyright 2005 by Augmentum, Inc. */ // Import the precondition class. if(is_dir('../Public')) { require_once('../Public/SetPrecondition.php'); } /** * A test case suite for testing INFO feature in phpPgAdmin */ class InfoTest extends PreconditionSet{ /** * Set up the preconditon. */ function setUp() { global $webUrl; global $lang; global $POWER_USER_NAME; global $POWER_USER_PASSWORD; $this->login($POWER_USER_NAME, $POWER_USER_PASSWORD, "$webUrl/login.php"); return TRUE; } /** * Clean up all the result. */ function tearDown(){ $this->logout(); return TRUE; } /** * TestCaseID: TSI01 * List the performance info of the parent table -- student */ function testListParentTableInfo() { global $webUrl; global $lang, $SERVER, $DATABASE; // Go to the Rules page $this->assertTrue($this->get("$webUrl/info.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'schema' => 'public', 'table' => 'student', 'subject' => 'table')) ); return TRUE; } /** * TestCaseID: TSI02 * List the performance info of the children table -- college_student */ function testListChildrenTableInfo() { global $webUrl; global $lang, $SERVER, $DATABASE; // Go to the Rules page $this->assertTrue($this->get("$webUrl/info.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'schema' => 'public', 'table' => 'college_student', 'subject' => 'table')) ); return TRUE; } /** * TestCaseID: TSI03 * List the performance info of the foreign table -- department */ function testListForeignTableInfo() { global $webUrl; global $lang, $SERVER, $DATABASE; // Go to the Rules page $this->assertTrue($this->get("$webUrl/info.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'schema' => 'public', 'table' => 'department', 'subject' => 'table')) ); return TRUE; } /** * TestCaseID: TSP01 * Show the properties of the foreign key constraint */ function testShowForeignKeyProperties() { global $webUrl; global $lang, $SERVER, $DATABASE; // Go to the Rules page $this->assertTrue($this->get("$webUrl/info.php?", array( 'server' => $SERVER, 'database' => $DATABASE, 'schema' => 'public', 'table' => 'department', 'subject' => 'table')) ); $this->assertTrue($this->clickLink($lang['strproperties'])); $this->assertWantedText('FOREIGN KEY (dep_id) REFERENCES department(id) ' . 'ON UPDATE RESTRICT ON DELETE RESTRICT'); return TRUE; } } ?>