This file is indexed.

/usr/share/php/test/Net_IPv4/tests/IPv4Test.php is in php-net-ipv4 1.3.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?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);
        }
    }
    
    
}

    
?>