summaryrefslogtreecommitdiffstats
path: root/tests/unit/Service/Social/TwitterProviderTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Service/Social/TwitterProviderTest.php')
-rw-r--r--tests/unit/Service/Social/TwitterProviderTest.php154
1 files changed, 154 insertions, 0 deletions
diff --git a/tests/unit/Service/Social/TwitterProviderTest.php b/tests/unit/Service/Social/TwitterProviderTest.php
new file mode 100644
index 00000000..55515b0f
--- /dev/null
+++ b/tests/unit/Service/Social/TwitterProviderTest.php
@@ -0,0 +1,154 @@
+<?php
+/**
+ * @copyright Copyright (c) 2020 Matthias Heinisch <nextcloud@matthiasheinisch.de>
+ *
+ * @author Matthias Heinisch <nextcloud@matthiasheinisch.de>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+
+namespace OCA\Contacts\Service\Social;
+
+use OCP\Http\Client\IClient;
+use OCP\Http\Client\IResponse;
+use OCP\Http\Client\IClientService;
+use ChristophWurst\Nextcloud\Testing\TestCase;
+use PHPUnit\Framework\MockObject\MockObject;
+
+class TwitterProviderTest extends TestCase {
+ private $provider;
+
+ /** @var IClientService|MockObject */
+ private $clientService;
+
+ /** @var IClient|MockObject */
+ private $client;
+
+ /** @var IResponse|MockObject */
+ private $response;
+
+ protected function setUp(): void {
+ parent::setUp();
+ $this->clientService = $this->createMock(IClientService::class);
+ $this->response = $this->createMock(IResponse::class);
+ $this->client = $this->createMock(IClient::class);
+
+ $this->clientService
+ ->method('NewClient')
+ ->willReturn($this->client);
+
+ $this->provider = new TwitterProvider(
+ $this->clientService
+ );
+ }
+
+ public function dataProviderSupportsContact() {
+ $contactWithSocial = [
+ 'X-SOCIALPROFILE' => [
+ ["value" => "username1", "type" => "twitter"],
+ ["value" => "username2", "type" => "twitter"]
+ ]
+ ];
+
+ $contactWithoutSocial = [
+ 'X-SOCIALPROFILE' => [
+ ["value" => "one", "type" => "social2"],
+ ["value" => "two", "type" => "social1"]
+ ]
+ ];
+
+ return [
+ 'contact with twitter fields' => [$contactWithSocial, true],
+ 'contact without twitter fields' => [$contactWithoutSocial, false]
+ ];
+ }
+
+ /**
+ * @dataProvider dataProviderSupportsContact
+ */
+ public function testSupportsContact($contact, $expected) {
+ $result = $this->provider->supportsContact($contact);
+ $this->assertEquals($expected, $result);
+ }
+
+ public function dataProviderGetImageUrls() {
+ $contactWithSocial = [
+ 'X-SOCIALPROFILE' => [
+ ["value" => "https://twitter.com/username1", "type" => "twitter"],
+ ["value" => "https://twitter.com/@username2", "type" => "twitter"]
+ ]
+ ];
+ $contactWithSocialUrls = [
+ "https://mobile.twitter.com/username1",
+ "https://mobile.twitter.com/username2",
+ ];
+ $contactWithSocialHtml = [
+ '<html><img src="username1_normal.jpg" /></html>',
+ '<html><img src="username2_normal.jpg" /></html>',
+ ];
+ $contactWithSocialImgs = [
+ "username1_400x400.jpg",
+ "username2_400x400.jpg"
+ ];
+
+ $contactWithoutSocial = [
+ 'X-SOCIALPROFILE' => [
+ ["value" => "one", "type" => "social2"],
+ ["value" => "two", "type" => "social1"]
+ ]
+ ];
+ $contactWithoutSocialUrls = [];
+ $contactWithoutSocialHtml = [];
+ $contactWithoutSocialImgs = [];
+
+ return [
+ 'contact with twitter fields' => [
+ $contactWithSocial,
+ $contactWithSocialHtml,
+ $contactWithSocialUrls,
+ $contactWithSocialImgs
+ ],
+ 'contact without twitter fields' => [
+ $contactWithoutSocial,
+ $contactWithoutSocialHtml,
+ $contactWithoutSocialUrls,
+ $contactWithoutSocialImgs
+ ]
+ ];
+ }
+
+ /**
+ * @dataProvider dataProviderGetImageUrls
+ */
+ public function testGetImageUrls($contact, $htmls, $urls, $imgs) {
+ if (count($urls)) {
+ $this->response->method("getBody")->willReturnOnConsecutiveCalls(...$htmls);
+ $this->client
+ ->expects($this->exactly(count($urls)))
+ ->method("get")
+ ->withConsecutive(...array_map(function ($a) {
+ return [$a];
+ }, $urls))
+ ->willReturn($this->response);
+ }
+
+
+ $result = $this->provider->getImageUrls($contact);
+ $this->assertEquals($imgs, $result);
+ }
+}