-
-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathCreateAnystackLicenseJobTest.php
More file actions
246 lines (210 loc) · 7.27 KB
/
Copy pathCreateAnystackLicenseJobTest.php
File metadata and controls
246 lines (210 loc) · 7.27 KB
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
<?php
namespace Tests\Feature\Jobs;
use App\Enums\Subscription;
use App\Jobs\CreateAnystackLicenseJob;
use App\Models\User;
use App\Notifications\LicenseKeyGenerated;
use Carbon\CarbonImmutable;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Notification;
use Illuminate\Support\Str;
use Tests\TestCase;
class CreateAnystackLicenseJobTest extends TestCase
{
use RefreshDatabase;
protected CarbonImmutable $now;
protected function setUp(): void
{
parent::setUp();
$this->now = now()->toImmutable();
Http::fake([
'https://api.anystack.sh/v1/contacts' => Http::response([
'data' => [
'id' => 'contact-123',
'email' => 'test@example.com',
'first_name' => 'John',
'last_name' => 'Doe',
'created_at' => $this->now->toIso8601String(),
'updated_at' => $this->now->toIso8601String(),
],
], 201),
'https://api.anystack.sh/v1/products/*/licenses' => Http::response([
'data' => [
'id' => 'license-123',
'key' => 'test-license-key-12345',
'contact_id' => 'contact-123',
'policy_id' => 'policy-123',
'name' => null,
'activations' => 0,
'max_activations' => 10,
'suspended' => false,
'expires_at' => $this->now->addYear()->toIso8601String(),
'created_at' => $this->now->toIso8601String(),
'updated_at' => $this->now->toIso8601String(),
],
], 201),
]);
Notification::fake();
}
/** @test */
public function it_creates_a_contact_and_license_on_anystack_via_api()
{
$user = User::factory()->create([
'email' => 'test@example.com',
'name' => 'John Doe',
]);
$job = new CreateAnystackLicenseJob(
$user,
Subscription::Max,
null,
'John',
'Doe'
);
$job->handle();
Http::assertSent(function ($request) {
return $request->url() === 'https://api.anystack.sh/v1/contacts' &&
$request->method() === 'POST' &&
$request->data() === [
'first_name' => 'John',
'last_name' => 'Doe',
'email' => 'test@example.com',
];
});
$productId = Subscription::Max->anystackProductId();
Http::assertSent(function ($request) use ($productId) {
return $request->url() === "https://api.anystack.sh/v1/products/$productId/licenses" &&
$request->method() === 'POST' &&
$request->data() === [
'policy_id' => Subscription::Max->anystackPolicyId(),
'contact_id' => 'contact-123',
];
});
}
/** @test */
public function it_does_not_create_a_contact_when_the_user_already_has_a_contact_id()
{
$user = User::factory()->create([
'email' => 'test@example.com',
'name' => 'John Doe',
'anystack_contact_id' => 'contact-123',
]);
$job = new CreateAnystackLicenseJob(
$user,
Subscription::Max,
null,
'John',
'Doe'
);
$job->handle();
Http::assertNotSent(function ($request) {
return Str::contains($request->url(), 'https://api.anystack.sh/v1/contacts');
});
}
/** @test */
public function it_stores_the_license_key_in_database()
{
$user = User::factory()->create([
'email' => 'test@example.com',
'name' => 'John Doe',
]);
$job = new CreateAnystackLicenseJob(
$user,
Subscription::Max,
null,
'John',
'Doe'
);
$job->handle();
$this->assertDatabaseHas('licenses', [
'anystack_id' => 'license-123',
'user_id' => $user->id,
'subscription_item_id' => null,
'policy_name' => 'max',
'key' => 'test-license-key-12345',
'expires_at' => $this->now->addYear(),
'created_at' => $this->now,
'updated_at' => $this->now,
]);
}
/** @test */
public function the_subscription_item_id_is_filled_when_provided()
{
$user = User::factory()->create([
'email' => 'test@example.com',
'name' => 'John Doe',
]);
$job = new CreateAnystackLicenseJob(
$user,
Subscription::Max,
123,
'John',
'Doe'
);
$job->handle();
$this->assertDatabaseHas('licenses', [
'user_id' => $user->id,
'subscription_item_id' => 123,
'policy_name' => 'max',
'key' => 'test-license-key-12345',
'expires_at' => $this->now->addYear(),
'created_at' => $this->now,
'updated_at' => $this->now,
]);
}
/** @test */
public function it_sends_a_license_key_notification()
{
$user = User::factory()->create([
'email' => 'test@example.com',
'name' => 'John Doe',
]);
$job = new CreateAnystackLicenseJob(
$user,
Subscription::Max,
null,
'John',
'Doe'
);
$job->handle();
Notification::assertSentTo(
$user,
function (LicenseKeyGenerated $notification, array $channels, object $notifiable) {
return $notification->licenseKey === 'test-license-key-12345' &&
$notification->subscription === Subscription::Max &&
$notification->firstName === 'John';
}
);
}
/** @test */
public function it_handles_missing_name_components()
{
$user = User::factory()->create([
'email' => 'test@example.com',
'name' => null,
]);
// Create and run the job with missing name components
$job = new CreateAnystackLicenseJob(
$user,
Subscription::Max,
);
$job->handle();
// Assert HTTP request was made with correct data (no name components)
Http::assertSent(function ($request) {
return $request->url() === 'https://api.anystack.sh/v1/contacts' &&
$request->method() === 'POST' &&
$request->data() === [
'email' => 'test@example.com',
];
});
// Assert notification was sent with null firstName
Notification::assertSentTo(
$user,
function (LicenseKeyGenerated $notification, array $channels, object $notifiable) {
return $notification->licenseKey === 'test-license-key-12345' &&
$notification->subscription === Subscription::Max &&
$notification->firstName === null;
}
);
}
}