TokenHandlerTest.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Björn Schießle <bjoern@schiessle.org>
  6. * @author Roeland Jago Douma <roeland@famdouma.nl>
  7. *
  8. * @license AGPL-3.0
  9. *
  10. * This code is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License, version 3,
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License, version 3,
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>
  21. *
  22. */
  23. namespace OCA\FederatedFileSharing\Tests;
  24. use OCA\FederatedFileSharing\TokenHandler;
  25. use OCP\Security\ISecureRandom;
  26. class TokenHandlerTest extends \Test\TestCase {
  27. /** @var TokenHandler */
  28. private $tokenHandler;
  29. /** @var ISecureRandom | \PHPUnit_Framework_MockObject_MockObject */
  30. private $secureRandom;
  31. /** @var int */
  32. private $expectedTokenLength = 15;
  33. public function setUp() {
  34. parent::setUp();
  35. $this->secureRandom = $this->getMockBuilder('OCP\Security\ISecureRandom')->getMock();
  36. $this->tokenHandler = new TokenHandler($this->secureRandom);
  37. }
  38. public function testGenerateToken() {
  39. $this->secureRandom->expects($this->once())->method('generate')
  40. ->with(
  41. $this->expectedTokenLength,
  42. ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_UPPER . ISecureRandom::CHAR_DIGITS
  43. )
  44. ->willReturn(true);
  45. $this->assertTrue($this->tokenHandler->generateToken());
  46. }
  47. }