-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathEventsTest.php
More file actions
280 lines (213 loc) · 7.76 KB
/
Copy pathEventsTest.php
File metadata and controls
280 lines (213 loc) · 7.76 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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
<?php
use Illuminate\Support\Facades\DB;
use Pan\Contracts\AnalyticsRepository;
use Pan\PanConfiguration;
use Pan\ValueObjects\Analytic;
it('can create an analytic click event', function (): void {
$response = $this->post('/pan/events', [
'events' => [[
'name' => 'help-modal',
'type' => 'click',
]],
]);
$response->assertStatus(204);
$analytics = array_map(fn (Analytic $analytic): array => $analytic->toArray(), app(AnalyticsRepository::class)->all());
expect($analytics)->toBe([
['id' => 1, 'tenant' => null, 'name' => 'help-modal', 'impressions' => 0, 'hovers' => 0, 'clicks' => 1],
]);
});
it('can create an analytic hover event', function (): void {
$response = $this->post('/pan/events', [
'events' => [[
'name' => 'help-modal',
'type' => 'hover',
]],
]);
$response->assertStatus(204);
$analytics = array_map(fn (Analytic $analytic): array => $analytic->toArray(), app(AnalyticsRepository::class)->all());
expect($analytics)->toBe([
['id' => 1, 'tenant' => null, 'name' => 'help-modal', 'impressions' => 0, 'hovers' => 1, 'clicks' => 0],
]);
});
it('can create an analytic impression event', function (): void {
$response = $this->post('/pan/events', [
'events' => [[
'name' => 'help-modal',
'type' => 'impression',
]],
]);
$response->assertStatus(204);
$analytics = array_map(fn (Analytic $analytic): array => $analytic->toArray(), app(AnalyticsRepository::class)->all());
expect($analytics)->toBe([
['id' => 1, 'tenant' => null, 'name' => 'help-modal', 'impressions' => 1, 'hovers' => 0, 'clicks' => 0],
]);
});
it('can create an analytic impression event and click event', function (): void {
$response = $this->post('/pan/events', [
'events' => [
[
'name' => 'help-modal',
'type' => 'impression',
],
[
'name' => 'help-modal',
'type' => 'click',
],
],
]);
$response->assertStatus(204);
$analytics = array_map(fn (Analytic $analytic): array => $analytic->toArray(), app(AnalyticsRepository::class)->all());
expect($analytics)->toBe([
['id' => 1, 'tenant' => null, 'name' => 'help-modal', 'impressions' => 1, 'hovers' => 0, 'clicks' => 1],
]);
});
it('does not create an analytic event if the event name is invalid', function (string $name): void {
$response = $this->post('/pan/events', [
'events' => [[
'name' => $name,
'type' => 'impression',
]],
]);
$response->assertStatus(302)->assertSessionHasErrors([
'events.0.name' => 'The events.0.name field must only contain letters, numbers, dashes, and underscores.',
]);
$analytics = array_map(fn (Analytic $analytic): array => $analytic->toArray(), app(AnalyticsRepository::class)->all());
expect($analytics)->toBe([]);
})->with([
'help modal',
'help.modal',
'help/modal',
'🙋',
]);
it('does not create an analytic event if the event is invalid', function (): void {
$response = $this->post('/pan/events', [
'events' => [[
'name' => 'help-modal',
'type' => 'invalid',
]],
]);
$response->assertStatus(302)->assertSessionHasErrors([
'events.0.type' => 'The selected events.0.type is invalid.',
]);
$analytics = array_map(fn (Analytic $analytic): array => $analytic->toArray(), app(AnalyticsRepository::class)->all());
expect($analytics)->toBe([]);
});
it('can create an event using a custom prefix url', function (): void {
PanConfiguration::routePrefix('new-pan');
$this->reloadApplication();
$response = $this->post('/new-pan/events', [
'events' => [[
'name' => 'help-modal',
'type' => 'impression',
]],
]);
$response->assertStatus(204);
$analytics = array_map(fn (Analytic $analytic): array => $analytic->toArray(), app(AnalyticsRepository::class)->all());
expect($analytics)->toBe([
['id' => 1, 'tenant' => null, 'name' => 'help-modal', 'impressions' => 1, 'hovers' => 0, 'clicks' => 0],
]);
})->after(function (): void {
PanConfiguration::routePrefix('pan');
$this->reloadApplication();
});
it('does handle gracefully when there is more than 50 analytics created by default', function (): void {
DB::table('pan_analytics')->insert(array_map(fn (int $index): array => [
'name' => "help-modal-$index",
'impressions' => 0,
'hovers' => 0,
'clicks' => 0,
], range(1, 49)));
expect(DB::table('pan_analytics')->count())->toBe(49);
$response = $this->post('/pan/events', [
'events' => [[
'name' => 'help-modal-a',
'type' => 'click',
]],
]);
$response->assertStatus(204);
expect(DB::table('pan_analytics')->count())->toBe(50);
$response = $this->post('/pan/events', [
'events' => [[
'name' => 'help-modal-b',
'type' => 'click',
]],
]);
$response->assertStatus(204);
expect(DB::table('pan_analytics')->count())->toBe(50);
});
it('does handle gracefully when there is more than the max analytics created', function (): void {
DB::table('pan_analytics')->insert(array_map(fn (int $index): array => [
'name' => "help-modal-$index",
'impressions' => 0,
'hovers' => 0,
'clicks' => 0,
], range(1, 49)));
expect(DB::table('pan_analytics')->count())->toBe(49);
$response = $this->post('/pan/events', [
'events' => [[
'name' => 'help-modal-a',
'type' => 'click',
]],
]);
$response->assertStatus(204);
expect(DB::table('pan_analytics')->count())->toBe(50);
$response = $this->post('/pan/events', [
'events' => [[
'name' => 'help-modal-b',
'type' => 'click',
]],
]);
$response->assertStatus(204);
expect(DB::table('pan_analytics')->count())->toBe(50);
PanConfiguration::instance()->maxAnalytics(100);
$response = $this->post('/pan/events', [
'events' => [[
'name' => 'help-modal-c',
'type' => 'click',
]],
]);
$response->assertStatus(204);
expect(DB::table('pan_analytics')->count())->toBe(51);
DB::table('pan_analytics')->insert(array_map(fn (int $index): array => [
'name' => "help-modal-$index",
'impressions' => 0,
'hovers' => 0,
'clicks' => 0,
], range(52, 99)));
expect(DB::table('pan_analytics')->count())->toBe(99);
$response = $this->post('/pan/events', [
'events' => [[
'name' => 'help-modal-d',
'type' => 'click',
]],
]);
$response->assertStatus(204);
expect(DB::table('pan_analytics')->count())->toBe(100);
$response = $this->post('/pan/events', [
'events' => [[
'name' => 'help-modal-e',
'type' => 'click',
]],
]);
$response->assertStatus(204);
expect(DB::table('pan_analytics')->count())->toBe(100);
});
it('does handle gracefully when there is a name that is not allowed', function (): void {
PanConfiguration::allowedAnalytics(['help-modal', 'contact-modal']);
$response = $this->post('/pan/events', [
'events' => [[
'name' => 'invalid-modal',
'type' => 'click',
]],
]);
$response->assertStatus(204);
expect(DB::table('pan_analytics')->count())->toBe(0);
$response = $this->post('/pan/events', [
'events' => [[
'name' => 'help-modal',
'type' => 'click',
]],
]);
$response->assertStatus(204);
expect(DB::table('pan_analytics')->count())->toBe(1);
});