2021-06-19 00:44:56 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Zoomyboy\LaravelNami\Tests\Unit;
|
|
|
|
|
2021-11-18 19:57:59 +01:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2021-06-19 00:44:56 +02:00
|
|
|
use Illuminate\Support\Facades\Config;
|
2021-11-18 19:57:59 +01:00
|
|
|
use Illuminate\Support\Facades\Http;
|
2021-06-19 00:44:56 +02:00
|
|
|
use Zoomyboy\LaravelNami\Group;
|
2021-11-18 19:57:59 +01:00
|
|
|
use Zoomyboy\LaravelNami\LoginException;
|
2021-06-19 00:44:56 +02:00
|
|
|
use Zoomyboy\LaravelNami\Member;
|
2021-11-18 19:57:59 +01:00
|
|
|
use Zoomyboy\LaravelNami\Nami;
|
|
|
|
use Zoomyboy\LaravelNami\NamiServiceProvider;
|
|
|
|
use Zoomyboy\LaravelNami\Tests\TestCase;
|
2021-06-19 00:44:56 +02:00
|
|
|
|
|
|
|
class SearchTest extends TestCase
|
|
|
|
{
|
|
|
|
|
2022-02-18 18:29:02 +01:00
|
|
|
public array $attributes = [
|
2021-06-19 00:44:56 +02:00
|
|
|
[
|
|
|
|
'firstname' => 'Max',
|
|
|
|
'lastname' => 'Nach1',
|
|
|
|
'group_id' => 103,
|
|
|
|
'nickname' => 'spitz1',
|
|
|
|
'gender_id' => 17,
|
|
|
|
'id' => 16,
|
|
|
|
], [
|
|
|
|
'firstname' => 'Jane',
|
|
|
|
'lastname' => 'Nach2',
|
|
|
|
'nickname' => null,
|
|
|
|
'group_id' => 103,
|
|
|
|
'gender_id' => null,
|
|
|
|
'id' => 17,
|
|
|
|
]
|
|
|
|
];
|
|
|
|
|
2022-02-18 18:29:02 +01:00
|
|
|
public function dataProvider(): array
|
|
|
|
{
|
2021-06-19 00:44:56 +02:00
|
|
|
return [
|
|
|
|
'firstname' => ['vorname', ['Max', 'Jane']],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2022-02-18 18:29:02 +01:00
|
|
|
public function test_find_a_member_by_mglnr(): void
|
|
|
|
{
|
|
|
|
Http::fake([
|
2021-06-19 00:44:56 +02:00
|
|
|
$this->url(['mitgliedsNummber' => 150]) => Http::response($this->fakeJson('searchResponse.json'), 200),
|
2022-02-18 18:29:02 +01:00
|
|
|
]);
|
2021-06-19 00:44:56 +02:00
|
|
|
|
2022-02-18 18:29:02 +01:00
|
|
|
$member = $this->login()->findNr(150);
|
2021-06-19 00:44:56 +02:00
|
|
|
|
|
|
|
$this->assertEquals('Philipp', $member->firstname);
|
|
|
|
Http::assertSent(function($request) {
|
|
|
|
return $request->url() == $this->url(['mitgliedsNummber' => 150])
|
|
|
|
&& $request->method() == 'GET';
|
|
|
|
});
|
|
|
|
|
2022-02-18 18:29:02 +01:00
|
|
|
Http::assertSentCount(1);
|
2021-06-19 00:44:56 +02:00
|
|
|
}
|
|
|
|
|
2022-02-18 18:29:02 +01:00
|
|
|
private function url(array $payload): string
|
|
|
|
{
|
2021-06-19 00:44:56 +02:00
|
|
|
$payload = rawurlencode(json_encode($payload));
|
2022-02-18 18:29:02 +01:00
|
|
|
|
2021-11-18 19:57:59 +01:00
|
|
|
return "https://nami.dpsg.de/ica/rest/nami/search-multi/result-list?searchedValues={$payload}&page=1&start=0&limit=100";
|
2021-06-19 00:44:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|