This repository was archived by the owner on Nov 30, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 376
/
Copy pathAddVariablesCommandTest.php
117 lines (95 loc) · 5.02 KB
/
AddVariablesCommandTest.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
<?php
namespace Osiset\ShopifyApp\Test\Console;
use Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables;
use Osiset\ShopifyApp\Console\AddVariablesCommand;
use Osiset\ShopifyApp\Test\TestCase;
class AddVariablesCommandTest extends TestCase
{
public function testItShouldRun(): void
{
$tempEnv = tempnam(sys_get_temp_dir(), 'ENV');
$this->app->loadEnvironmentFrom($tempEnv);
$this->app->bootstrapWith([LoadEnvironmentVariables::class]);
$this
->artisan('shopify-app:add:variables')
->expectsOutput('All variables will be set')
->assertExitCode(0);
}
public function testItShouldRunWithAlwaysNo(): void
{
$tempEnv = tempnam(sys_get_temp_dir(), 'ENV');
$command = new AddVariablesCommand();
foreach ($command->shopifyVariables() as $key => $variable) {
file_put_contents($tempEnv, PHP_EOL."$key=$variable", FILE_APPEND);
}
$this->app->loadEnvironmentFrom($tempEnv);
$this->app->bootstrapWith([LoadEnvironmentVariables::class]);
$this
->artisan('shopify-app:add:variables --always-no')
->expectsOutput('Variable SHOPIFY_APP_NAME already exists. Skipping...')
->expectsOutput('Variable SHOPIFY_API_KEY already exists. Skipping...')
->expectsOutput('Variable SHOPIFY_API_SECRET already exists. Skipping...')
->expectsOutput('Variable SHOPIFY_API_SCOPES already exists. Skipping...')
->expectsOutput('Variable AFTER_AUTHENTICATE_JOB already exists. Skipping...')
->expectsOutput('All variables will be set')
->assertExitCode(0);
}
public function testItShouldRunWithForce(): void
{
$tempEnv = tempnam(sys_get_temp_dir(), 'ENV');
$command = new AddVariablesCommand();
foreach ($command->shopifyVariables() as $key => $variable) {
file_put_contents($tempEnv, PHP_EOL."$key=$variable", FILE_APPEND);
}
$this->app->loadEnvironmentFrom($tempEnv);
$this->app->bootstrapWith([LoadEnvironmentVariables::class]);
$this
->artisan('shopify-app:add:variables --force')
->expectsOutput('All variables will be set')
->assertExitCode(0);
}
public function testItShouldRunWithoutForceAndNo(): void
{
$tempEnv = tempnam(sys_get_temp_dir(), 'ENV');
$command = new AddVariablesCommand();
foreach ($command->shopifyVariables() as $key => $variable) {
file_put_contents($tempEnv, PHP_EOL."$key=$variable", FILE_APPEND);
}
$this->app->loadEnvironmentFrom($tempEnv);
$this->app->bootstrapWith([LoadEnvironmentVariables::class]);
$this
->artisan('shopify-app:add:variables')
->expectsQuestion('This will invalidate SHOPIFY_APP_NAME variable. Are you sure you want to override SHOPIFY_APP_NAME?', 'no')
->expectsQuestion('This will invalidate SHOPIFY_API_KEY variable. Are you sure you want to override SHOPIFY_API_KEY?', 'no')
->expectsQuestion('This will invalidate SHOPIFY_API_SECRET variable. Are you sure you want to override SHOPIFY_API_SECRET?', 'no')
->expectsQuestion('This will invalidate SHOPIFY_API_SCOPES variable. Are you sure you want to override SHOPIFY_API_SCOPES?', 'no')
->expectsQuestion('This will invalidate AFTER_AUTHENTICATE_JOB variable. Are you sure you want to override AFTER_AUTHENTICATE_JOB?', 'no')
->assertExitCode(0);
}
public function testItShouldRunWithoutForceAndYes(): void
{
$tempEnv = tempnam(sys_get_temp_dir(), 'ENV');
$command = new AddVariablesCommand();
foreach ($command->shopifyVariables() as $key => $variable) {
file_put_contents($tempEnv, PHP_EOL."$key=$variable", FILE_APPEND);
}
$this->app->loadEnvironmentFrom($tempEnv);
$this->app->bootstrapWith([LoadEnvironmentVariables::class]);
$this
->artisan('shopify-app:add:variables')
->expectsQuestion('This will invalidate SHOPIFY_APP_NAME variable. Are you sure you want to override SHOPIFY_APP_NAME?', 'yes')
->expectsQuestion('This will invalidate SHOPIFY_API_KEY variable. Are you sure you want to override SHOPIFY_API_KEY?', 'yes')
->expectsQuestion('This will invalidate SHOPIFY_API_SECRET variable. Are you sure you want to override SHOPIFY_API_SECRET?', 'yes')
->expectsQuestion('This will invalidate SHOPIFY_API_SCOPES variable. Are you sure you want to override SHOPIFY_API_SCOPES?', 'yes')
->expectsQuestion('This will invalidate AFTER_AUTHENTICATE_JOB variable. Are you sure you want to override AFTER_AUTHENTICATE_JOB?', 'yes')
->expectsOutput('All variables will be set')
->assertExitCode(0);
}
public function testItShouldRunWithMissingEnv(): void
{
$this
->artisan('shopify-app:add:variables')
->expectsOutput('All variables will be set')
->assertExitCode(0);
}
}