1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 09:02:41 +00:00
Arsse/tests/cases/REST/Miniflux/TestToken.php

72 lines
2.5 KiB
PHP
Raw Normal View History

2021-02-11 02:40:51 +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\Miniflux;
use JKingWeb\Arsse\Arsse;
use JKingWeb\Arsse\Database;
use JKingWeb\Arsse\Db\Transaction;
use JKingWeb\Arsse\REST\Miniflux\Token;
use JKingWeb\Arsse\Test\Result;
/** @covers \JKingWeb\Arsse\REST\Miniflux\Token<extended> */
class TestToken extends \JKingWeb\Arsse\Test\AbstractTest {
protected const NOW = "2020-12-09T22:35:10.023419Z";
protected const TOKEN = "Tk2o9YubmZIL2fm2w8Z4KlDEQJz532fNSOcTG0s2_xc=";
protected $transaction;
public function setUp(): void {
2021-02-27 20:24:02 +00:00
parent::setUp();
2021-02-11 02:40:51 +00:00
self::setConf();
// create a mock database interface
2021-03-01 23:01:25 +00:00
$this->dbMock = $this->mock(Database::class);
$this->transaction = $this->mock(Transaction::class);
$this->dbMock->begin->returns($this->transaction);
}
protected function prepTest(): Token {
Arsse::$db = $this->dbMock->get();
// instantiate the handler
return new Token;
2021-02-11 02:40:51 +00:00
}
protected function v($value) {
return $value;
}
public function testGenerateTokens(): void {
2021-03-01 23:01:25 +00:00
$this->dbMock->tokenCreate->returns("RANDOM TOKEN");
$this->assertSame("RANDOM TOKEN", $this->prepTest()->tokenGenerate("ook", "Eek"));
$this->dbMock->tokenCreate->calledWith("ook", "miniflux.login", "~", null, "Eek");
$token = $this->dbMock->tokenCreate->firstCall()->argument(2);
2021-03-01 23:20:50 +00:00
$this->assertMatchesRegularExpression("/^[A-Za-z0-9_\-]{43}=$/", $token);
2021-02-11 02:40:51 +00:00
}
public function testListTheTokensOfAUser(): void {
$out = [
['id' => "TOKEN 1", 'data' => "Ook"],
['id' => "TOKEN 2", 'data' => "Eek"],
['id' => "TOKEN 3", 'data' => "Ack"],
];
$exp = [
['label' => "Ook", 'id' => "TOKEN 1"],
['label' => "Eek", 'id' => "TOKEN 2"],
['label' => "Ack", 'id' => "TOKEN 3"],
];
2021-03-01 23:01:25 +00:00
$this->dbMock->tokenList->returns(new Result($this->v($out)));
$this->dbMock->userExists->returns(true);
$this->assertSame($exp, $this->prepTest()->tokenList("john.doe@example.com"));
$this->dbMock->tokenList->calledWith("john.doe@example.com", "miniflux.login");
2021-02-11 02:40:51 +00:00
}
public function testListTheTokensOfAMissingUser(): void {
2021-03-01 23:01:25 +00:00
$this->dbMock->userExists->returns(false);
2021-02-11 02:40:51 +00:00
$this->assertException("doesNotExist", "User", "ExceptionConflict");
2021-03-01 23:01:25 +00:00
$this->prepTest()->tokenList("john.doe@example.com");
2021-02-11 02:40:51 +00:00
}
}