69 lines
2.1 KiB
PHP
69 lines
2.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; under version 2
|
|
* of the License (non-upgradable).
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* Copyright (c) 2013 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
|
|
*
|
|
*
|
|
*/
|
|
|
|
use oat\tao\model\oauth\DataStore as OAuthDataStore;
|
|
use oat\tao\test\TaoPhpUnitTestRunner;
|
|
|
|
include_once dirname(__FILE__) . '/../../includes/raw_start.php';
|
|
|
|
/**
|
|
* @author Joel Bout, <joel@taotesting.com>
|
|
* @package taoLti
|
|
|
|
*/
|
|
class OauthTestCase extends TaoPhpUnitTestRunner
|
|
{
|
|
|
|
private $oauthCustomer;
|
|
|
|
/**
|
|
* tests initialization
|
|
*/
|
|
public function setUp(): void
|
|
{
|
|
TaoPhpUnitTestRunner::initTest();
|
|
$oauthClass = new core_kernel_classes_Class(OAuthDataStore::CLASS_URI_OAUTH_CONSUMER);
|
|
$resource = $oauthClass->createInstanceWithProperties([
|
|
OAuthDataStore::PROPERTY_OAUTH_KEY => 'test_key',
|
|
OAuthDataStore::PROPERTY_OAUTH_SECRET => md5(rand()),
|
|
]);
|
|
$this->oauthCustomer = new tao_models_classes_oauth_Credentials($resource);
|
|
}
|
|
|
|
public function tearDown(): void
|
|
{
|
|
$this->oauthCustomer->delete();
|
|
}
|
|
|
|
/**
|
|
* @doesNotPerformAssertions
|
|
*/
|
|
public function testSignature()
|
|
{
|
|
$request = new common_http_Request('http://example.com/oauthtest');
|
|
$service = new tao_models_classes_oauth_Service();
|
|
$signed = $service->sign($request, $this->oauthCustomer);
|
|
//assert no exception
|
|
$service->validate($signed);
|
|
}
|
|
}
|