2014-01-16 16:51:06 +00:00
|
|
|
<?php
|
|
|
|
|
2014-05-02 15:12:15 +01:00
|
|
|
namespace LeagueTests\Entity;
|
2014-01-16 16:51:06 +00:00
|
|
|
|
2014-05-02 15:12:15 +01:00
|
|
|
use League\OAuth2\Server\Entity\ClientEntity;
|
2014-01-16 16:51:06 +00:00
|
|
|
use \Mockery as M;
|
|
|
|
|
|
|
|
class ClientTest extends \PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
public function testSetGet()
|
|
|
|
{
|
|
|
|
$server = M::mock('League\OAuth2\Server\AbstractServer');
|
2014-05-02 17:21:53 +01:00
|
|
|
$client = new ClientEntity($server);
|
2014-01-16 16:51:06 +00:00
|
|
|
$client->setId('foobar');
|
|
|
|
$client->setSecret('barfoo');
|
|
|
|
$client->setName('Test Client');
|
|
|
|
$client->setRedirectUri('http://foo/bar');
|
|
|
|
|
|
|
|
$this->assertEquals('foobar', $client->getId());
|
|
|
|
$this->assertEquals('barfoo', $client->getSecret());
|
|
|
|
$this->assertEquals('Test Client', $client->getName());
|
|
|
|
$this->assertEquals('http://foo/bar', $client->getRedirectUri());
|
|
|
|
}
|
2014-05-03 10:55:25 +01:00
|
|
|
}
|