summaryrefslogtreecommitdiff
path: root/zend/tests/Zend/Gdata/Books/VolumeEntryTest.php
diff options
context:
space:
mode:
authorHorus32014-02-24 16:42:14 +0100
committerHorus32014-02-24 16:42:14 +0100
commit06f945f27840b53e57795dadbc38e76f7e11ab1c (patch)
tree689d5c7f4ffa15460c7e90f47c6a7dd59ce4e8bd /zend/tests/Zend/Gdata/Books/VolumeEntryTest.php
downloadrandom-06f945f27840b53e57795dadbc38e76f7e11ab1c.tar.gz
init
Diffstat (limited to 'zend/tests/Zend/Gdata/Books/VolumeEntryTest.php')
-rw-r--r--zend/tests/Zend/Gdata/Books/VolumeEntryTest.php125
1 files changed, 125 insertions, 0 deletions
diff --git a/zend/tests/Zend/Gdata/Books/VolumeEntryTest.php b/zend/tests/Zend/Gdata/Books/VolumeEntryTest.php
new file mode 100644
index 0000000..8532122
--- /dev/null
+++ b/zend/tests/Zend/Gdata/Books/VolumeEntryTest.php
@@ -0,0 +1,125 @@
+<?php
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category Zend
+ * @package Zend_Gdata_Books
+ * @subpackage UnitTests
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @version $Id $
+ */
+
+require_once 'Zend/Gdata/Books/VolumeEntry.php';
+require_once 'Zend/Gdata/Books.php';
+
+/**
+ * @category Zend
+ * @package Zend_Gdata_Books
+ * @subpackage UnitTests
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @group Zend_Gdata
+ * @group Zend_Gdata_Books
+ */
+class Zend_Gdata_Books_VolumeEntryTest extends PHPUnit_Framework_TestCase
+{
+
+ public function setUp() {
+ $this->entryText = file_get_contents(
+ 'Zend/Gdata/Books/_files/VolumeEntryDataSample1.xml',
+ true);
+ $this->entry = new Zend_Gdata_Books_VolumeEntry();
+ }
+
+ private function verifySamplePropertiesAreCorrect ($volumeEntry) {
+ $this->assertEquals('http://www.google.com/books/feeds/volumes/Mfer_MFwQrkC',
+ $volumeEntry->id->text);
+ $this->assertEquals('2008-10-07T15:28:15.000Z', $volumeEntry->updated->text);
+ $this->assertEquals('http://schemas.google.com/g/2005#kind', $volumeEntry->category[0]->scheme);
+ $this->assertEquals('http://schemas.google.com/books/2008#volume', $volumeEntry->category[0]->term);
+ $this->assertEquals('http://bks1.books.google.com/books?id=Mfer_MFwQrkC&printsec=frontcover&img=1&zoom=5&sig=ACfU3U1o90VpMryPI7WKSyIhmAWdC1uDtw&source=gbs_gdata', $volumeEntry->getThumbnailLink()->href);
+ $this->assertEquals('http://books.google.com/books?id=Mfer_MFwQrkC&ie=ISO-8859-1&source=gbs_gdata', $volumeEntry->getInfoLink()->href);
+ $this->assertEquals(null, $volumeEntry->getPreviewLink());
+ $creators = $volumeEntry->getCreators();
+ $this->assertEquals('William Shakespeare', $creators[0]->text);
+ $titles = $volumeEntry->getTitles();
+ $this->assertEquals('Hamlet', $titles[0]->text);
+ $dates = $volumeEntry->getDates();
+ $this->assertEquals('2002-02', $dates[0]->text);
+ $identifiers = $volumeEntry->getIdentifiers();
+ $this->assertEquals('Mfer_MFwQrkC', $identifiers[0]->text);
+ $this->assertEquals('ISBN:0198320493', $identifiers[1]->text);
+ $languages = $volumeEntry->getLanguages();
+ $this->assertEquals('en', $languages[0]->text);
+ $formats = $volumeEntry->getFormats();
+ $this->assertEquals('178 pages', $formats[0]->text);
+ $publishers = $volumeEntry->getPublishers();
+ $this->assertEquals('Oxford University Press', $publishers[0]->text);
+ $subjects = $volumeEntry->getSubjects();
+ $this->assertEquals('Denmark', $subjects[0]->text);
+ $this->assertEquals(null, $volumeEntry->getPreviewLink());
+ $this->assertEquals('http://www.google.com/books/feeds/users/me/volumes', $volumeEntry->getAnnotationLink()->href);
+ $this->assertEquals('http://books.google.com/books?id=Mfer_MFwQrkC&ie=ISO-8859-1&source=gbs_gdata', $volumeEntry->getInfoLink()->href);
+ $this->assertEquals('http://bks1.books.google.com/books?id=Mfer_MFwQrkC&printsec=frontcover&img=1&zoom=5&sig=ACfU3U1o90VpMryPI7WKSyIhmAWdC1uDtw&source=gbs_gdata', $volumeEntry->getThumbnailLink()->href);
+ $this->assertEquals('Denmark', $subjects[0]->text);
+ $this->assertEquals('http://schemas.google.com/books/2008#view_partial', $volumeEntry->getViewability()->value);
+ $this->assertEquals('Mfer_MFwQrkC', $volumeEntry->getVolumeId());
+ }
+
+ public function testEmptyEntryShouldHaveNoExtensionElements() {
+ $this->assertTrue(is_array($this->entry->extensionElements));
+ $this->assertEquals(0, count($this->entry->extensionElements));
+ }
+
+ public function testEmptyEntryShouldHaveNoExtensionAttributes() {
+ $this->assertTrue(is_array($this->entry->extensionAttributes));
+ $this->assertEquals(0, count($this->entry->extensionAttributes));
+ }
+
+ public function testSampleEntryShouldHaveNoExtensionElements() {
+ $this->entry->transferFromXML($this->entryText);
+ $this->assertTrue(is_array($this->entry->extensionElements));
+ $this->assertEquals(0, count($this->entry->extensionElements));
+ }
+
+ public function testSampleEntryShouldHaveNoExtensionAttributes() {
+ $this->entry->transferFromXML($this->entryText);
+ $this->assertTrue(is_array($this->entry->extensionAttributes));
+ $this->assertEquals(0, count($this->entry->extensionAttributes));
+ }
+
+ public function testEmptyVolumeEntryToAndFromStringShouldMatch() {
+ $entryXml = $this->entry->saveXML();
+ $newVolumeEntry = new Zend_Gdata_Books_VolumeEntry();
+ $newVolumeEntry->transferFromXML($entryXml);
+ $newVolumeEntryXml = $newVolumeEntry->saveXML();
+ $this->assertEquals($entryXml, $newVolumeEntryXml);
+ }
+
+ public function testSamplePropertiesAreCorrect () {
+ $this->entry->transferFromXML($this->entryText);
+ $this->verifySamplePropertiesAreCorrect($this->entry);
+ }
+
+ public function testConvertVolumeEntryToAndFromString() {
+ $this->entry->transferFromXML($this->entryText);
+ $entryXml = $this->entry->saveXML();
+ $newVolumeEntry = new Zend_Gdata_Books_VolumeEntry();
+ $newVolumeEntry->transferFromXML($entryXml);
+ $this->verifySamplePropertiesAreCorrect($newVolumeEntry);
+ $newVolumeEntryXml = $newVolumeEntry->saveXML();
+ $this->assertEquals($entryXml, $newVolumeEntryXml);
+ }
+
+}