summaryrefslogtreecommitdiffstats
path: root/tests/Integration/Fixtures/ItemFixture.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Integration/Fixtures/ItemFixture.php')
-rw-r--r--tests/Integration/Fixtures/ItemFixture.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/Integration/Fixtures/ItemFixture.php b/tests/Integration/Fixtures/ItemFixture.php
new file mode 100644
index 000000000..9e6e07fe2
--- /dev/null
+++ b/tests/Integration/Fixtures/ItemFixture.php
@@ -0,0 +1,49 @@
+<?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_merge([
+ 'url' => 'http://google.de',
+ 'title' => 'title',
+ 'author' => 'my 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);
+
+ if (!array_key_exists('guid', $defaults)) {
+ $defaults['guid'] = $defaults['title'];
+ }
+
+ if (!array_key_exists('guidHash', $defaults)) {
+ $defaults['guidHash'] = $defaults['guid'];
+ }
+
+ $this->fillDefaults($defaults);
+ $this->generateSearchIndex();
+ }
+
+}