
* updated dependencies * updated LV version to 5.6 Depends-On: https://review.openstack.org/629495 Depends-On: https://review.openstack.org/629896 Change-Id: Iacf81dd65d71102ad0660c5c2bdd6633bf727ec0
303 lines
8.9 KiB
PHP
303 lines
8.9 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 Models\OAuth2\ResourceServer;
|
|
use Illuminate\Support\Facades\Config;
|
|
use Auth\User;
|
|
use Illuminate\Support\Facades\Session;
|
|
use Tests\BrowserKitTestCase;
|
|
/**
|
|
* Class ResourceServerApiTest
|
|
* Test ResourceServer REST API
|
|
*/
|
|
final class ResourceServerApiTest extends BrowserKitTestCase
|
|
{
|
|
|
|
private $current_realm;
|
|
|
|
private $current_host;
|
|
|
|
protected function prepareForTests()
|
|
{
|
|
parent::prepareForTests();
|
|
//Route::enableFilters();
|
|
$this->current_realm = Config::get('app.url');
|
|
$parts = parse_url($this->current_realm);
|
|
$this->current_host = $parts['host'];
|
|
$user = User::where('identifier', '=', 'sebastian.marcet')->first();
|
|
$this->be($user);
|
|
Session::start();
|
|
}
|
|
|
|
public function testGetById()
|
|
{
|
|
|
|
$resource_server = ResourceServer::where('host', '=', $this->current_host)->first();
|
|
|
|
$response = $this->action("GET", "Api\\ApiResourceServerController@get",
|
|
$parameters = array('id' => $resource_server->id),
|
|
array(),
|
|
array(),
|
|
array());
|
|
|
|
$content = $response->getContent();
|
|
$response_resource_server = json_decode($content);
|
|
|
|
$this->assertResponseStatus(200);
|
|
$this->assertTrue($response_resource_server->id === $resource_server->id);
|
|
}
|
|
|
|
public function testGetByPage()
|
|
{
|
|
|
|
$response = $this->action("GET", "Api\\ApiResourceServerController@getByPage",
|
|
$parameters = array('page_nbr' => 1, 'page_size' => 10),
|
|
array(),
|
|
array(),
|
|
array());
|
|
|
|
$this->assertResponseStatus(200);
|
|
$content = $response->getContent();
|
|
$list = json_decode($content);
|
|
$this->assertTrue(isset($list->total_items) && intval($list->total_items) > 0);
|
|
|
|
}
|
|
|
|
public function testCreate()
|
|
{
|
|
|
|
$data = array(
|
|
'host' => 'www.resource.server.2.test.com',
|
|
'ips' => '10.0.0.1',
|
|
'friendly_name' => 'Resource Server 2',
|
|
'active' => true,
|
|
);
|
|
|
|
$response = $this->action("POST", "Api\\ApiResourceServerController@create",
|
|
$data,
|
|
array(),
|
|
array(),
|
|
array());
|
|
$this->assertResponseStatus(201);
|
|
$content = $response->getContent();
|
|
$json_response = json_decode($content);
|
|
$this->assertTrue(isset($json_response->resource_server_id));
|
|
$this->assertTrue(!empty($json_response->resource_server_id));
|
|
|
|
}
|
|
|
|
public function testRegenerateClientSecret()
|
|
{
|
|
|
|
$data = array(
|
|
'host' => 'www.resource.server.3.test.com',
|
|
'ips' => '10.0.0.2',
|
|
'friendly_name' => 'Resource Server 3',
|
|
'active' => true,
|
|
);
|
|
|
|
|
|
$response = $this->action("POST", "Api\\ApiResourceServerController@create",
|
|
$data,
|
|
array(),
|
|
array(),
|
|
array());
|
|
|
|
$content = $response->getContent();
|
|
|
|
$json_response = json_decode($content);
|
|
|
|
$new_id = $json_response->resource_server_id;
|
|
|
|
$response = $this->action("GET", "Api\\ApiResourceServerController@get", $parameters = array('id' => $new_id),
|
|
array(),
|
|
array(),
|
|
array());
|
|
|
|
$content = $response->getContent();
|
|
|
|
$json_response = json_decode($content);
|
|
|
|
|
|
$client_secret = $json_response->client_secret;
|
|
|
|
$response = $this->action("PUT", "Api\\ApiResourceServerController@regenerateClientSecret",
|
|
$parameters = array('id' => $new_id),
|
|
array(),
|
|
array(),
|
|
array());
|
|
|
|
|
|
$content = $response->getContent();
|
|
|
|
$json_response = json_decode($content);
|
|
|
|
$new_secret = $json_response->new_secret;
|
|
|
|
$this->assertTrue(!empty($new_secret));
|
|
$this->assertTrue($new_secret !== $client_secret);
|
|
|
|
$this->assertResponseStatus(200);
|
|
|
|
}
|
|
|
|
public function testDelete()
|
|
{
|
|
|
|
$data = array(
|
|
'host' => 'www.resource.server.4.test.com',
|
|
'ips' => '10.0.0.4',
|
|
'friendly_name' => 'Resource Server 4',
|
|
'active' => true,
|
|
);
|
|
|
|
|
|
$response = $this->action("POST", "Api\\ApiResourceServerController@create",
|
|
$parameters = $data,
|
|
array(),
|
|
array(),
|
|
array());
|
|
|
|
$content = $response->getContent();
|
|
|
|
$json_response = json_decode($content);
|
|
|
|
$new_id = $json_response->resource_server_id;
|
|
|
|
$response = $this->action("DELETE", "Api\\ApiResourceServerController@delete", $parameters = array('id' => $new_id),
|
|
array(),
|
|
array(),
|
|
array());
|
|
|
|
$this->assertResponseStatus(204);
|
|
|
|
|
|
$response = $this->action("GET", "Api\\ApiResourceServerController@get", $parameters = array('id' => $new_id),
|
|
array(),
|
|
array(),
|
|
array());
|
|
|
|
$content = $response->getContent();
|
|
|
|
$json_response = json_decode($content);
|
|
|
|
$this->assertResponseStatus(404);
|
|
|
|
$this->assertTrue($json_response->error === 'resource server not found');
|
|
}
|
|
|
|
public function testDeleteExistingOne()
|
|
{
|
|
|
|
$resource_server = ResourceServer::where('host', '=', $this->current_host)->first();
|
|
|
|
$new_id = $resource_server->id;
|
|
|
|
$response = $this->action("DELETE", "Api\\ApiResourceServerController@delete", $parameters = array('id' => $new_id),
|
|
array(),
|
|
array(),
|
|
array());
|
|
|
|
|
|
$this->assertResponseStatus(204);
|
|
|
|
|
|
$response = $this->action("GET", "Api\\ApiResourceServerController@get", $parameters = array('id' => $new_id),
|
|
array(),
|
|
array(),
|
|
array());
|
|
|
|
$this->assertResponseStatus(404);
|
|
|
|
}
|
|
|
|
public function testUpdate()
|
|
{
|
|
|
|
$data = array(
|
|
'host' => 'www.resource.server.5.test.com',
|
|
'ips' => '10.0.0.8',
|
|
'friendly_name' => 'Resource Server 5',
|
|
'active' => true,
|
|
);
|
|
|
|
$response = $this->action("POST", "Api\\ApiResourceServerController@create", $parameters = $data,
|
|
array(),
|
|
array(),
|
|
array());
|
|
|
|
$content = $response->getContent();
|
|
|
|
$json_response = json_decode($content);
|
|
|
|
$new_id = $json_response->resource_server_id;
|
|
|
|
$data_update = array(
|
|
'id' => $new_id,
|
|
'host' => 'www.resource.server.5.test.com',
|
|
'ips' => '127.0.0.2',
|
|
'friendly_name' => 'Resource Server 6',
|
|
);
|
|
|
|
$response = $this->action("PUT", "Api\\ApiResourceServerController@update", $parameters = $data_update, array(),
|
|
array(),
|
|
array());
|
|
|
|
$content = $response->getContent();
|
|
|
|
$json_response = json_decode($content);
|
|
|
|
$this->assertResponseStatus(200);
|
|
|
|
$response = $this->action("GET", "Api\\ApiResourceServerController@get", $parameters = array('id' => $new_id),
|
|
array(),
|
|
array(),
|
|
array());
|
|
|
|
$content = $response->getContent();
|
|
|
|
$updated_values = json_decode($content);
|
|
|
|
$this->assertTrue($updated_values->ips === '127.0.0.2');
|
|
$this->assertTrue($updated_values->friendly_name === 'Resource Server 6');
|
|
$this->assertResponseStatus(200);
|
|
}
|
|
|
|
public function testUpdateStatus()
|
|
{
|
|
|
|
$data = array(
|
|
'host' => 'www.resource.server.7.test.com',
|
|
'ips' => '127.0.0.8',
|
|
'friendly_name' => 'Resource Server 7',
|
|
'active' => true,
|
|
);
|
|
|
|
$response = $this->action("POST", "Api\\ApiResourceServerController@create", $data);
|
|
$this->assertResponseStatus(201);
|
|
$content = $response->getContent();
|
|
$json_response = json_decode($content);
|
|
$new_id = $json_response->resource_server_id;
|
|
$response = $this->action("DELETE", "Api\\ApiResourceServerController@deactivate", array('id' => $new_id));
|
|
$this->assertResponseStatus(200);
|
|
$content = $response->getContent();
|
|
$json_response = json_decode($content);
|
|
$this->assertTrue($json_response === 'ok');
|
|
$response = $this->action("GET", "Api\\ApiResourceServerController@get", $parameters = array('id' => $new_id));
|
|
$this->assertResponseStatus(200);
|
|
$content = $response->getContent();
|
|
$updated_values = json_decode($content);
|
|
$this->assertTrue($updated_values->active === false);
|
|
}
|
|
|
|
} |