CredentialsManagerTest.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. /**
  24. * @group DB
  25. */
  26. class CredentialsManagerTest extends \Test\TestCase {
  27. /**
  28. * @dataProvider credentialsProvider
  29. */
  30. public function testWithDB($userId, $identifier) {
  31. $credentialsManager = \OC::$server->getCredentialsManager();
  32. $secrets = 'Open Sesame';
  33. $credentialsManager->store($userId, $identifier, $secrets);
  34. $received = $credentialsManager->retrieve($userId, $identifier);
  35. $this->assertSame($secrets, $received);
  36. $removedRows = $credentialsManager->delete($userId, $identifier);
  37. $this->assertSame(1, $removedRows);
  38. }
  39. public function credentialsProvider() {
  40. return [
  41. [
  42. 'alice',
  43. 'privateCredentials'
  44. ],
  45. [
  46. '',
  47. 'systemCredentials',
  48. ],
  49. ];
  50. }
  51. }