mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 23:18:10 +00:00
parent
203584107f
commit
91e222f7a6
6 changed files with 21 additions and 18 deletions
|
|
@ -18,7 +18,7 @@ beforeEach(function (): void {
|
|||
Storage::disk('public')->put('/images/sleep.bmp', 'fake-bmp-content');
|
||||
});
|
||||
|
||||
test('command transforms default images for all device models', function () {
|
||||
test('command transforms default images for all device models', function (): void {
|
||||
// Ensure we have device models
|
||||
$deviceModels = DeviceModel::all();
|
||||
expect($deviceModels)->not->toBeEmpty();
|
||||
|
|
@ -43,7 +43,7 @@ test('command transforms default images for all device models', function () {
|
|||
}
|
||||
});
|
||||
|
||||
test('getDeviceSpecificDefaultImage returns correct path for device with model', function () {
|
||||
test('getDeviceSpecificDefaultImage returns correct path for device with model', function (): void {
|
||||
$deviceModel = DeviceModel::first();
|
||||
expect($deviceModel)->not->toBeNull();
|
||||
|
||||
|
|
@ -66,7 +66,7 @@ test('getDeviceSpecificDefaultImage returns correct path for device with model',
|
|||
expect($sleepImage)->toBe($sleepPath);
|
||||
});
|
||||
|
||||
test('getDeviceSpecificDefaultImage falls back to original images for device without model', function () {
|
||||
test('getDeviceSpecificDefaultImage falls back to original images for device without model', function (): void {
|
||||
$device = new Device();
|
||||
$device->deviceModel = null;
|
||||
|
||||
|
|
@ -77,7 +77,7 @@ test('getDeviceSpecificDefaultImage falls back to original images for device wit
|
|||
expect($sleepImage)->toBe('images/sleep.bmp');
|
||||
});
|
||||
|
||||
test('generateDefaultScreenImage creates images from Blade templates', function () {
|
||||
test('generateDefaultScreenImage creates images from Blade templates', function (): void {
|
||||
$device = Device::factory()->create();
|
||||
|
||||
$setupUuid = ImageGenerationService::generateDefaultScreenImage($device, 'setup-logo');
|
||||
|
|
@ -97,14 +97,14 @@ test('generateDefaultScreenImage creates images from Blade templates', function
|
|||
expect(Storage::disk('public')->exists($sleepPath))->toBeTrue();
|
||||
});
|
||||
|
||||
test('generateDefaultScreenImage throws exception for invalid image type', function () {
|
||||
test('generateDefaultScreenImage throws exception for invalid image type', function (): void {
|
||||
$device = Device::factory()->create();
|
||||
|
||||
expect(fn () => ImageGenerationService::generateDefaultScreenImage($device, 'invalid-type'))
|
||||
expect(fn (): string => ImageGenerationService::generateDefaultScreenImage($device, 'invalid-type'))
|
||||
->toThrow(InvalidArgumentException::class);
|
||||
});
|
||||
|
||||
test('getDeviceSpecificDefaultImage returns null for invalid image type', function () {
|
||||
test('getDeviceSpecificDefaultImage returns null for invalid image type', function (): void {
|
||||
$device = new Device();
|
||||
$device->deviceModel = DeviceModel::first();
|
||||
|
||||
|
|
|
|||
|
|
@ -146,7 +146,7 @@ LIQUID
|
|||
|
||||
// Instead of checking for absence of 1 and 2, let's verify the count
|
||||
// The filtered result should only contain 3, 4, 5
|
||||
$filteredContent = strip_tags($result);
|
||||
$filteredContent = strip_tags((string) $result);
|
||||
$this->assertStringNotContainsString('1', $filteredContent);
|
||||
$this->assertStringNotContainsString('2', $filteredContent);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ beforeEach(function (): void {
|
|||
Storage::disk('public')->put('/images/sleep.bmp', 'fake-bmp-content');
|
||||
});
|
||||
|
||||
test('command transforms default images for all device models', function () {
|
||||
test('command transforms default images for all device models', function (): void {
|
||||
// Ensure we have device models
|
||||
$deviceModels = DeviceModel::all();
|
||||
expect($deviceModels)->not->toBeEmpty();
|
||||
|
|
@ -42,7 +42,7 @@ test('command transforms default images for all device models', function () {
|
|||
}
|
||||
});
|
||||
|
||||
test('getDeviceSpecificDefaultImage falls back to original images for device without model', function () {
|
||||
test('getDeviceSpecificDefaultImage falls back to original images for device without model', function (): void {
|
||||
$device = new Device();
|
||||
$device->deviceModel = null;
|
||||
|
||||
|
|
@ -53,7 +53,7 @@ test('getDeviceSpecificDefaultImage falls back to original images for device wit
|
|||
expect($sleepImage)->toBe('images/sleep.bmp');
|
||||
});
|
||||
|
||||
test('generateDefaultScreenImage creates images from Blade templates', function () {
|
||||
test('generateDefaultScreenImage creates images from Blade templates', function (): void {
|
||||
$device = Device::factory()->create();
|
||||
|
||||
$setupUuid = ImageGenerationService::generateDefaultScreenImage($device, 'setup-logo');
|
||||
|
|
@ -71,14 +71,14 @@ test('generateDefaultScreenImage creates images from Blade templates', function
|
|||
expect(Storage::disk('public')->exists($sleepPath))->toBeTrue();
|
||||
})->skipOnCI();
|
||||
|
||||
test('generateDefaultScreenImage throws exception for invalid image type', function () {
|
||||
test('generateDefaultScreenImage throws exception for invalid image type', function (): void {
|
||||
$device = Device::factory()->create();
|
||||
|
||||
expect(fn () => ImageGenerationService::generateDefaultScreenImage($device, 'invalid-type'))
|
||||
expect(fn (): string => ImageGenerationService::generateDefaultScreenImage($device, 'invalid-type'))
|
||||
->toThrow(InvalidArgumentException::class);
|
||||
});
|
||||
|
||||
test('getDeviceSpecificDefaultImage returns null for invalid image type', function () {
|
||||
test('getDeviceSpecificDefaultImage returns null for invalid image type', function (): void {
|
||||
$device = new Device();
|
||||
$device->deviceModel = DeviceModel::first();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue