summaryrefslogtreecommitdiffstats
path: root/tests/integration/fixtures/itemfixture.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-11-30 21:04:55 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2016-01-17 18:18:39 +0100
commit2bbd1e10a8a315c715095eed6536b6b319aeb974 (patch)
treed31ae5d0b83305b7bc47dc08271920181a5219cc /tests/integration/fixtures/itemfixture.php
parent646b5296843de0815c47fe809178613a5b4fafaa (diff)
fix various things
Diffstat (limited to 'tests/integration/fixtures/itemfixture.php')
-rw-r--r--tests/integration/fixtures/itemfixture.php50
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/integration/fixtures/itemfixture.php b/tests/integration/fixtures/itemfixture.php
new file mode 100644
index 000000000..ac9191c4d
--- /dev/null
+++ b/tests/integration/fixtures/itemfixture.php
@@ -0,0 +1,50 @@
+<?php
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2015
+ */
+
+
+namespace OCA\News\Tests\Integration\Fixtures;
+
+
+use OCA\News\Db\Item;
+
+class ItemFixture extends Item {
+ use Fixture;
+
+ public function __construct(array $defaults=[]) {
+ parent::__construct();
+ $defaults = array_combine([
+ 'guid' => 'guid',
+ 'url' => 'http://google.de',
+ 'title' => 'title',
+ 'author' => 'author',
+ 'pubDate' => 2323,
+ 'body' => 'this is a body',
+ 'enclosureMime' => 'video/mpeg',
+ 'enclosureLink' => 'http://google.de/web.webm',
+ 'feedId' => 0,
+ 'status' => 2,
+ 'lastModified' => 113,
+ 'rtl' => false,
+ ], $defaults);
+ $this->fillDefaults($defaults);
+
+ if (!array_key_exists('guid', $defaults)) {
+ $this->setGuid($this->getTitle());
+ }
+
+ if (!array_key_exists('guidHash', $defaults)) {
+ $this->setGuidHash($this->getGuid());
+ }
+
+ $this->generateSearchIndex();
+ }
+
+}