mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-27 10:45:44 +01:00
61 lines
1.3 KiB
PHP
61 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Services;
|
|
|
|
use App\Services\LogoService;
|
|
use Tests\FeatureTestCase;
|
|
use Tests\TestCase;
|
|
use Mockery\MockInterface;
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
/**
|
|
* @covers \App\Services\LogoService
|
|
*/
|
|
class LogoServiceTest extends TestCase
|
|
{
|
|
use WithoutMiddleware;
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function setUp() : void
|
|
{
|
|
parent::setUp();
|
|
}
|
|
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_getIcon_returns_iconFilename_when_logo_exists()
|
|
{
|
|
$logoServiceMock = $this->partialMock(LogoService::class, function (MockInterface $mock) {
|
|
$mock->shouldAllowMockingProtectedMethods();
|
|
$mock->shouldReceive('getLogo', 'copyToIcons')
|
|
->once()
|
|
->andReturn('service.svg', true);
|
|
});
|
|
|
|
$icon = $logoServiceMock->getIcon('service');
|
|
|
|
$this->assertNotNull($icon);
|
|
}
|
|
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_getIcon_returns_null_when_no_logo_exists()
|
|
{
|
|
$logoServiceMock = $this->partialMock(LogoService::class, function (MockInterface $mock) {
|
|
$mock->shouldReceive('getLogo')
|
|
->once()
|
|
->andReturn(null);
|
|
});
|
|
|
|
$icon = $logoServiceMock->getIcon('no_logo_should_exists_with_this_name');
|
|
|
|
$this->assertEquals(null, $icon);
|
|
}
|
|
|
|
} |