|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* @mixin PHPUnit_Framework_TestCase |
|
5
|
|
|
*/ |
|
6
|
|
|
class SetSupportedAddonsTaskTest extends FunctionalTest |
|
7
|
|
|
{ |
|
8
|
|
|
protected static $fixture_file = 'SetSupportedAddonsTaskTest.yml'; |
|
9
|
|
|
|
|
10
|
|
|
public function testHelpIsShownWithNoArguments() |
|
11
|
|
|
{ |
|
12
|
|
|
$output = $this->runTask(); |
|
13
|
|
|
|
|
14
|
|
|
$this->assertContains('Usage:', $output); |
|
15
|
|
|
} |
|
16
|
|
|
|
|
17
|
|
|
public function testAddonsAreMarkedAsSupported() |
|
18
|
|
|
{ |
|
19
|
|
|
$this->assertAddonsAreNotSupported('foo/unsupported-bar-a'); |
|
20
|
|
|
|
|
21
|
|
|
$this->runTask('foo/unsupported-bar-a'); |
|
22
|
|
|
|
|
23
|
|
|
$this->assertAddonsAreSupported('foo/unsupported-bar-a'); |
|
24
|
|
|
} |
|
25
|
|
|
|
|
26
|
|
|
public function testAddonsAreNotReplaced() |
|
27
|
|
|
{ |
|
28
|
|
|
$this->assertAddonsAreSupported('foo/supported-bar-a'); |
|
29
|
|
|
|
|
30
|
|
|
$this->runTask('foo/unsupported-bar-a'); |
|
31
|
|
|
|
|
32
|
|
|
$this->assertAddonsAreSupported('foo/supported-bar-a'); |
|
33
|
|
|
} |
|
34
|
|
|
|
|
35
|
|
|
public function testMultipleAddonsCanBeMarkedAsSupported() |
|
36
|
|
|
{ |
|
37
|
|
|
$this->assertAddonsAreNotSupported(['foo/unsupported-bar-a', 'foo/unsupported-bar-b']); |
|
38
|
|
|
|
|
39
|
|
|
$this->runTask('foo/unsupported-bar-a,foo/unsupported-bar-b'); |
|
40
|
|
|
|
|
41
|
|
|
$this->assertAddonsAreSupported(['foo/unsupported-bar-a', 'foo/unsupported-bar-b']); |
|
42
|
|
|
} |
|
43
|
|
|
|
|
44
|
|
|
public function testReplaceFlagWillReplaceSupportedAddons() |
|
45
|
|
|
{ |
|
46
|
|
|
$this->assertAddonsAreSupported('foo/supported-bar-a'); |
|
47
|
|
|
$this->assertAddonsAreNotSupported('foo/unsupported-bar-a'); |
|
48
|
|
|
|
|
49
|
|
|
$this->runTask('foo/unsupported-bar-a', ['-r']); |
|
50
|
|
|
|
|
51
|
|
|
$this->assertAddonsAreSupported('foo/unsupported-bar-a'); |
|
52
|
|
|
$this->assertAddonsAreNotSupported('foo/supported-bar-a'); |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
|
public function testReplaceFlagWithNoAddonsWillNotDeleteEverything() |
|
56
|
|
|
{ |
|
57
|
|
|
$this->assertAddonsAreSupported('foo/supported-bar-a'); |
|
58
|
|
|
|
|
59
|
|
|
$response = $this->runTask(null, ['-r']); |
|
60
|
|
|
|
|
61
|
|
|
$this->assertAddonsAreSupported('foo/supported-bar-a'); |
|
62
|
|
|
$this->assertContains('Use -f to force', $response); |
|
63
|
|
|
} |
|
64
|
|
|
|
|
65
|
|
|
public function testReplaceFlagWithNoAddonsWillDeleteEverything() |
|
66
|
|
|
{ |
|
67
|
|
|
$this->assertAddonsAreSupported('foo/supported-bar-a'); |
|
68
|
|
|
|
|
69
|
|
|
$this->runTask(null, ['-rf']); |
|
70
|
|
|
|
|
71
|
|
|
$this->assertAddonsAreNotSupported('foo/supported-bar-a'); |
|
72
|
|
|
} |
|
73
|
|
|
|
|
74
|
|
View Code Duplication |
protected function assertAddonsAreSupported($addons) |
|
|
|
|
|
|
75
|
|
|
{ |
|
76
|
|
|
$addons = (array) $addons; |
|
77
|
|
|
|
|
78
|
|
|
$supportedAddons = Addon::get()->filter('Supported', true)->column('Name'); |
|
79
|
|
|
|
|
80
|
|
|
foreach ($addons as $addon) { |
|
81
|
|
|
$this->assertContains($addon, $supportedAddons, $addon . ' is not supported'); |
|
82
|
|
|
} |
|
83
|
|
|
} |
|
84
|
|
|
|
|
85
|
|
View Code Duplication |
protected function assertAddonsAreNotSupported($addons) |
|
|
|
|
|
|
86
|
|
|
{ |
|
87
|
|
|
$addons = (array) $addons; |
|
88
|
|
|
|
|
89
|
|
|
$unsupportedAddons = Addon::get()->filter('Supported', false)->column('Name'); |
|
90
|
|
|
|
|
91
|
|
|
foreach ($addons as $addon) { |
|
92
|
|
|
$this->assertContains($addon, $unsupportedAddons, $addon . ' is supported'); |
|
93
|
|
|
} |
|
94
|
|
|
} |
|
95
|
|
|
|
|
96
|
|
|
protected function runTask($addons = null, array $args = []) |
|
97
|
|
|
{ |
|
98
|
|
|
$vars = $addons ? ['addons' => $addons] : []; |
|
99
|
|
|
|
|
100
|
|
|
$request = $this->getMockBuilder(SS_HTTPRequest::class) |
|
|
|
|
|
|
101
|
|
|
->setConstructorArgs(array('GET', 'test', $vars)) |
|
102
|
|
|
->getMock(); |
|
103
|
|
|
|
|
104
|
|
|
$request->method('getVars')->willReturn($vars); |
|
105
|
|
|
$request->method('getVar')->will($this->onConsecutiveCalls($args, $addons)); |
|
|
|
|
|
|
106
|
|
|
|
|
107
|
|
|
$task = new SetSupportedAddonsTask(); |
|
108
|
|
|
|
|
109
|
|
|
ob_start(); |
|
110
|
|
|
$task->run($request); |
|
111
|
|
|
return ob_get_clean(); |
|
112
|
|
|
} |
|
113
|
|
|
} |
|
114
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.