CredentialsManagerTest.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @author Robin McCorkell <rmccorkell@owncloud.com>
  5. *
  6. * @copyright Copyright (c) 2015, ownCloud, Inc.
  7. * @license AGPL-3.0
  8. *
  9. * This code is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License, version 3,
  11. * as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Affero General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License, version 3,
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>
  20. *
  21. */
  22. namespace Test\Security;
  23. use OCP\Security\ICredentialsManager;
  24. use OCP\Server;
  25. /**
  26. * @group DB
  27. */
  28. class CredentialsManagerTest extends \Test\TestCase {
  29. /**
  30. * @dataProvider credentialsProvider
  31. */
  32. public function testWithDB($userId, $identifier) {
  33. $credentialsManager = Server::get(ICredentialsManager::class);
  34. $secrets = 'Open Sesame';
  35. $credentialsManager->store($userId, $identifier, $secrets);
  36. $received = $credentialsManager->retrieve($userId, $identifier);
  37. $this->assertSame($secrets, $received);
  38. $removedRows = $credentialsManager->delete($userId, $identifier);
  39. $this->assertSame(1, $removedRows);
  40. }
  41. /**
  42. * @dataProvider credentialsProvider
  43. */
  44. public function testUpdate($userId, $identifier): void {
  45. $credentialsManager = Server::get(ICredentialsManager::class);
  46. $secrets = 'Open Sesame';
  47. $secretsRev = strrev($secrets);
  48. $credentialsManager->store($userId, $identifier, $secrets);
  49. $credentialsManager->store($userId, $identifier, $secretsRev);
  50. $received = $credentialsManager->retrieve($userId, $identifier);
  51. $this->assertSame($secretsRev, $received);
  52. }
  53. public function credentialsProvider(): array {
  54. return [
  55. [
  56. 'alice',
  57. 'privateCredentials'
  58. ],
  59. [
  60. '',
  61. 'systemCredentials',
  62. ],
  63. ];
  64. }
  65. }