openstackid/tests/ApiScopeTest.php

129 lines
3.3 KiB
PHP

<?php
use Models\OAuth2\ApiScope;
use Models\OAuth2\Api;
/**
* Class ApiScopeTest
*/
class ApiScopeTest extends TestCase {
private $current_realm;
protected function prepareForTests()
{
parent::prepareForTests();
$this->withoutMiddleware();
$this->current_realm = Config::get('app.url');
}
/**
* testGetById
* @covers get scope api by id
*/
public function testGetById(){
$scope = ApiScope::where('name','=', sprintf('%s/api-scope/read',$this->current_realm))->first();
$this->assertTrue(!is_null($scope));
$response = $this->action("GET", "Api\ApiScopeController@get",
$parameters = array('id' => $scope->id),
array(),
array(),
array());
$content = $response->getContent();
$response_scope = json_decode($content);
$this->assertResponseStatus(200);
$this->assertTrue($response_scope->id === $scope->id);
}
/**
* testGetByPage
* @covers get api scopes by list (paginated)
*/
public function testGetByPage(){
$response = $this->action("GET", "Api\ApiScopeController@getByPage",
$parameters = array('offset' => 1,'limit'=>10),
array(),
array(),
array());
$content = $response->getContent();
$list = json_decode($content);
$this->assertTrue(isset($list->total_items) && intval($list->total_items)>0);
$this->assertResponseStatus(200);
}
/**
* testCreate
* @covers create a new api scope
*/
public function testCreate(){
$api = Api::where('name','=','api-endpoint')->first();
$this->assertTrue(!is_null($api));
$data = array(
'name' => 'https://test-scope/read.only',
'description' => 'test scope.',
'short_description' => 'test scope.',
'active' => true,
'system' => true,
'default' => true,
'api_id' => $api->id,
'assigned_by_groups' => false,
);
$response = $this->action("POST", "Api\ApiScopeController@create",
$data,
array(),
array(),
array());
$content = $response->getContent();
$json_response = json_decode($content);
$this->assertResponseStatus(201);
$this->assertTrue(isset($json_response->scope_id) && !empty($json_response->scope_id));
}
/**
* testDeleteExisting
* @covers deletes an existing api scope
*/
public function testDeleteExisting(){
$scope = ApiScope::where('name','=', sprintf('%s/api-scope/read',$this->current_realm))->first();
$this->assertTrue(!is_null($scope));
$id = $scope->id;
$response = $this->action("DELETE", "Api\ApiScopeController@delete",$parameters = array('id' => $id),
array(),
array(),
array());
$this->assertResponseStatus(204);
}
/**
* testUpdate
* @covers updates an existing scope
*/
public function testUpdate(){
}
/**
* testUpdateStatus
* @covers updates status of an existing scope
*/
public function testUpdateStatus(){
}
}