-
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathCreateAnystackLicenseJobTest.php
More file actions
167 lines (141 loc) · 4.93 KB
/
CreateAnystackLicenseJobTest.php
File metadata and controls
167 lines (141 loc) · 4.93 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
<?php
namespace Tests\Feature\Jobs;
use App\Enums\Subscription;
use App\Jobs\CreateAnystackLicenseJob;
use App\Models\User;
use App\Notifications\LicenseKeyGenerated;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Notification;
use Tests\TestCase;
class CreateAnystackLicenseJobTest extends TestCase
{
use RefreshDatabase;
protected function setUp(): void
{
parent::setUp();
Http::fake([
'https://api.anystack.sh/v1/contacts' => Http::response([
'data' => [
'id' => 'contact-123',
'email' => 'test@example.com',
'first_name' => 'John',
'last_name' => 'Doe',
],
], 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',
],
], 201),
]);
Notification::fake();
}
/** @test */
public function it_creates_contact_and_license_on_anystack()
{
$user = User::factory()->create([
'email' => 'test@example.com',
'name' => 'John Doe',
]);
$job = new CreateAnystackLicenseJob(
$user,
Subscription::Max,
'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_stores_license_key_in_cache()
{
$user = User::factory()->create([
'email' => 'test@example.com',
'name' => 'John Doe',
]);
$job = new CreateAnystackLicenseJob(
$user,
Subscription::Max,
'John',
'Doe'
);
$job->handle();
$this->assertEquals('test-license-key-12345', Cache::get('test@example.com.license_key'));
}
/** @test */
public function it_sends_license_key_notification()
{
$user = User::factory()->create([
'email' => 'test@example.com',
'name' => 'John Doe',
]);
$job = new CreateAnystackLicenseJob(
$user,
Subscription::Max,
'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;
}
);
}
}