Welcome to mirror list, hosted at ThFree Co, Russian Federation.

HttpTest.php « Core « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de285b2278b0fddefb08160bea44805943d21c27 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */
class HttpTest extends PHPUnit_Framework_TestCase
{
    /**
     * Dataprovider for testFetchRemoteFile
     */
    public function getMethodsToTest()
    {
        return array(
            array('curl'),
            array('fopen'),
            array('socket'),
        );
    }

    /**
     * @group Core
     * @group Http
     * @dataProvider getMethodsToTest
     */
    public function testFetchRemoteFile($method)
    {
        $this->assertNotNull(Piwik_Http::getTransportMethod());
        $version = Piwik_Http::sendHttpRequestBy($method, 'http://api.piwik.org/1.0/getLatestVersion/', 5);
        $this->assertTrue( (boolean)preg_match('/^([0-9.]+)$/', $version) );
    }

    /**
     * @group Core
     * @group Http
     */
    public function testFetchApiLatestVersion()
    {
        $destinationPath = PIWIK_USER_PATH . '/tmp/latest/LATEST';
        Piwik_Http::fetchRemoteFile('http://api.piwik.org/1.0/getLatestVersion/', $destinationPath, 3);
        $this->assertFileExists($destinationPath);
        $this->assertGreaterThan( 0, filesize($destinationPath) );
    }

    /**
     * @group Core
     * @group Http
     */
    public function testFetchLatestZip()
    {
        $destinationPath = PIWIK_USER_PATH . '/tmp/latest/latest.zip';
        Piwik_Http::fetchRemoteFile('http://builds.piwik.org/latest.zip', $destinationPath, 3);
        $this->assertFileExists($destinationPath);
        $this->assertGreaterThan( 0, filesize($destinationPath) );
    }
    
    /**
     * @group Core
     * @group Http
     * @dataProvider getMethodsToTest
     */
    public function testCustomByteRange( $method )
    {
        $result = Piwik_Http::sendHttpRequestBy(
        	$method,
	        'http://builds.piwik.org/latest.zip',
        	5,
			$userAgent = null,
			$destinationPath = null,
			$file = null,
			$followDepth = 0,
			$acceptLanguage = false,
			$acceptInvalidSslCertificate = false,
			$byteRange = array(10, 20),
			$getExtendedInfo = true
    	);
        
        if ($method != 'fopen')
        {
        	$this->assertEquals(206, $result['status']);
	        $this->assertTrue(isset($result['headers']['Content-Range']));
        	$this->assertEquals('bytes 10-20/', substr($result['headers']['Content-Range'], 0, 12));
        	$this->assertEquals('application/zip', $result['headers']['Content-Type']);
        }
    }
    
    /**
     * @group Core
     * @group Http
     * @dataProvider getMethodsToTest
     */
    public function testHEADOperation( $method )
    {
    	if ($method == 'fopen')
    	{
    		return; // not supported w/ this method
    	}
    	
        $result = Piwik_Http::sendHttpRequestBy(
        	$method,
        	'http://builds.piwik.org/latest.zip',
        	5,
			$userAgent = null,
			$destinationPath = null,
			$file = null,
			$followDepth = 0,
			$acceptLanguage = false,
			$acceptInvalidSslCertificate = false,
			$byteRange = false,
			$getExtendedInfo = true,
			$httpMethod = 'HEAD'
    	);
    	
    	$this->assertEquals('', $result['data']);
    	$this->assertEquals(200, $result['status']);

    	$this->assertTrue(isset($result['headers']['Content-Length']), "Content-Length header not set!");
    	$this->assertTrue(is_numeric($result['headers']['Content-Length']), "Content-Length header not numeric!");
    	$this->assertEquals('application/zip', $result['headers']['Content-Type']);
    }
}