You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AddressHandlerTest.php 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OCA\FederatedFileSharing\Tests;
  8. use OC\Federation\CloudIdManager;
  9. use OCA\FederatedFileSharing\AddressHandler;
  10. use OCP\Contacts\IManager;
  11. use OCP\EventDispatcher\IEventDispatcher;
  12. use OCP\ICacheFactory;
  13. use OCP\IL10N;
  14. use OCP\IURLGenerator;
  15. use OCP\IUserManager;
  16. class AddressHandlerTest extends \Test\TestCase {
  17. /** @var IManager|\PHPUnit\Framework\MockObject\MockObject */
  18. protected $contactsManager;
  19. /** @var AddressHandler */
  20. private $addressHandler;
  21. /** @var IURLGenerator | \PHPUnit\Framework\MockObject\MockObject */
  22. private $urlGenerator;
  23. /** @var IL10N | \PHPUnit\Framework\MockObject\MockObject */
  24. private $il10n;
  25. /** @var CloudIdManager */
  26. private $cloudIdManager;
  27. protected function setUp(): void {
  28. parent::setUp();
  29. $this->urlGenerator = $this->getMockBuilder(IURLGenerator::class)
  30. ->getMock();
  31. $this->il10n = $this->getMockBuilder(IL10N::class)
  32. ->getMock();
  33. $this->contactsManager = $this->createMock(IManager::class);
  34. $this->cloudIdManager = new CloudIdManager(
  35. $this->contactsManager,
  36. $this->urlGenerator,
  37. $this->createMock(IUserManager::class),
  38. $this->createMock(ICacheFactory::class),
  39. $this->createMock(IEventDispatcher::class)
  40. );
  41. $this->addressHandler = new AddressHandler($this->urlGenerator, $this->il10n, $this->cloudIdManager);
  42. }
  43. public function dataTestSplitUserRemote() {
  44. $userPrefix = ['user@name', 'username'];
  45. $protocols = ['', 'http://', 'https://'];
  46. $remotes = [
  47. 'localhost',
  48. 'local.host',
  49. 'dev.local.host',
  50. 'dev.local.host/path',
  51. 'dev.local.host/at@inpath',
  52. '127.0.0.1',
  53. '::1',
  54. '::192.0.2.128',
  55. '::192.0.2.128/at@inpath',
  56. ];
  57. $testCases = [];
  58. foreach ($userPrefix as $user) {
  59. foreach ($remotes as $remote) {
  60. foreach ($protocols as $protocol) {
  61. $baseUrl = $user . '@' . $protocol . $remote;
  62. if ($protocol === '') {
  63. // https:// protocol is expected in the final result
  64. $protocol = 'https://';
  65. }
  66. $testCases[] = [$baseUrl, $user, $protocol . $remote];
  67. $testCases[] = [$baseUrl . '/', $user, $protocol . $remote];
  68. $testCases[] = [$baseUrl . '/index.php', $user, $protocol . $remote];
  69. $testCases[] = [$baseUrl . '/index.php/s/token', $user, $protocol . $remote];
  70. }
  71. }
  72. }
  73. return $testCases;
  74. }
  75. /**
  76. * @dataProvider dataTestSplitUserRemote
  77. *
  78. * @param string $remote
  79. * @param string $expectedUser
  80. * @param string $expectedUrl
  81. */
  82. public function testSplitUserRemote($remote, $expectedUser, $expectedUrl) {
  83. $this->contactsManager->expects($this->any())
  84. ->method('search')
  85. ->willReturn([]);
  86. [$remoteUser, $remoteUrl] = $this->addressHandler->splitUserRemote($remote);
  87. $this->assertSame($expectedUser, $remoteUser);
  88. $this->assertSame($expectedUrl, $remoteUrl);
  89. }
  90. public function dataTestSplitUserRemoteError() {
  91. return [
  92. // Invalid path
  93. ['user@'],
  94. // Invalid user
  95. ['@server'],
  96. ['us/er@server'],
  97. ['us:er@server'],
  98. // Invalid splitting
  99. ['user'],
  100. [''],
  101. ['us/erserver'],
  102. ['us:erserver'],
  103. ];
  104. }
  105. /**
  106. * @dataProvider dataTestSplitUserRemoteError
  107. *
  108. * @param string $id
  109. */
  110. public function testSplitUserRemoteError($id) {
  111. $this->expectException(\OCP\HintException::class);
  112. $this->addressHandler->splitUserRemote($id);
  113. }
  114. /**
  115. * @dataProvider dataTestCompareAddresses
  116. *
  117. * @param string $user1
  118. * @param string $server1
  119. * @param string $user2
  120. * @param string $server2
  121. * @param bool $expected
  122. */
  123. public function testCompareAddresses($user1, $server1, $user2, $server2, $expected) {
  124. $this->assertSame($expected,
  125. $this->addressHandler->compareAddresses($user1, $server1, $user2, $server2)
  126. );
  127. }
  128. public function dataTestCompareAddresses() {
  129. return [
  130. ['user1', 'http://server1', 'user1', 'http://server1', true],
  131. ['user1', 'https://server1', 'user1', 'http://server1', true],
  132. ['user1', 'http://serVer1', 'user1', 'http://server1', true],
  133. ['user1', 'http://server1/', 'user1', 'http://server1', true],
  134. ['user1', 'server1', 'user1', 'http://server1', true],
  135. ['user1', 'http://server1', 'user1', 'http://server2', false],
  136. ['user1', 'https://server1', 'user1', 'http://server2', false],
  137. ['user1', 'http://serVer1', 'user1', 'http://serer2', false],
  138. ['user1', 'http://server1/', 'user1', 'http://server2', false],
  139. ['user1', 'server1', 'user1', 'http://server2', false],
  140. ['user1', 'http://server1', 'user2', 'http://server1', false],
  141. ['user1', 'https://server1', 'user2', 'http://server1', false],
  142. ['user1', 'http://serVer1', 'user2', 'http://server1', false],
  143. ['user1', 'http://server1/', 'user2', 'http://server1', false],
  144. ['user1', 'server1', 'user2', 'http://server1', false],
  145. ];
  146. }
  147. /**
  148. * @dataProvider dataTestRemoveProtocolFromUrl
  149. *
  150. * @param string $url
  151. * @param string $expectedResult
  152. */
  153. public function testRemoveProtocolFromUrl($url, $expectedResult) {
  154. $result = $this->addressHandler->removeProtocolFromUrl($url);
  155. $this->assertSame($expectedResult, $result);
  156. }
  157. public function dataTestRemoveProtocolFromUrl() {
  158. return [
  159. ['http://owncloud.org', 'owncloud.org'],
  160. ['https://owncloud.org', 'owncloud.org'],
  161. ['owncloud.org', 'owncloud.org'],
  162. ];
  163. }
  164. /**
  165. * @dataProvider dataTestUrlContainProtocol
  166. *
  167. * @param string $url
  168. * @param bool $expectedResult
  169. */
  170. public function testUrlContainProtocol($url, $expectedResult) {
  171. $result = $this->addressHandler->urlContainProtocol($url);
  172. $this->assertSame($expectedResult, $result);
  173. }
  174. public function dataTestUrlContainProtocol() {
  175. return [
  176. ['http://nextcloud.com', true],
  177. ['https://nextcloud.com', true],
  178. ['nextcloud.com', false],
  179. ['httpserver.com', false],
  180. ];
  181. }
  182. }