90 lines
2.9 KiB
PHP
90 lines
2.9 KiB
PHP
<?php
|
|
|
|
require_once __DIR__.'/../Base.php';
|
|
|
|
use Kanboard\Auth\GoogleAuth;
|
|
use Kanboard\Model\User;
|
|
|
|
class GoogleAuthTest extends Base
|
|
{
|
|
public function testGetName()
|
|
{
|
|
$provider = new GoogleAuth($this->container);
|
|
$this->assertEquals('Google', $provider->getName());
|
|
}
|
|
|
|
public function testAuthenticationSuccessful()
|
|
{
|
|
$profile = array(
|
|
'id' => 1234,
|
|
'email' => 'test@localhost',
|
|
'name' => 'Test',
|
|
);
|
|
|
|
$provider = $this
|
|
->getMockBuilder('\Kanboard\Auth\GoogleAuth')
|
|
->setConstructorArgs(array($this->container))
|
|
->setMethods(array(
|
|
'getProfile',
|
|
))
|
|
->getMock();
|
|
|
|
$provider->expects($this->once())
|
|
->method('getProfile')
|
|
->will($this->returnValue($profile));
|
|
|
|
$this->assertInstanceOf('Kanboard\Auth\GoogleAuth', $provider->setCode('1234'));
|
|
|
|
$this->assertTrue($provider->authenticate());
|
|
|
|
$user = $provider->getUser();
|
|
$this->assertInstanceOf('Kanboard\User\GoogleUserProvider', $user);
|
|
$this->assertEquals('Test', $user->getName());
|
|
$this->assertEquals('', $user->getInternalId());
|
|
$this->assertEquals(1234, $user->getExternalId());
|
|
$this->assertEquals('', $user->getRole());
|
|
$this->assertEquals('', $user->getUsername());
|
|
$this->assertEquals('test@localhost', $user->getEmail());
|
|
$this->assertEquals('google_id', $user->getExternalIdColumn());
|
|
$this->assertEquals(array(), $user->getExternalGroupIds());
|
|
$this->assertEquals(array(), $user->getExtraAttributes());
|
|
$this->assertFalse($user->isUserCreationAllowed());
|
|
}
|
|
|
|
public function testAuthenticationFailed()
|
|
{
|
|
$provider = $this
|
|
->getMockBuilder('\Kanboard\Auth\GoogleAuth')
|
|
->setConstructorArgs(array($this->container))
|
|
->setMethods(array(
|
|
'getProfile',
|
|
))
|
|
->getMock();
|
|
|
|
$provider->expects($this->once())
|
|
->method('getProfile')
|
|
->will($this->returnValue(array()));
|
|
|
|
$this->assertFalse($provider->authenticate());
|
|
$this->assertEquals(null, $provider->getUser());
|
|
}
|
|
|
|
public function testGetService()
|
|
{
|
|
$provider = new GoogleAuth($this->container);
|
|
$this->assertInstanceOf('Kanboard\Core\Http\OAuth2', $provider->getService());
|
|
}
|
|
|
|
public function testUnlink()
|
|
{
|
|
$userModel = new User($this->container);
|
|
$provider = new GoogleAuth($this->container);
|
|
|
|
$this->assertEquals(2, $userModel->create(array('username' => 'test', 'google_id' => '1234')));
|
|
$this->assertNotEmpty($userModel->getByExternalId('google_id', 1234));
|
|
|
|
$this->assertTrue($provider->unlink(2));
|
|
$this->assertEmpty($userModel->getByExternalId('google_id', 1234));
|
|
}
|
|
}
|