mirror of
https://github.com/archtechx/laravel-seo.git
synced 2025-12-12 01:44:03 +00:00
parent
5ca343a116
commit
7b24a50bd6
5 changed files with 113 additions and 34 deletions
|
|
@ -1,14 +1,43 @@
|
|||
<?php
|
||||
|
||||
use ArchTech\SEO\Commands\GenerateFaviconsCommand;
|
||||
|
||||
use function Pest\Laravel\artisan;
|
||||
use function PHPUnit\Framework\assertFileDoesNotExist;
|
||||
use function PHPUnit\Framework\assertFileExists;
|
||||
|
||||
test("it should throw an exception if the given source icon doesn't exist", function () {
|
||||
seo()->favicon('i-dont-exist.png');
|
||||
})->throws(Exception::class, 'Given icon path `i-dont-exist.png` does not exist.');
|
||||
// Clean up generated files
|
||||
beforeEach(function () {
|
||||
$files = [
|
||||
'favicon.ico',
|
||||
'favicon.png',
|
||||
];
|
||||
|
||||
foreach ($files as $file) {
|
||||
@unlink(public_path($file));
|
||||
}
|
||||
});
|
||||
|
||||
test('it should generate two favicons', function () {
|
||||
seo()->favicon(__DIR__ . '/../stubs/logo.png');
|
||||
seo()->favicon();
|
||||
|
||||
$from = __DIR__ . '/../stubs/logo.png';
|
||||
|
||||
artisan(GenerateFaviconsCommand::class, [
|
||||
'from' => $from,
|
||||
])->assertSuccessful();
|
||||
|
||||
assertFileExists(public_path('favicon.ico'));
|
||||
assertFileExists(public_path('favicon.png'));
|
||||
});
|
||||
|
||||
test('it should fail because the from path is incorrect', function () {
|
||||
seo()->favicon();
|
||||
|
||||
artisan(GenerateFaviconsCommand::class, [
|
||||
'from' => 'i/dont/exist.png',
|
||||
])->assertFailed();
|
||||
|
||||
assertFileDoesNotExist(public_path('favicon.ico'));
|
||||
assertFileDoesNotExist(public_path('favicon.png'));
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue