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 /
Net_IPv4 /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
AllTests.php
592
B
-rw-r--r--
IPv4Test.php
1.5
KB
-rw-r--r--
MyIPv4.php
1.05
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : IPv4Test.php
<?php require_once 'PHPUnit/Framework/TestCase.php'; require_once 'Net/IPv4.php'; require_once 'MyIPv4.php'; class IPv4Test extends PHPUnit_Framework_TestCase { protected $net; protected $quadIPs; protected $hexIPs; protected function setUp() { $this->net = new Net_IPv4(); $this->quadIPs = array('10.0.0.15' => 167772175, '172.16.0.155' => 2886729883, '192.168.0.255' => 3232235775, '1.2.3.4' => 16909060, '1.0.0.0' => 16777216, '255.255.255.255' => 4294967295, '127.0.0.1' => 2130706433); $this->hexIPs = array('0a00000f', 'ac10009b', 'c0a800ff', '01020304', '01000000', 'ffffffff', '7f000001'); } protected function tearDown() { $this->net = null; } public function test_atoh() { foreach ($this->quadIPs as $ip => $v) { $this->assertTrue(Net_IPv4::atoh($ip) === MyIPv4::atoh($ip)); } } public function test_htoa() { foreach ($this->hexIPs as $ip => $v) { $this->assertTrue(Net_IPv4::htoa($ip) === MyIPv4::htoa($ip)); } } public function test_validateIP() { foreach ($this->quadIPs as $ip => $v) { $this->assertTrue(Net_IPv4::validateIP($ip) === MyIPv4::validateIP($ip)); } } public function test_ip2double() { foreach ($this->quadIPs as $k => $v) { $this->assertTrue(Net_IPv4::ip2double($k) == $v); } } } ?>
Close