koel/tests/Unit/Services/LastfmServiceTest.php

44 lines
1.3 KiB
PHP
Raw Normal View History

2017-12-09 22:39:34 +00:00
<?php
namespace Tests\Unit\Services;
2018-08-18 13:19:40 +00:00
use App\Services\LastfmService;
use Mockery;
use Mockery\MockInterface;
2017-12-09 22:39:34 +00:00
use Tests\TestCase;
class LastfmServiceTest extends TestCase
2017-12-09 22:39:34 +00:00
{
/** @test */
public function testBuildAuthCallParams()
2017-12-09 22:39:34 +00:00
{
/** @var LastfmService|MockInterface $lastfm */
$lastfm = Mockery::mock(LastfmService::class)->makePartial();
$lastfm->shouldReceive('getKey')->andReturn('key');
$lastfm->shouldReceive('getSecret')->andReturn('secret');
2017-12-09 22:39:34 +00:00
$params = [
'qux' => '安',
'bar' => 'baz',
];
// When I build Last.fm-compatible API parameters using the raw parameters
$builtParams = $lastfm->buildAuthCallParams($params);
$builtParamsAsString = $lastfm->buildAuthCallParams($params, true);
2017-12-09 22:39:34 +00:00
// Then I receive the Last.fm-compatible API parameters
$this->assertEquals([
'api_key' => 'key',
'bar' => 'baz',
'qux' => '安',
'api_sig' => '7f21233b54edea994aa0f23cf55f18a2',
], $builtParams);
// And the string version as well
$this->assertEquals(
'api_key=key&bar=baz&qux=安&api_sig=7f21233b54edea994aa0f23cf55f18a2',
$builtParamsAsString
);
}
}