Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

PersonalMountTest.php 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  6. * @author Joas Schilling <coding@schilljs.com>
  7. * @author Robin Appelman <robin@icewind.nl>
  8. *
  9. * @license AGPL-3.0
  10. *
  11. * This code is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU Affero General Public License, version 3,
  13. * as published by the Free Software Foundation.
  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, version 3,
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>
  22. *
  23. */
  24. namespace OCA\Files_External\Tests;
  25. use OC\Files\Mount\Manager;
  26. use OCA\Files_External\Lib\PersonalMount;
  27. use Test\TestCase;
  28. class PersonalMountTest extends TestCase {
  29. public function testFindByStorageId() {
  30. /** @var \OCA\Files_External\Service\UserStoragesService $storageService */
  31. $storageService = $this->getMockBuilder('\OCA\Files_External\Service\UserStoragesService')
  32. ->disableOriginalConstructor()
  33. ->getMock();
  34. $storage = $this->getMockBuilder('\OC\Files\Storage\Storage')
  35. ->disableOriginalConstructor()
  36. ->getMock();
  37. $storage->expects($this->any())
  38. ->method('getId')
  39. ->willReturn('dummy');
  40. $mount = new PersonalMount($storageService, 10, $storage, '/foo');
  41. $mountManager = new Manager();
  42. $mountManager->addMount($mount);
  43. $this->assertEquals([$mount], $mountManager->findByStorageId('dummy'));
  44. }
  45. }