AccessTokenMapperTest.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch>
  4. *
  5. * @author Lukas Reschke <lukas@statuscode.ch>
  6. * @author Roeland Jago Douma <roeland@famdouma.nl>
  7. *
  8. * @license GNU AGPL version 3 or any later version
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. namespace OCA\OAuth2\Tests\Db;
  25. use OCA\OAuth2\Db\AccessToken;
  26. use OCA\OAuth2\Db\AccessTokenMapper;
  27. use Test\TestCase;
  28. /**
  29. * @group DB
  30. */
  31. class AccessTokenMapperTest extends TestCase {
  32. /** @var AccessTokenMapper */
  33. private $accessTokenMapper;
  34. protected function setUp(): void {
  35. parent::setUp();
  36. $this->accessTokenMapper = new AccessTokenMapper(\OC::$server->getDatabaseConnection());
  37. }
  38. public function testGetByCode() {
  39. $this->accessTokenMapper->deleteByClientId(1234);
  40. $token = new AccessToken();
  41. $token->setClientId(1234);
  42. $token->setTokenId((string)time());
  43. $token->setEncryptedToken('MyEncryptedToken');
  44. $token->setHashedCode(hash('sha512', 'MyAwesomeToken'));
  45. $this->accessTokenMapper->insert($token);
  46. $token->resetUpdatedFields();
  47. $result = $this->accessTokenMapper->getByCode('MyAwesomeToken');
  48. $this->assertEquals($token, $result);
  49. $this->accessTokenMapper->delete($token);
  50. }
  51. public function testDeleteByClientId() {
  52. $this->expectException(\OCA\OAuth2\Exceptions\AccessTokenNotFoundException::class);
  53. $this->accessTokenMapper->deleteByClientId(1234);
  54. $token = new AccessToken();
  55. $token->setClientId(1234);
  56. $token->setTokenId((string)time());
  57. $token->setEncryptedToken('MyEncryptedToken');
  58. $token->setHashedCode(hash('sha512', 'MyAwesomeToken'));
  59. $this->accessTokenMapper->insert($token);
  60. $token->resetUpdatedFields();
  61. $this->accessTokenMapper->deleteByClientId(1234);
  62. $this->accessTokenMapper->getByCode('MyAwesomeToken');
  63. }
  64. }