AddressHandlerTest.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Bjoern Schiessle <bjoern@schiessle.org>
  6. * @author Björn Schießle <bjoern@schiessle.org>
  7. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  8. * @author Morris Jobke <hey@morrisjobke.de>
  9. * @author Robin Appelman <robin@icewind.nl>
  10. * @author Roeland Jago Douma <roeland@famdouma.nl>
  11. *
  12. * @license AGPL-3.0
  13. *
  14. * This code is free software: you can redistribute it and/or modify
  15. * it under the terms of the GNU Affero General Public License, version 3,
  16. * as published by the Free Software Foundation.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU Affero General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Affero General Public License, version 3,
  24. * along with this program. If not, see <http://www.gnu.org/licenses/>
  25. *
  26. */
  27. namespace OCA\FederatedFileSharing\Tests;
  28. use OC\Federation\CloudIdManager;
  29. use OCA\FederatedFileSharing\AddressHandler;
  30. use OCP\IL10N;
  31. use OCP\IURLGenerator;
  32. class AddressHandlerTest extends \Test\TestCase {
  33. /** @var AddressHandler */
  34. private $addressHandler;
  35. /** @var IURLGenerator | \PHPUnit_Framework_MockObject_MockObject */
  36. private $urlGenerator;
  37. /** @var IL10N | \PHPUnit_Framework_MockObject_MockObject */
  38. private $il10n;
  39. /** @var CloudIdManager */
  40. private $cloudIdManager;
  41. protected function setUp(): void {
  42. parent::setUp();
  43. $this->urlGenerator = $this->getMockBuilder(IURLGenerator::class)
  44. ->getMock();
  45. $this->il10n = $this->getMockBuilder(IL10N::class)
  46. ->getMock();
  47. $this->cloudIdManager = new CloudIdManager();
  48. $this->addressHandler = new AddressHandler($this->urlGenerator, $this->il10n, $this->cloudIdManager);
  49. }
  50. public function dataTestSplitUserRemote() {
  51. $userPrefix = ['user@name', 'username'];
  52. $protocols = ['', 'http://', 'https://'];
  53. $remotes = [
  54. 'localhost',
  55. 'local.host',
  56. 'dev.local.host',
  57. 'dev.local.host/path',
  58. 'dev.local.host/at@inpath',
  59. '127.0.0.1',
  60. '::1',
  61. '::192.0.2.128',
  62. '::192.0.2.128/at@inpath',
  63. ];
  64. $testCases = [];
  65. foreach ($userPrefix as $user) {
  66. foreach ($remotes as $remote) {
  67. foreach ($protocols as $protocol) {
  68. $baseUrl = $user . '@' . $protocol . $remote;
  69. $testCases[] = [$baseUrl, $user, $protocol . $remote];
  70. $testCases[] = [$baseUrl . '/', $user, $protocol . $remote];
  71. $testCases[] = [$baseUrl . '/index.php', $user, $protocol . $remote];
  72. $testCases[] = [$baseUrl . '/index.php/s/token', $user, $protocol . $remote];
  73. }
  74. }
  75. }
  76. return $testCases;
  77. }
  78. /**
  79. * @dataProvider dataTestSplitUserRemote
  80. *
  81. * @param string $remote
  82. * @param string $expectedUser
  83. * @param string $expectedUrl
  84. */
  85. public function testSplitUserRemote($remote, $expectedUser, $expectedUrl) {
  86. list($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(\OC\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. }