aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Federation
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-06-26 10:40:31 +0200
committerJoas Schilling <coding@schilljs.com>2024-06-27 11:26:08 +0200
commit280d70a5f42309b28df0baf675893abed2a391a2 (patch)
treed13cfa72cc6958f85eea11322cfa9c89d164b7d2 /tests/lib/Federation
parent5dcb807a98a9863f7d730c3f190e85311eda512b (diff)
downloadnextcloud-server-280d70a5f42309b28df0baf675893abed2a391a2.tar.gz
nextcloud-server-280d70a5f42309b28df0baf675893abed2a391a2.zip
fix(federation): Fix missing protocol on CloudID remote
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/lib/Federation')
-rw-r--r--tests/lib/Federation/CloudIdManagerTest.php24
1 files changed, 8 insertions, 16 deletions
diff --git a/tests/lib/Federation/CloudIdManagerTest.php b/tests/lib/Federation/CloudIdManagerTest.php
index 40477944019..13e6b111864 100644
--- a/tests/lib/Federation/CloudIdManagerTest.php
+++ b/tests/lib/Federation/CloudIdManagerTest.php
@@ -48,7 +48,7 @@ class CloudIdManagerTest extends TestCase {
);
}
- public function cloudIdProvider() {
+ public function cloudIdProvider(): array {
return [
['test@example.com', 'test', 'example.com', 'test@example.com'],
['test@example.com/cloud', 'test', 'example.com/cloud', 'test@example.com/cloud'],
@@ -60,12 +60,8 @@ class CloudIdManagerTest extends TestCase {
/**
* @dataProvider cloudIdProvider
- *
- * @param string $cloudId
- * @param string $user
- * @param string $remote
*/
- public function testResolveCloudId($cloudId, $user, $remote, $cleanId) {
+ public function testResolveCloudId(string $cloudId, string $user, string $noProtocolRemote, string $cleanId): void {
$displayName = 'Ample Ex';
$this->contactsManager->expects($this->any())
@@ -81,12 +77,12 @@ class CloudIdManagerTest extends TestCase {
$cloudId = $this->cloudIdManager->resolveCloudId($cloudId);
$this->assertEquals($user, $cloudId->getUser());
- $this->assertEquals($remote, $cloudId->getRemote());
+ $this->assertEquals('https://' . $noProtocolRemote, $cloudId->getRemote());
$this->assertEquals($cleanId, $cloudId->getId());
- $this->assertEquals($displayName . '@' . $remote, $cloudId->getDisplayId());
+ $this->assertEquals($displayName . '@' . $noProtocolRemote, $cloudId->getDisplayId());
}
- public function invalidCloudIdProvider() {
+ public function invalidCloudIdProvider(): array {
return [
['example.com'],
['test:foo@example.com'],
@@ -100,7 +96,7 @@ class CloudIdManagerTest extends TestCase {
* @param string $cloudId
*
*/
- public function testInvalidCloudId($cloudId) {
+ public function testInvalidCloudId(string $cloudId): void {
$this->expectException(\InvalidArgumentException::class);
$this->contactsManager->expects($this->never())
@@ -111,10 +107,10 @@ class CloudIdManagerTest extends TestCase {
public function getCloudIdProvider(): array {
return [
- ['test', 'example.com', 'test@example.com'],
+ ['test', 'example.com', 'test@example.com', null, 'https://example.com', 'https://example.com'],
['test', 'http://example.com', 'test@http://example.com', 'test@example.com'],
['test', null, 'test@http://example.com', 'test@example.com', 'http://example.com', 'http://example.com'],
- ['test@example.com', 'example.com', 'test@example.com@example.com'],
+ ['test@example.com', 'example.com', 'test@example.com@example.com', null, 'https://example.com', 'https://example.com'],
['test@example.com', 'https://example.com', 'test@example.com@example.com'],
['test@example.com', null, 'test@example.com@example.com', null, 'https://example.com', 'https://example.com'],
['test@example.com', 'https://example.com/index.php/s/shareToken', 'test@example.com@example.com', null, 'https://example.com', 'https://example.com'],
@@ -123,10 +119,6 @@ class CloudIdManagerTest extends TestCase {
/**
* @dataProvider getCloudIdProvider
- *
- * @param string $user
- * @param null|string $remote
- * @param string $id
*/
public function testGetCloudId(string $user, ?string $remote, string $id, ?string $searchCloudId = null, ?string $localHost = 'https://example.com', ?string $expectedRemoteId = null): void {
if ($remote !== null) {