
PUT /api/v1/users/me payload 'first_name' => 'sometimes|string', 'last_name' => 'sometimes|string', 'email' => 'sometimes|email', 'identifier' => 'sometimes|string', 'bio' => 'nullable|string', 'address1' => 'nullable|string', 'address2' => 'nullable|string', 'city' => 'nullable|string', 'state' => 'nullable|string', 'post_code' => 'nullable|string', 'country_iso_code' => 'nullable|country_iso_alpha2_code', 'second_email' => 'nullable|email', 'third_email' => 'nullable|email', 'gender' => 'nullable|string', 'gender_specify' => 'nullable|string', 'statement_of_interest' => 'nullable|string', 'irc' => 'nullable|string', 'linked_in_profile' => 'nullable|string', 'github_user' => 'nullable|string', 'wechat_user' => 'nullable|string', 'twitter_name' => 'nullable|string', 'language' => 'nullable|string', 'birthday' => 'nullable|date_format:U', 'password' => 'sometimes|string|min:8|confirmed', 'phone_number' => 'nullable|string', 'company' => 'nullable|string', required scopes me/write PUT /api/v1/users/me/pic multiform encoding pic: file (png, jpg, jpeg) required scopes me/write Change-Id: I31a1edd9eb1fcdee228a8f5ba1b44d324116edd9 Signed-off-by: smarcet <smarcet@gmail.com>
104 lines
3.0 KiB
PHP
104 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2016 OpenStack Foundation
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
use App\libs\OAuth2\IUserScopes;
|
|
use OAuth2\ResourceServer\IUserService;
|
|
/**
|
|
* Class OAuth2UserServiceApiTest
|
|
*/
|
|
final class OAuth2UserServiceApiTest extends OAuth2ProtectedApiTest {
|
|
|
|
/**
|
|
* @covers OAuth2UserApiController::get()
|
|
*/
|
|
public function testUpdateMe(){
|
|
|
|
$first_name_val = 'test_'. str_random(16);
|
|
$data = [
|
|
'first_name' => $first_name_val,
|
|
];
|
|
|
|
$params = [
|
|
];
|
|
|
|
$headers = [
|
|
"HTTP_Authorization" => " Bearer " . $this->access_token,
|
|
"CONTENT_TYPE" => "application/json"
|
|
];
|
|
|
|
$response = $this->action
|
|
(
|
|
"PUT",
|
|
"Api\\OAuth2\\OAuth2UserApiController@UpdateMe",
|
|
$params,
|
|
[],
|
|
[],
|
|
[],
|
|
$headers,
|
|
json_encode($data)
|
|
);
|
|
|
|
$this->assertResponseStatus(201);
|
|
$content = $response->getContent();
|
|
$user = json_decode($content);
|
|
|
|
$this->assertTrue($user->first_name == $first_name_val);
|
|
|
|
}
|
|
|
|
/**
|
|
* @covers OAuth2UserApiController::get()
|
|
*/
|
|
public function testGetInfo(){
|
|
|
|
$response = $this->action("GET", "Api\OAuth2\OAuth2UserApiController@me",
|
|
[],
|
|
[],
|
|
[],
|
|
[],
|
|
array("HTTP_Authorization" => " Bearer " .$this->access_token));
|
|
|
|
$this->assertResponseStatus(200);
|
|
$content = $response->getContent();
|
|
$user_info = json_decode($content);
|
|
}
|
|
|
|
public function testGetInfoCORS(){
|
|
$response = $this->action("GET", "Api\OAuth2\OAuth2UserApiController@me",
|
|
[],
|
|
[],
|
|
[],
|
|
[],
|
|
array(
|
|
"HTTP_Authorization" => " Bearer " .$this->access_token,
|
|
'HTTP_Origin' => array('www.test.com'),
|
|
'HTTP_Host' => 'local.openstackid.openstack.org',
|
|
'HTTP_Access-Control-Request-Method' => 'GET',
|
|
));
|
|
|
|
$this->assertResponseStatus(200);
|
|
$content = $response->getContent();
|
|
}
|
|
|
|
protected function getScopes()
|
|
{
|
|
$scope = array(
|
|
IUserService::UserProfileScope_Address,
|
|
IUserService::UserProfileScope_Email,
|
|
IUserService::UserProfileScope_Profile,
|
|
IUserScopes::MeWrite,
|
|
);
|
|
|
|
return $scope;
|
|
}
|
|
} |