-
Notifications
You must be signed in to change notification settings - Fork 335
/
TestCase.php
472 lines (419 loc) · 12 KB
/
TestCase.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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
<?php
declare(strict_types=1);
namespace Arcanedev\LogViewer\Tests;
use Arcanedev\LogViewer\Contracts\Utilities\Filesystem;
use Arcanedev\LogViewer\Entities\Log;
use Arcanedev\LogViewer\Entities\LogEntry;
use Arcanedev\LogViewer\Entities\LogEntryCollection;
use Arcanedev\LogViewer\Helpers\LogParser;
use Arcanedev\LogViewer\LogViewerServiceProvider;
use Arcanedev\LogViewer\Providers\DeferredServicesProvider;
use Carbon\Carbon;
use Illuminate\Contracts\Support\Jsonable;
use Illuminate\Support\Arr;
use Orchestra\Testbench\TestCase as BaseTestCase;
use PHPUnit\Framework\Constraint\RegularExpression;
use Psr\Log\LogLevel;
use ReflectionClass;
/**
* Class TestCase
*
* @author ARCANEDEV <[email protected]>
*/
abstract class TestCase extends BaseTestCase
{
/* -----------------------------------------------------------------
| Properties
| -----------------------------------------------------------------
*/
protected static array $logLevels = [];
protected static array $locales = [
'ar', 'bg', 'bn', 'de', 'en', 'es', 'et', 'fa', 'fr', 'hu', 'hy', 'id', 'it', 'ja', 'ko', 'ms', 'nl',
'pl', 'pt-BR', 'ro', 'ru', 'si', 'sv', 'th', 'tr', 'uk', 'zh-TW', 'zh'
];
/* -----------------------------------------------------------------
| Main Methods
| -----------------------------------------------------------------
*/
public static function setUpBeforeClass(): void
{
parent::setUpBeforeClass();
static::$logLevels = static::getLogLevels();
}
public static function tearDownAfterClass(): void
{
parent::tearDownAfterClass();
static::$logLevels = [];
}
/**
* Get package providers.
*
* @param \Illuminate\Foundation\Application $app
*
* @return array
*/
protected function getPackageProviders($app): array
{
return [
LogViewerServiceProvider::class,
DeferredServicesProvider::class,
];
}
/**
* Define environment setup.
*
* @param \Illuminate\Foundation\Application $app
*/
protected function getEnvironmentSetUp($app): void
{
$app['path.storage'] = realpath(__DIR__.'/fixtures');
/** @var \Illuminate\Config\Repository $config */
$config = $app['config'];
$config->set('log-viewer.storage-path', $app['path.storage'].DIRECTORY_SEPARATOR.'logs');
}
/* -----------------------------------------------------------------
| Custom assertions
| -----------------------------------------------------------------
*/
/**
* Asserts that a string is a valid JSON string.
*
* @param \Illuminate\Contracts\Support\Jsonable|mixed $object
* @param string $message
*/
public static function assertJsonObject($object, $message = ''): void
{
static::assertInstanceOf(Jsonable::class, $object);
static::assertJson($object->toJson(JSON_PRETTY_PRINT), $message);
static::assertInstanceOf('JsonSerializable', $object);
static::assertJson(json_encode($object, JSON_PRETTY_PRINT), $message);
}
/**
* Assert Log object.
*
* @param \Arcanedev\LogViewer\Entities\Log $log
* @param string $date
*/
protected static function assertLog(Log $log, $date): void
{
static::assertEquals($date, $log->date);
static::assertLogEntries($log->date, $log->entries());
}
/**
* Assert Log entries object.
*
* @param string $date
* @param \Arcanedev\LogViewer\Entities\LogEntryCollection $entries
*/
protected static function assertLogEntries($date, LogEntryCollection $entries): void
{
foreach ($entries as $entry) {
static::assertLogEntry($date, $entry);
}
}
/**
* Assert log entry object.
*
* @param string $date
* @param \Arcanedev\LogViewer\Entities\LogEntry $entry
*/
protected static function assertLogEntry($date, LogEntry $entry): void
{
$dt = Carbon::createFromFormat('Y-m-d', $date);
static::assertInLogLevels($entry->level);
static::assertInstanceOf(Carbon::class, $entry->datetime);
static::assertTrue($entry->datetime->isSameDay($dt));
static::assertNotEmpty($entry->header);
static::assertNotEmpty($entry->stack);
}
/**
* Assert in log levels.
*
* @param string $level
* @param string $message
*/
protected static function assertInLogLevels($level, $message = ''): void
{
static::assertContains($level, static::$logLevels, $message);
}
/**
* Assert levels.
*
* @param array $levels
*/
protected static function assertLevels(array $levels): void
{
static::assertCount(8, $levels);
foreach (static::getLogLevels() as $key => $value) {
static::assertArrayHasKey($key, $levels);
static::assertEquals($value, $levels[$key]);
}
}
/**
* Assert translated level.
*
* @param string $locale
* @param array $levels
*/
protected function assertTranslatedLevels($locale, $levels): void
{
foreach ($levels as $level => $translatedLevel) {
static::assertTranslatedLevel($locale, $level, $translatedLevel);
}
}
/**
* Assert translated level.
*
* @param string $locale
* @param string $level
* @param string $actualTrans
*/
protected static function assertTranslatedLevel($locale, $level, $actualTrans): void
{
$expected = static::getTranslatedLevel($locale, $level);
static::assertEquals($expected, $actualTrans);
}
/**
* Assert dates.
*
* @param array $dates
* @param string $message
*/
public static function assertDates(array $dates, $message = ''): void
{
foreach ($dates as $date) {
static::assertDate($date, $message);
}
}
/**
* Assert date [YYYY-MM-DD].
*
* @param string $date
* @param string $message
*/
public static function assertDate($date, $message = ''): void
{
static::assertMatchesRegExp('/'.LogParser::REGEX_DATE_PATTERN.'/', $date, $message);
}
/**
* Assert Menu item.
*
* @param array $item
* @param string $name
* @param int $count
* @param bool $withIcons
*/
protected static function assertMenuItem($item, $name, $count, $withIcons = true): void
{
static::assertArrayHasKey('name', $item);
static::assertEquals($name, $item['name']);
static::assertArrayHasKey('count', $item);
static::assertEquals($count, $item['count']);
if ($withIcons) {
static::assertArrayHasKey('icon', $item);
static::assertStringStartsWith('fa fa-fw fa-', $item['icon']);
}
else {
static::assertArrayNotHasKey('icon', $item);
}
}
/**
* Assert HEX Color.
*
* @param string $color
* @param string $message
*/
protected static function assertHexColor($color, $message = ''): void
{
$pattern = '/^#?([a-f0-9]{3}|[a-f0-9]{6})$/i';
static::assertMatchesRegExp($pattern, $color, $message);
}
/**
* Asserts that a string matches a given regular expression.
*
* @todo Remove this method when phpunit 8 not used
*
* @param string $pattern
* @param string $string
* @param string $message
*
*/
public static function assertMatchesRegExp($pattern, $string, $message = ''): void
{
static::assertThat($string, new RegularExpression($pattern), $message);
}
/* -----------------------------------------------------------------
| Other Methods
| -----------------------------------------------------------------
*/
/**
* Get Illuminate Filesystem instance.
*
* @return \Illuminate\Filesystem\Filesystem
*/
public function illuminateFile()
{
return $this->app->make('files');
}
/**
* Get Filesystem Utility instance.
*
* @return \Arcanedev\LogViewer\Utilities\Filesystem
*/
protected function filesystem()
{
return $this->app->make(Filesystem::class);
}
/**
* Get Translator Repository.
*
* @return \Illuminate\Translation\Translator
*/
protected static function trans()
{
return app('translator');
}
/**
* Get Config Repository.
*
* @return \Illuminate\Config\Repository
*/
protected function config()
{
return $this->app->make('config');
}
/**
* Get log path.
*
* @param string $date
*
* @return string
*/
public function getLogPath($date)
{
return $this->filesystem()->path($date);
}
protected static function fixturePath(?string $path = null): string
{
return is_null($path)
? __DIR__.'/fixtures'
: __DIR__.'/fixtures/'.$path;
}
/**
* Get log content.
*
* @param string $date
*
* @return string
*/
public function getLogContent($date)
{
return $this->filesystem()->read($date);
}
/**
* Get logs dates.
*
* @return array
*/
public function getDates()
{
return $this->filesystem()->dates();
}
/**
* Get log object from fixture.
*
* @param string $date
*
* @return \Arcanedev\LogViewer\Entities\Log
*/
protected function getLog($date)
{
$path = $this->getLogPath($date);
$raw = $this->getLogContent($date);
return Log::make($date, $path, $raw);
}
/**
* Get random entry from a log file.
*
* @param string $date
*
* @return mixed
*/
protected function getRandomLogEntry($date)
{
return $this->getLog($date)
->entries()
->random(1)
->first();
}
/**
* Get log levels.
*
* @return array
*/
protected static function getLogLevels()
{
return static::$logLevels = (new ReflectionClass(LogLevel::class))
->getConstants();
}
/**
* Create dummy log.
*
* @param string $date
* @param string $path
*
* @return bool
*/
protected static function createDummyLog(string $date, string $path): bool
{
return copy(
static::fixturePath('dummy.log'), // Source
"{$path}/laravel-{$date}.log" // Destination
);
}
/**
* Get translated level.
*
* @param string $locale
* @param string $key
*
* @return mixed
*/
private static function getTranslatedLevel($locale, $key)
{
return Arr::get(static::getTranslatedLevels(), "$locale.$key");
}
/**
* Get translated levels.
*
* @return array
*/
protected static function getTranslatedLevels()
{
$levels = [
'all' => 'All',
LogLevel::EMERGENCY => 'Emergency',
LogLevel::ALERT => 'Alert',
LogLevel::CRITICAL => 'Critical',
LogLevel::ERROR => 'Error',
LogLevel::WARNING => 'Warning',
LogLevel::NOTICE => 'Notice',
LogLevel::INFO => 'Info',
LogLevel::DEBUG => 'Debug',
];
return array_map(function ($locale) use ($levels) {
return array_map(function ($level) use ($locale) {
return static::trans()->get($level, [], $locale);
}, $levels);
}, array_combine(static::$locales, static::$locales));
}
/**
* Get config path
*
* @return string
*/
protected function getConfigPath()
{
return realpath(config_path());
}
}