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.

CacheManagerTest::testCachingEnabledChecking()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 14
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 14
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 9
nc 1
nop 0
1
<?php
2
namespace HtImgModuleTest\Service;
3
4
use HtImgModule\Options\ModuleOptions;
5
use HtImgModule\Service\CacheManager;
6
use Imagine\Gd\Imagine;
7
8
class CacheManagerTest extends \PHPUnit_Framework_TestCase
9
{
10
    /**
11
     * @covers HtImgModule\Service\CacheManager::getCacheUrl
12
     */
13
    public function testGetCacheUrl()
14
    {
15
        $options = new ModuleOptions;
16
        $cacheManager = new CacheManager($options);
17
        $options->setCachePath(RESOURCES_DIR);
18
        $this->assertEquals(RESOURCES_DIR . '/hello/world', $cacheManager->getCacheUrl('world', 'hello'));
19
        $this->assertEquals(RESOURCES_DIR . '/hello/world.jpg', $cacheManager->getCacheUrl('world', 'hello', RESOURCES_DIR . '/Archos.jpg'));
20
    }
21
22
    /**
23
     * @covers HtImgModule\Service\CacheManager::getCachePath
24
     */
25
    public function testGetCachePath()
26
    {
27
        $options = new ModuleOptions;
28
        $cacheManager = new CacheManager($options);
29
        $options->setCachePath(RESOURCES_DIR);
30
        $options->setWebRoot('public_html');
31
        $this->assertEquals('public_html/'. RESOURCES_DIR . '/hello/world', $cacheManager->getCachePath('world', 'hello'));
32
        $this->assertEquals(RESOURCES_DIR . '/hello/Archos.jpg.jpg', $cacheManager->getCacheUrl('Archos.jpg', 'hello', RESOURCES_DIR . '/Archos.jpg'));
33
    }
34
35
    /**
36
     * @covers HtImgModule\Service\CacheManager::createCache
37
     */
38
    public function testCreateCache()
39
    {
40
        $options = new ModuleOptions;
41
        $cacheManager = new CacheManager($options);
42
        $imagine = new Imagine;
43
        $image = $imagine->open(RESOURCES_DIR . '/Archos.jpg');
44
        $options->setWebRoot(RESOURCES_DIR);
45
        $options->setCachePath('.');
46
        $cacheManager->createCache('awesome/archos-crop.jpg', 'crop', $image);
47
        $cacheFile = RESOURCES_DIR . '/crop/awesome/archos-crop.jpg';
48
        $this->assertTrue(is_readable($cacheFile));
49
50
        return $cacheManager;
51
    }
52
53
    /**
54
     * @covers HtImgModule\Service\CacheManager::deleteCache
55
     * @depends testCreateCache
56
     */
57
    public function testDeleteCache(CacheManager $cacheManager)
58
    {
59
        $cacheManager->deleteCache('awesome/archos-crop.jpg', 'crop');
60
        $this->assertFalse(is_readable(RESOURCES_DIR . '/crop/awesome/archos-crop.jpg'));
61
    }
62
63
    /**
64
     * @covers HtImgModule\Service\CacheManager::cacheExists
65
     */
66
    public function testCacheExists()
67
    {
68
        $options = new ModuleOptions;
69
        $cacheManager = new CacheManager($options);
70
        $imagine = new Imagine;
71
        $image = $imagine->open(RESOURCES_DIR . '/Archos.jpg');
72
        $options->setWebRoot(RESOURCES_DIR);
73
        $options->setCachePath('.');
74
        $cacheManager->createCache('awesome/archos-crop.jpg', 'crop', $image);
75
        $cacheFile = RESOURCES_DIR . '/crop/awesome/archos-crop.jpg';
0 ignored issues
show
Unused Code introduced by
$cacheFile is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
76
        $this->assertTrue($cacheManager->cacheExists('awesome/archos-crop.jpg', 'crop'));
77
        $this->assertFalse($cacheManager->cacheExists('awesome/random-crop.jpg', 'crop'));
78
    }
79
80
    public function testCachingEnabledChecking()
81
    {
82
        $options = $this->createMock('HtImgModule\Options\CacheOptionsInterface');
83
        $cacheManager = new CacheManager($options);
84
85
        $this->assertTrue($cacheManager->isCachingEnabled('abcd', ['enable_cache' => true]));
86
        $this->assertFalse($cacheManager->isCachingEnabled('abcd', ['enable_cache' => false]));
87
88
        $options->expects($this->once())
89
            ->method('getEnableCache')
90
            ->will($this->returnValue(true));
91
92
        $this->assertTrue($cacheManager->isCachingEnabled('abcd', []));
93
    }
94
}
95