GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#10)
by Christian
01:33
created

SitemapServiceManagerTest::testItIsInstantiable()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
/*
4
 * (c) Christian Gripp <[email protected]>
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
namespace Core23\SitemapBundle\Tests\Sitemap;
11
12
use Core23\SitemapBundle\Definition\SitemapDefinition;
13
use Core23\SitemapBundle\Definition\SitemapDefinitionInterface;
14
use Core23\SitemapBundle\Exception\SitemapNotFoundException;
15
use Core23\SitemapBundle\Sitemap\SitemapServiceInterface;
16
use Core23\SitemapBundle\Sitemap\SitemapServiceManager;
17
use Core23\SitemapBundle\Tests\Fixtures\SitemapService;
18
use InvalidArgumentException;
19
use PHPUnit\Framework\TestCase;
20
use ReflectionClass;
21
use stdClass;
22
use Symfony\Component\OptionsResolver\Exception\UndefinedOptionsException;
23
24
final class SitemapServiceManagerTest extends TestCase
25
{
26
    public function testCreationWithInvalidServices(): void
27
    {
28
        $this->expectException(InvalidArgumentException::class);
29
        $this->expectExceptionMessage('The "stdClass" service is not a valid SitemapServiceInterface');
30
31
        new SitemapServiceManager([
0 ignored issues
show
Documentation introduced by
array('invalid' => new \stdClass()) is of type array<string,object<stdC...d":"object<stdClass>"}>, but the function expects a array<integer,object<Cor...temapServiceInterface>>.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
32
            'invalid' => new stdClass(),
33
        ]);
34
    }
35
36
    public function testGet(): void
37
    {
38
        $definition = new SitemapDefinition('my-type', []);
39
40
        $service = new SitemapService();
41
42
        $manager = new SitemapServiceManager([
43
            'my-type' => $service,
44
        ]);
45
        $result =  $manager->get($definition);
46
47
        static::assertInstanceOf(SitemapServiceInterface::class, $result);
48
        static::assertSame([
49
            'custom'           => 'foo',
50
            'use_cache'        => true,
51
            'extra_cache_keys' => [],
52
            'ttl'              => 86400,
53
        ], $definition->getSettings());
54
    }
55
56
    public function testGetWithOverride(): void
57
    {
58
        $definition = new SitemapDefinition('my-type', [
59
            'custom'           => 'bar',
60
            'use_cache'        => false,
61
            'extra_cache_keys' => ['my-key'],
62
            'ttl'              => 0,
63
        ]);
64
65
        $service = new SitemapService();
66
67
        $manager = new SitemapServiceManager([
68
            'my-type' => $service,
69
        ]);
70
        $result =  $manager->get($definition);
71
72
        static::assertInstanceOf(SitemapServiceInterface::class, $result);
73
        static::assertSame([
74
            'use_cache'        => false,
75
            'extra_cache_keys' => ['my-key'],
76
            'ttl'              => 0,
77
            'custom'           => 'bar',
78
        ], $definition->getSettings());
79
    }
80
81
    public function testGetWithInvalidOverride(): void
82
    {
83
        $this->expectException(UndefinedOptionsException::class);
84
        $this->expectExceptionMessage('The option "invalid" does not exist. Defined options are: "custom", "extra_cache_keys", "ttl", "use_cache"');
85
86
        $definition = new SitemapDefinition('my-type', [
87
            'invalid' => 'value',
88
        ]);
89
90
        $service = new SitemapService();
91
92
        $manager = new SitemapServiceManager([
93
            'my-type' => $service,
94
        ]);
95
        $manager->get($definition);
96
    }
97
98
    public function testGetWithInvalidDefinition(): void
99
    {
100
        $this->expectException(SitemapNotFoundException::class);
101
        $this->expectExceptionMessage('The sitemap service "my-type" does not exist');
102
103
        $definition = $this->prophesize(SitemapDefinitionInterface::class);
104
        $definition->getType()
105
            ->willReturn('my-type')
106
        ;
107
        $definition->getSettings()
108
            ->willReturn([])
109
        ;
110
111
        $manager = new SitemapServiceManager();
112
        $manager->get($definition->reveal());
113
    }
114
115
    public function testAddSitemap(): void
116
    {
117
        $service = $this->prophesize(SitemapServiceInterface::class);
118
119
        $manager = new SitemapServiceManager();
120
        $manager->addSitemap('my-type', $service->reveal());
121
122
        $reflection       = new ReflectionClass($manager);
123
124
        $servicesProperty = $reflection->getProperty('services');
125
        $servicesProperty->setAccessible(true);
126
127
        static::assertSame([
128
            'my-type' => $service->reveal(),
129
        ], $servicesProperty->getValue($manager));
130
    }
131
}
132