1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

Export dates from entries

This commit is contained in:
Jeremy Benoist 2016-09-08 16:38:08 +02:00
parent 6f23289e72
commit 9401696fe4
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
5 changed files with 61 additions and 4 deletions

View file

@ -168,7 +168,7 @@ class ExportControllerTest extends WallabagCoreTestCase
$this->assertGreaterThan(1, $csv);
// +1 for title line
$this->assertEquals(count($contentInDB) + 1, count($csv));
$this->assertEquals('Title;URL;Content;Tags;"MIME Type";Language', $csv[0]);
$this->assertEquals('Title;URL;Content;Tags;"MIME Type";Language;"Creation date"', $csv[0]);
}
public function testJsonExport()
@ -210,6 +210,8 @@ class ExportControllerTest extends WallabagCoreTestCase
$this->assertArrayHasKey('reading_time', $content[0]);
$this->assertArrayHasKey('domain_name', $content[0]);
$this->assertArrayHasKey('tags', $content[0]);
$this->assertArrayHasKey('created_at', $content[0]);
$this->assertArrayHasKey('updated_at', $content[0]);
}
public function testXmlExport()
@ -247,5 +249,7 @@ class ExportControllerTest extends WallabagCoreTestCase
$this->assertNotEmpty('url', (string) $content->entry[0]->url);
$this->assertNotEmpty('content', (string) $content->entry[0]->content);
$this->assertNotEmpty('domain_name', (string) $content->entry[0]->domain_name);
$this->assertNotEmpty('created_at', (string) $content->entry[0]->created_at);
$this->assertNotEmpty('updated_at', (string) $content->entry[0]->updated_at);
}
}