Add: Put member
This commit is contained in:
parent
1233de78e1
commit
a5881ffe5f
|
@ -69,6 +69,14 @@ class Api {
|
|||
return collect($this->http()->get(self::$url.'/ica/rest/nami/mitglied/filtered-for-navigation/gruppierung/gruppierung/'.$groupId.'/flist')->json()['data']);
|
||||
}
|
||||
|
||||
public function putMember(Member $member) {
|
||||
$this->http()->put(self::$url.'/ica/rest/nami/mitglied/filtered-for-navigation/gruppierung/gruppierung/'.$member->group_id.'/'.$member->id, [
|
||||
'vorname' => $member->firstname,
|
||||
'nachname' => $member->lastname,
|
||||
'spitzname' => $member->nickname ?: ''
|
||||
]);
|
||||
}
|
||||
|
||||
public function membershipsOf($memberId): Collection {
|
||||
$url = self::$url.'/ica/rest/nami/zugeordnete-taetigkeiten/filtered-for-navigation/gruppierung-mitglied/mitglied/'.$memberId.'/flist';
|
||||
|
||||
|
|
|
@ -102,4 +102,8 @@ class Member extends Model {
|
|||
return Membership::fromNami(Nami::membership($this->id, $id));
|
||||
}
|
||||
|
||||
public function store() {
|
||||
app('nami.api')->putMember($this);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,120 @@
|
|||
<?php
|
||||
|
||||
namespace Zoomyboy\LaravelNami\Tests\Unit;
|
||||
|
||||
use Zoomyboy\LaravelNami\Nami;
|
||||
use Zoomyboy\LaravelNami\Tests\TestCase;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
use Illuminate\Support\Facades\Config;
|
||||
use Zoomyboy\LaravelNami\NamiServiceProvider;
|
||||
use Zoomyboy\LaravelNami\LoginException;
|
||||
use Zoomyboy\LaravelNami\Group;
|
||||
use Zoomyboy\LaravelNami\Member;
|
||||
|
||||
class PushlMemberTest extends TestCase
|
||||
{
|
||||
public $groupsResponse = '{"success":true,"data":[{"descriptor":"Group","name":"","representedClass":"de.iconcept.nami.entity.org.Gruppierung","id":103}],"responseType":"OK"}';
|
||||
public $unauthorizedResponse = '{"success":false,"data":null,"responseType":"EXCEPTION","message":"Access denied - no right for requested operation","title":"Exception"}';
|
||||
|
||||
public $attributes = [
|
||||
[
|
||||
'firstname' => 'Max',
|
||||
'lastname' => 'Nach1',
|
||||
'group_id' => 103,
|
||||
'nickname' => 'spitz1',
|
||||
'id' => 16
|
||||
], [
|
||||
'firstname' => 'Jane',
|
||||
'lastname' => 'Nach2',
|
||||
'nickname' => null,
|
||||
'group_id' => 103,
|
||||
'id' => 17
|
||||
]
|
||||
];
|
||||
|
||||
public function dataProvider() {
|
||||
return [
|
||||
'firstname' => ['vorname', ['Max', 'Jane']],
|
||||
'lastname' => ['nachname', ['Nach1', 'Nach2']],
|
||||
'nickname' => ['spitzname', ['spitz1', '']],
|
||||
/*
|
||||
'other_country' => ['other_country', ['deutsch', null]],
|
||||
'address' => ['address', ['straße 1', 'straße 2']],
|
||||
'further_address' => ['further_address', ['addrz', null]],
|
||||
'zip' => ['zip', ['12345', '5555']],
|
||||
'location' => ['location', ['SG', 'Köln']],
|
||||
'main_phone' => ['main_phone', ['+49888', '+49668']],
|
||||
'mobile_phone' => ['mobile_phone', ['+49176', '+49172']],
|
||||
'work_phone' => ['work_phone', ['+11111', '+22222']],
|
||||
'fax' => ['fax', ['+55111', '+55222']],
|
||||
'email' => ['email', ['test@example.com', 'test2@example.com']],
|
||||
'email_parents' => ['email_parents', ['testp@example.com', 'test2p@example.com']],
|
||||
'gender_id' => ['gender_id', [19, null]],
|
||||
'nationality_id' => ['nationality_id', [1054, null]],
|
||||
'confession_id' => ['confession_id', [1, null]],
|
||||
'birthday' => ['birthday', ['1991-06-20', '1984-01-17']],
|
||||
'joined_at' => ['joined_at', ['2005-05-01', null]],
|
||||
'group_id' => ['group_id', [103, 103]],
|
||||
*/
|
||||
];
|
||||
}
|
||||
|
||||
public function overviewDataProvider() {
|
||||
return [
|
||||
'firstname' => ['firstname', ['Max', 'Jane']],
|
||||
'lastname' => ['lastname', ['Nach1', 'Nach2']],
|
||||
'nickname' => ['nickname', ['spitz1', null]],
|
||||
'other_country' => ['other_country', ['deutsch', null]],
|
||||
'main_phone' => ['main_phone', ['+49888', '+49668']],
|
||||
'mobile_phone' => ['mobile_phone', ['+49176', '+49172']],
|
||||
'work_phone' => ['work_phone', ['+11111', '+22222']],
|
||||
'fax' => ['fax', ['+55111', '+55222']],
|
||||
'email' => ['email', ['test@example.com', 'test2@example.com']],
|
||||
'email_parents' => ['email_parents', ['testp@example.com', 'test2p@example.com']],
|
||||
'gender_id' => ['gender_id', [19, null]],
|
||||
'birthday' => ['birthday', ['1991-06-20', '1984-01-17']],
|
||||
'joined_at' => ['joined_at', ['2005-05-01', null]],
|
||||
'group_id' => ['group_id', [103, 103]],
|
||||
];
|
||||
}
|
||||
|
||||
public function relationProvider() {
|
||||
return [
|
||||
'firstname' => ['firstname', ['Max', 'Jane']],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider dataProvider
|
||||
*/
|
||||
public function test_push_a_single_member($key, $values) {
|
||||
Http::fake(array_merge($this->login(), [
|
||||
'https://nami.dpsg.de/ica/rest/nami/mitglied/filtered-for-navigation/gruppierung/gruppierung/103/16' => Http::response('', 200),
|
||||
'https://nami.dpsg.de/ica/rest/nami/mitglied/filtered-for-navigation/gruppierung/gruppierung/103/17' => Http::response('', 200),
|
||||
]));
|
||||
|
||||
$this->setCredentials();
|
||||
Nami::login();
|
||||
|
||||
$member1 = new Member($this->attributes[0]);
|
||||
$member2 = new Member($this->attributes[1]);
|
||||
|
||||
$member1->store();
|
||||
$member2->store();
|
||||
|
||||
Http::assertSent(function($request) use ($key, $values) {
|
||||
return $request->url() == 'https://nami.dpsg.de/ica/rest/nami/mitglied/filtered-for-navigation/gruppierung/gruppierung/103/16'
|
||||
&& $request[$key] === $values[0]
|
||||
&& $request->method() == 'PUT';
|
||||
});
|
||||
|
||||
Http::assertSent(function($request) use ($key, $values) {
|
||||
return $request->url() == 'https://nami.dpsg.de/ica/rest/nami/mitglied/filtered-for-navigation/gruppierung/gruppierung/103/17'
|
||||
&& $request[$key] === $values[1]
|
||||
&& $request->method() == 'PUT';
|
||||
});
|
||||
|
||||
Http::assertSentCount(4);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue