forked from lorisleiva/laravel-deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeployFileTest.php
264 lines (234 loc) Β· 6.67 KB
/
DeployFileTest.php
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
<?php
namespace Lorisleiva\LaravelDeployer\Test\Unit;
use Lorisleiva\LaravelDeployer\DeployFile;
use Lorisleiva\LaravelDeployer\Test\TestCase;
class DeployFileBuilderTest extends TestCase
{
/** @test */
function it_adds_laravel_deployer_recipe_by_default()
{
$deployFile = (string) new DeployFile();
$this->assertContains("namespace Deployer;", $deployFile);
$this->assertContains("require 'recipe/laravel-deployer.php';", $deployFile);
}
/** @test */
function it_should_not_contain_more_than_two_consecutive_empty_lines()
{
$deployFile = (string) new DeployFile();
$this->assertFalse((bool) preg_match("/\n{3,}/", $deployFile));
}
/** @test */
function it_adds_the_default_strategy_as_an_option()
{
$deployFile = (string) new DeployFile([
'default' => 'docker'
]);
$this->assertContains("set('strategy', 'docker');", $deployFile);
}
/** @test */
function it_use_the_basic_strategy_if_no_default_strategy_is_given()
{
$deployFile = (string) new DeployFile();
$this->assertContains("set('strategy', 'basic');", $deployFile);
}
/** @test */
function it_adds_custom_includes()
{
$deployFile = (string) new DeployFile([
'include' => [
'recipe/foo.php',
'recipe/bar.php'
]
]);
$this->assertContains("require 'recipe/foo.php';", $deployFile);
$this->assertContains("require 'recipe/bar.php';", $deployFile);
}
/** @test */
function it_adds_custom_strategies()
{
$deployFile = (string) new DeployFile([
'strategies' => [
'custom_a' => [
'deploy:prepare',
'deploy:release',
'deploy:symlink',
],
'custom_b' => [
'deploy:update_code',
'hook:done',
],
]
]);
$this->assertContains(
<<<EOD
desc('Custom A Strategy');
task('strategy:custom_a', [
'deploy:prepare',
'deploy:release',
'deploy:symlink',
]);
EOD
, $deployFile);
$this->assertContains(
<<<EOD
desc('Custom B Strategy');
task('strategy:custom_b', [
'deploy:update_code',
'hook:done',
]);
EOD
, $deployFile);
}
/** @test */
function it_adds_global_options()
{
$deployFile = (string) new DeployFile([
'options' => [
'repository' => 'my/repo.git',
'git_tty' => true,
'foo' => [
'bar' => 0,
'baz' => 'My app',
]
]
]);
$this->assertContains(
<<<EOD
set('repository', 'my/repo.git');
set('git_tty', true);
set('foo', [
'bar' => 0,
'baz' => 'My app',
]);
EOD
, $deployFile);
}
/** @test */
function it_does_not_evaluate_env_variables()
{
$deployFile = (string) new DeployFile([
'options' => [
'foo' => [
'bar' => "env('PLAIN_TEXT')",
],
],
]);
$this->assertContains("'bar' => 'env(\'PLAIN_TEXT\')'", $deployFile);
}
/** @test */
function it_adds_hosts()
{
$deployFile = (string) new DeployFile([
'hosts' => [
'elegon.io' => [
'hostname' => 'elegon.io',
'roles' => 'app',
'stage' => 'prod',
'user' => 'forge',
'port' => 22,
'configFile' => '~/.ssh/config',
'identityFile' => '~/.ssh/id_rsa',
'forwardAgent' => true,
'multiplexing' => true,
'sshOptions' => [
'UserKnownHostsFile' => '/dev/null',
'StrictHostKeyChecking' => 'no',
],
'deploy_path' => '/home/forge/elegon.io',
'foo' => ['bar' => ['baz' => true]],
],
'dev.elegon.io' => [
'stage' => 'staging',
],
]
]);
$this->assertContains(
<<<EOD
host('elegon.io')
->hostname('elegon.io')
->roles('app')
->stage('prod')
->user('forge')
->port(22)
->configFile('~/.ssh/config')
->identityFile('~/.ssh/id_rsa')
->forwardAgent(true)
->multiplexing(true)
->addSshOption('UserKnownHostsFile', '/dev/null')
->addSshOption('StrictHostKeyChecking', 'no')
->set('deploy_path', '/home/forge/elegon.io')
->set('foo', [
'bar' => [
'baz' => true,
],
]);
EOD
, $deployFile);
$this->assertContains(
<<<EOD
host('dev.elegon.io')
->stage('staging');
EOD
, $deployFile);
}
/** @test */
function it_adds_localhost()
{
$deployFile = (string) new DeployFile([
'localhost' => [
'stage' => 'development',
'user' => 'lorisleiva',
'deploy_path' => '~/code/elegon/.build',
'foo' => ['bar' => ['baz' => 4.2]],
]
]);
$this->assertContains(
<<<EOD
localhost()
->stage('development')
->user('lorisleiva')
->set('deploy_path', '~/code/elegon/.build')
->set('foo', [
'bar' => [
'baz' => 4.2,
],
]);
EOD
, $deployFile);
}
/** @test */
function it_adds_hooks()
{
$deployFile = (string) new DeployFile([
'hooks' => [
'start' => ['slack:notify'],
'build' => ['npm:install', 'npm:production'],
'ready' => ['artisan:cache:clear', 'artisan:migrate'],
'done' => ['fpm:reload'],
'fail' => ['slack:notify:failure'],
'success' => ['slack:notify:success'],
]
]);
$this->assertContains(
<<<EOD
after('hook:start', 'slack:notify');
after('hook:build', 'npm:install');
after('hook:build', 'npm:production');
after('hook:ready', 'artisan:cache:clear');
after('hook:ready', 'artisan:migrate');
after('hook:done', 'fpm:reload');
after('deploy:failed', 'slack:notify:failure');
after('success', 'slack:notify:success');
EOD
, $deployFile);
}
/** @test */
function it_stores_the_deploy_file_inside_the_laravel_deployer_package()
{
$deployFilePath = $this->generatedDeployPath();
$this->assertFileNotExists($deployFilePath);
(new DeployFile())->store();
$this->assertFileExists($deployFilePath);
$this->exec('rm -rf ' . dirname($deployFilePath));
}
}