Issues (25)

tests/Check/CIPassingCheck/CircleCITest.php (2 issues)

1
<?php
2
3
namespace SilverStripe\ModuleRatings\Tests\Check\CIPassingCheck;
4
5
use Exception;
6
use GuzzleHttp\Client;
7
use PHPUnit\Framework\TestCase;
8
use SilverStripe\ModuleRatings\Check\CIPassingCheck;
9
use SilverStripe\ModuleRatings\CheckSuite;
10
11
class CircleCITest extends TestCase
12
{
13
    /**
14
     * @var Client
15
     */
16
    protected $client;
17
18
    /**
19
     * @var CIPassingCheck
20
     */
21
    protected $check;
22
23
    protected function setUp(): void
24
    {
25
        parent::setUp();
26
27
        $this->client = $this->getMockBuilder(Client::class)
0 ignored issues
show
Deprecated Code introduced by
The function PHPUnit\Framework\MockOb...ckBuilder::setMethods() has been deprecated: https://github.com/sebastianbergmann/phpunit/pull/3687 ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

27
        $this->client = /** @scrutinizer ignore-deprecated */ $this->getMockBuilder(Client::class)

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
28
            ->setMethods(['get', 'getBody'])
29
            ->getMock();
30
31
        // Mock get to return client, we can then mock the last call easily
32
        $this->client->method('get')->will($this->returnSelf());
33
34
        $this->check = $this->getMockBuilder(CIPassingCheck::class)
0 ignored issues
show
Deprecated Code introduced by
The function PHPUnit\Framework\MockOb...ckBuilder::setMethods() has been deprecated: https://github.com/sebastianbergmann/phpunit/pull/3687 ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

34
        $this->check = /** @scrutinizer ignore-deprecated */ $this->getMockBuilder(CIPassingCheck::class)

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
35
            ->setMethods(['checkTravisBuild'])
36
            ->getMock();
37
38
        $this->check->expects($this->once())->method('checkTravisBuild')->willReturn(false);
39
        $this->check->setRequestClient($this->client);
40
41
        $suite = (new CheckSuite())->setRepositorySlug('foo/bar');
42
        $this->check->setSuite($suite);
43
    }
44
45
    public function testCircleFetchFailure()
46
    {
47
        $this->client->method('getBody')->willReturn(false);
48
        $this->check->run();
49
        $this->assertFalse($this->check->getSuccessful());
50
    }
51
52
    public function testCircleNotFoundFailure()
53
    {
54
        $this->client->method('getBody')->willReturn('{
55
            "message": "Project not found"
56
        }');
57
        $this->check->run();
58
        $this->assertFalse($this->check->getSuccessful());
59
    }
60
61
    public function testCircleSuccessful()
62
    {
63
        $this->client->method('getBody')->willReturn('[
64
            {"failed": false},
65
            {"failed": false},
66
            {"failed": true}
67
        ]');
68
        $this->check->run();
69
        $this->assertTrue($this->check->getSuccessful());
70
    }
71
72
    public function testCircleUnsuccessful()
73
    {
74
        $this->client->method('getBody')->willReturn('{
75
            {"failed": true},
76
            {"failed": false},
77
            {"failed": true}
78
        }');
79
        $this->check->run();
80
        $this->assertFalse($this->check->getSuccessful());
81
    }
82
83
    public function testCircleDefaultReturn()
84
    {
85
        $this->client->method('getBody')->willReturn('{
86
            "unrelated": "information"
87
        }');
88
        $this->check->run();
89
        $this->assertFalse($this->check->getSuccessful());
90
    }
91
92
    public function testGuzzleThrowsException()
93
    {
94
        $this->client->method('getBody')->will($this->throwException(new Exception()));
95
        $this->check->run();
96
        $this->assertFalse($this->check->getSuccessful());
97
    }
98
}
99