summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Utility/ProxyConfigParserTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Utility/ProxyConfigParserTest.php')
-rw-r--r--tests/Unit/Utility/ProxyConfigParserTest.php103
1 files changed, 0 insertions, 103 deletions
diff --git a/tests/Unit/Utility/ProxyConfigParserTest.php b/tests/Unit/Utility/ProxyConfigParserTest.php
deleted file mode 100644
index 1433558e7..000000000
--- a/tests/Unit/Utility/ProxyConfigParserTest.php
+++ /dev/null
@@ -1,103 +0,0 @@
-<?php
-/**
- * Nextcloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright 2012 Alessandro Cosentino
- * @copyright 2012-2014 Bernhard Posselt
- */
-
-namespace OCA\News\Tests\Unit\Utility;
-
-
-use OCA\News\Utility\ProxyConfigParser;
-use OCP\IConfig;
-use PHPUnit\Framework\TestCase;
-
-class ProxyConfigParserTest extends TestCase
-{
-
- private $config;
- private $feedService;
- private $itemService;
- private $parser;
-
- protected function setUp()
- {
- $this->config = $this->getMockBuilder(IConfig::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->parser = new ProxyConfigParser($this->config);
- }
-
- private function setExpectedProxy($proxy=null, $userpasswd=null)
- {
- $this->config->expects($this->at(0))
- ->method('getSystemValue')
- ->with($this->equalTo('proxy'))
- ->will($this->returnValue($proxy));
- $this->config->expects($this->at(1))
- ->method('getSystemValue')
- ->with($this->equalTo('proxyuserpwd'))
- ->will($this->returnValue($userpasswd));
- }
-
- public function testParsesNoProxy()
- {
- $expected = [
- 'host' => null,
- 'port' => null,
- 'user' => null,
- 'password' => null
- ];
- $this->setExpectedProxy();
- $result = $this->parser->parse();
- $this->assertEquals($expected, $result);
- }
-
-
- public function testParsesHost()
- {
- $expected = [
- 'host' => 'http://google.com/mytest',
- 'port' => null,
- 'user' => null,
- 'password' => null
- ];
- $this->setExpectedProxy('http://google.com/mytest');
- $result = $this->parser->parse();
- $this->assertEquals($expected, $result);
- }
-
-
- public function testParsesHostAndPort()
- {
- $expected = [
- 'host' => 'http://google.com/mytest',
- 'port' => 89,
- 'user' => null,
- 'password' => null
- ];
- $this->setExpectedProxy('http://google.com:89/mytest');
- $result = $this->parser->parse();
- $this->assertEquals($expected, $result);
- }
-
-
- public function testParsesUser()
- {
- $expected = [
- 'host' => null,
- 'port' => null,
- 'user' => 'john',
- 'password' => 'doe:hey'
- ];
- $this->setExpectedProxy(null, 'john:doe:hey');
- $result = $this->parser->parse();
- $this->assertEquals($expected, $result);
- }
-} \ No newline at end of file