0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-04-29 11:30:33 +00:00
nextcloud_server/tests/lib/AppFramework/Http/RequestIdTest.php
Joas Schilling 522be60ff0
fix(phpunit): Remove some more withConsecutive calls
Signed-off-by: Joas Schilling <coding@schilljs.com>
2025-03-31 09:43:22 +02:00

57 lines
1.4 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace Test\AppFramework\Http;
use OC\AppFramework\Http\RequestId;
use OCP\Security\ISecureRandom;
use PHPUnit\Framework\MockObject\MockObject;
/**
* Class RequestIdTest
*
* @package OC\AppFramework\Http
*/
class RequestIdTest extends \Test\TestCase {
/** @var ISecureRandom|MockObject */
protected $secureRandom;
protected function setUp(): void {
parent::setUp();
$this->secureRandom = $this->createMock(ISecureRandom::class);
}
public function testGetIdWithModUnique(): void {
$requestId = new RequestId(
'GeneratedUniqueIdByModUnique',
$this->secureRandom
);
$this->secureRandom->expects($this->never())
->method('generate');
$this->assertSame('GeneratedUniqueIdByModUnique', $requestId->getId());
$this->assertSame('GeneratedUniqueIdByModUnique', $requestId->getId());
}
public function testGetIdWithoutModUnique(): void {
$requestId = new RequestId(
'',
$this->secureRandom
);
$this->secureRandom->expects($this->once())
->method('generate')
->with('20')
->willReturn('GeneratedByNextcloudItself1');
$this->assertSame('GeneratedByNextcloudItself1', $requestId->getId());
$this->assertSame('GeneratedByNextcloudItself1', $requestId->getId());
}
}