2019-03-25 12:31:49 +00:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse\TestCase\REST\Fever;
|
|
|
|
|
|
|
|
use JKingWeb\Arsse\Arsse;
|
|
|
|
use JKingWeb\Arsse\User;
|
|
|
|
use JKingWeb\Arsse\Database;
|
|
|
|
use JKingWeb\Arsse\Db\ExceptionInput;
|
2020-11-15 21:24:26 +00:00
|
|
|
use JKingWeb\Arsse\User\ExceptionConflict as UserException;
|
2019-03-25 12:31:49 +00:00
|
|
|
use JKingWeb\Arsse\Db\Transaction;
|
|
|
|
use JKingWeb\Arsse\REST\Fever\User as FeverUser;
|
|
|
|
|
|
|
|
/** @covers \JKingWeb\Arsse\REST\Fever\User<extended> */
|
|
|
|
class TestUser extends \JKingWeb\Arsse\Test\AbstractTest {
|
|
|
|
protected $u;
|
|
|
|
|
2019-10-16 18:42:43 +00:00
|
|
|
public function setUp(): void {
|
2019-03-25 12:31:49 +00:00
|
|
|
self::clearData();
|
|
|
|
self::setConf();
|
|
|
|
// create a mock user manager
|
|
|
|
Arsse::$user = \Phake::mock(User::class);
|
|
|
|
\Phake::when(Arsse::$user)->auth->thenReturn(true);
|
|
|
|
// create a mock database interface
|
|
|
|
Arsse::$db = \Phake::mock(Database::class);
|
|
|
|
\Phake::when(Arsse::$db)->begin->thenReturn(\Phake::mock(Transaction::class));
|
|
|
|
// instantiate the handler
|
|
|
|
$this->u = new FeverUser();
|
|
|
|
}
|
|
|
|
|
2019-10-16 18:42:43 +00:00
|
|
|
public function tearDown(): void {
|
2019-03-25 12:31:49 +00:00
|
|
|
self::clearData();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @dataProvider providePasswordCreations */
|
2020-01-20 18:52:48 +00:00
|
|
|
public function testRegisterAUserPassword(string $user, string $password = null, $exp): void {
|
2019-03-25 12:31:49 +00:00
|
|
|
\Phake::when(Arsse::$user)->generatePassword->thenReturn("RANDOM_PASSWORD");
|
|
|
|
\Phake::when(Arsse::$db)->tokenCreate->thenReturnCallback(function($user, $class, $id = null) {
|
|
|
|
return $id ?? "RANDOM_TOKEN";
|
|
|
|
});
|
|
|
|
\Phake::when(Arsse::$db)->tokenCreate("john.doe@example.org", $this->anything(), $this->anything())->thenThrow(new UserException("doesNotExist"));
|
|
|
|
try {
|
|
|
|
if ($exp instanceof \JKingWeb\Arsse\AbstractException) {
|
|
|
|
$this->assertException($exp);
|
|
|
|
$this->u->register($user, $password);
|
|
|
|
} else {
|
|
|
|
$this->assertSame($exp, $this->u->register($user, $password));
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
\Phake::verify(Arsse::$db)->tokenRevoke($user, "fever.login");
|
|
|
|
\Phake::verify(Arsse::$db)->tokenCreate($user, "fever.login", md5($user.":".($password ?? "RANDOM_PASSWORD")));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-16 18:42:43 +00:00
|
|
|
public function providePasswordCreations(): iterable {
|
2019-03-25 12:31:49 +00:00
|
|
|
return [
|
|
|
|
["jane.doe@example.com", "secret", "secret"],
|
|
|
|
["jane.doe@example.com", "superman", "superman"],
|
|
|
|
["jane.doe@example.com", null, "RANDOM_PASSWORD"],
|
|
|
|
["john.doe@example.org", null, new UserException("doesNotExist")],
|
|
|
|
["john.doe@example.net", null, "RANDOM_PASSWORD"],
|
|
|
|
["john.doe@example.net", "secret", "secret"],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2020-01-20 18:52:48 +00:00
|
|
|
public function testUnregisterAUser(): void {
|
2019-03-25 12:31:49 +00:00
|
|
|
\Phake::when(Arsse::$db)->tokenRevoke->thenReturn(3);
|
|
|
|
$this->assertTrue($this->u->unregister("jane.doe@example.com"));
|
|
|
|
\Phake::verify(Arsse::$db)->tokenRevoke("jane.doe@example.com", "fever.login");
|
|
|
|
\Phake::when(Arsse::$db)->tokenRevoke->thenReturn(0);
|
|
|
|
$this->assertFalse($this->u->unregister("john.doe@example.com"));
|
|
|
|
\Phake::verify(Arsse::$db)->tokenRevoke("john.doe@example.com", "fever.login");
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @dataProvider provideUserAuthenticationRequests */
|
2020-01-20 18:52:48 +00:00
|
|
|
public function testAuthenticateAUserName(string $user, string $password, bool $exp): void {
|
2019-03-25 12:31:49 +00:00
|
|
|
\Phake::when(Arsse::$db)->tokenLookup->thenThrow(new ExceptionInput("constraintViolation"));
|
|
|
|
\Phake::when(Arsse::$db)->tokenLookup("fever.login", md5("jane.doe@example.com:secret"))->thenReturn(['user' => "jane.doe@example.com"]);
|
|
|
|
\Phake::when(Arsse::$db)->tokenLookup("fever.login", md5("john.doe@example.com:superman"))->thenReturn(['user' => "john.doe@example.com"]);
|
|
|
|
$this->assertSame($exp, $this->u->authenticate($user, $password));
|
|
|
|
}
|
|
|
|
|
2019-10-16 18:42:43 +00:00
|
|
|
public function provideUserAuthenticationRequests(): iterable {
|
2019-03-25 12:31:49 +00:00
|
|
|
return [
|
|
|
|
["jane.doe@example.com", "secret", true],
|
|
|
|
["jane.doe@example.com", "superman", false],
|
|
|
|
["john.doe@example.com", "secret", false],
|
|
|
|
["john.doe@example.com", "superman", true],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|