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
/
Schemas
/
/srv/admin/htdocs/phppgadmin-5.6/tests/simpletests/testcase/Schemas/AggregateTest.php
<?php /** * Function area: Schemas * Subfunction area: Aggregate * @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 AGGREGATE feature in phpPgAdmin, including * cases for adding, browsing and dropping aggregates. */ class AggregateTest extends PreconditionSet { /** * Set up the precondition. */ function setUp() { global $webUrl; global $SUPER_USER_NAME; global $SUPER_USER_PASSWORD; // Login the system. $this->login($SUPER_USER_NAME, $SUPER_USER_PASSWORD, "$webUrl/login.php"); return TRUE; } /** * Clean up all the result. */ function tearDown() { // Logout from the system. $this->logout(); return TRUE; } /** * TestCaseID: HCA01 * Creates a new aggregate. */ function testCreateAggregate() { global $webUrl; global $lang, $SERVER, $DATABASE; // Turn to "sql" page. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'sql')) ); // Enter the definition of the new aggregate. $this->assertTrue($this->setField('query', 'CREATE AGGREGATE ' . 'complex_sum(sfunc1 = box_intersect, basetype = box,' . ' stype1 = box, initcond1 = \'(0,0)\');')); // Click the button "Go" to create a new aggregate. $this->assertTrue($this->clickSubmit($lang['strgo'])); // Verify whether the aggregates is created correctly. $this->assertTrue($this->assertWantedText($lang['strsqlexecuted'])); return TRUE; } /** * TestCaseID: HBA01 * Displays all the aggregates. */ function testBrowseAggregates() { global $webUrl; global $lang, $SERVER, $DATABASE; // Turn to "Aggregates" page. $this->assertTrue($this->get("$webUrl/aggregates.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'schema' => 'public', 'subject' => 'schema') )); // Verify whether the aggregates is displayed correctly. $this->assertTrue($this->assertWantedText('complex_sum')); } /** * TestCaseID: HDA01 * Drop a aggregate. */ function testDropAggregate() { global $webUrl; global $lang, $SERVER, $DATABASE; // Turn to "sql" page. $this->assertTrue($this->get("$webUrl/database.php", array( 'server' => $SERVER, 'database' => $DATABASE, 'subject' => 'database', 'action' => 'sql')) ); $this->assertTrue($this->setField('query', 'DROP AGGREGATE' . ' complex_sum(box);')); // Click the button "Go" to drop the aggregate. $this->assertTrue($this->clickSubmit($lang['strgo'])); // Verify whether the aggregates is dropped correctly. $this->assertTrue($this->assertWantedText($lang['strsqlexecuted'])); return TRUE; } } ?>