summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2013-09-26 20:54:56 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2013-09-26 20:54:56 +0200
commitc56d433ca432fba641a0b734287cca9431fd6d12 (patch)
treee96c7ade14165e01da89dee58adf22b165997971 /tests
parentcec643c249fb97a940b197287474341bdc598977 (diff)
create a seperate config file for regex enhancers
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/utility/articleenhancer/RegexArticleEnhancerTest.php49
-rw-r--r--tests/unit/utility/articleenhancer/XPathArticleEnhancerTest.php (renamed from tests/unit/utility/articleenhancer/ArticleEnhancerTest.php)13
2 files changed, 51 insertions, 11 deletions
diff --git a/tests/unit/utility/articleenhancer/RegexArticleEnhancerTest.php b/tests/unit/utility/articleenhancer/RegexArticleEnhancerTest.php
new file mode 100644
index 000000000..f775eac91
--- /dev/null
+++ b/tests/unit/utility/articleenhancer/RegexArticleEnhancerTest.php
@@ -0,0 +1,49 @@
+<?php
+
+/**
+* ownCloud - News
+*
+* @author Alessandro Cosentino
+* @author Bernhard Posselt
+* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
+* @copyright 2012 Bernhard Posselt dev@bernhard-posselt.com
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library 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 library. If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+namespace OCA\News\Utility\ArticleEnhancer;
+
+use \OCA\News\Db\Item;
+
+require_once(__DIR__ . "/../../../classloader.php");
+
+
+class RegexArticleEnhancerTest extends \OCA\AppFramework\Utility\TestUtility {
+
+
+ public function testRegexEnhancer() {
+ $item = new Item();
+ $item->setBody('atests is a nice thing');
+ $item->setUrl('http://john.com');
+ $regex = array("%tes(ts)%" => "heho$1tests");
+
+ $regexEnhancer = new RegexArticleEnhancer('%john.com%', $regex);
+ $item = $regexEnhancer->enhance($item);
+
+ $this->assertEquals('ahehotstests is a nice thing', $item->getBody());
+ }
+
+
+} \ No newline at end of file
diff --git a/tests/unit/utility/articleenhancer/ArticleEnhancerTest.php b/tests/unit/utility/articleenhancer/XPathArticleEnhancerTest.php
index f252c4fac..b9c902147 100644
--- a/tests/unit/utility/articleenhancer/ArticleEnhancerTest.php
+++ b/tests/unit/utility/articleenhancer/XPathArticleEnhancerTest.php
@@ -30,16 +30,7 @@ use \OCA\News\Db\Item;
require_once(__DIR__ . "/../../../classloader.php");
-class TestEnhancer extends ArticleEnhancer {
- public function __construct($purifier, $fileFactory, $regexXPathPair,
- $timeout){
- parent::__construct($purifier, $fileFactory, $regexXPathPair,
- $timeout);
- }
-}
-
-
-class ArticleEnhancerTest extends \OCA\AppFramework\Utility\TestUtility {
+class XPathArticleEnhancerTest extends \OCA\AppFramework\Utility\TestUtility {
private $purifier;
private $testEnhancer;
@@ -53,7 +44,7 @@ class ArticleEnhancerTest extends \OCA\AppFramework\Utility\TestUtility {
->getMock();
$this->purifier = $this->getMock('purifier', array('purify'));
- $this->testEnhancer = new TestEnhancer(
+ $this->testEnhancer = new XPathArticleEnhancer(
$this->purifier,
$this->fileFactory,
array(