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

HttpResponseText.php « Constraint « Framework « PHPUnit « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 223d067a3aa33e3b5d1915647976dc4a07ac317b (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
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link    http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */
namespace Piwik\Tests\Framework\Constraint;

class HttpResponseText extends \PHPUnit_Framework_Constraint
{
    private $actualCode;

    /**
     * @param string $value Expected response text.
     */
    public function __construct($value)
    {
        parent::__construct();
        $this->value = $value;
    }

    public function getResponse($url)
    {
        $options = array(
            CURLOPT_URL            => $url,
            CURLOPT_HEADER         => false,
            CURLOPT_TIMEOUT        => 1,
            CURLOPT_RETURNTRANSFER => true
        );

        $ch = curl_init();
        curl_setopt_array($ch, $options);
        $response = @curl_exec($ch);
        curl_close($ch);

        return $response;
    }

    /**
     * Evaluates the constraint for parameter $other. Returns TRUE if the
     * constraint is met, FALSE otherwise.
     *
     * @param mixed $other Value or object to evaluate.
     * @return bool
     */
    public function matches($other)
    {
        $this->actualCode = $this->getResponse($other);

        return $this->value === $this->actualCode;
    }

    /**
     * Returns a string representation of the constraint.
     *
     * @return string
     */
    public function toString()
    {
        return 'does not return response text ' . $this->exporter->export($this->value) . ' it is ' . $this->actualCode;
    }
}?>