Skip to content

Commit

Permalink
Add tests for physicalDescription elment
Browse files Browse the repository at this point in the history
  • Loading branch information
beatrycze-volk committed Apr 19, 2024
1 parent 0e6edc5 commit 7510ece
Showing 1 changed file with 40 additions and 20 deletions.
60 changes: 40 additions & 20 deletions tests/Mods/ModsReaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -848,11 +848,16 @@ public function testGetPhysicalDescriptionsForBookDocument()
self::assertNotEmpty($physicalDescriptions);
self::assertEquals(1, count($physicalDescriptions));
self::assertNotEmpty($physicalDescriptions[0]->getValue());
//self::assertEquals('', $physicalDescriptions[0]->getValue());
//self::assertNotEmpty($physicalDescriptions[0]->getForm());
//self::assertNotEmpty($physicalDescriptions[0]->getExtent());

// TODO: implement reading of elements
self::assertNotEmpty($physicalDescriptions[0]->getForms());
self::assertEquals('marcform', $physicalDescriptions[0]->getForms()[0]->getAuthority());
self::assertEquals('print', $physicalDescriptions[0]->getForms()[0]->getValue());
self::assertNotEmpty($physicalDescriptions[0]->getExtents());
self::assertEquals('vii, 322 p. ; 23 cm.', $physicalDescriptions[0]->getExtents()[0]->getValue());
self::assertNotEmpty($physicalDescriptions[0]->getReformattingQualities());
self::assertEquals('replacement', $physicalDescriptions[0]->getReformattingQualities()[0]);
self::assertNotEmpty($physicalDescriptions[0]->getDigitalOrigins());
self::assertEquals('born digital', $physicalDescriptions[0]->getDigitalOrigins()[0]);
self::assertEmpty($physicalDescriptions[0]->getNotes());
}

public function testGetPhysicalDescriptionsByQueryForBookDocument()
Expand All @@ -861,11 +866,16 @@ public function testGetPhysicalDescriptionsByQueryForBookDocument()
self::assertNotEmpty($physicalDescriptions);
self::assertEquals(1, count($physicalDescriptions));
self::assertNotEmpty($physicalDescriptions[0]->getValue());
//self::assertEquals('', $physicalDescriptions[0]->getValue());
//self::assertNotEmpty($physicalDescriptions[0]->getForm());
//self::assertNotEmpty($physicalDescriptions[0]->getExtent());

// TODO: implement reading of elements
self::assertNotEmpty($physicalDescriptions[0]->getForms());
self::assertEquals('marcform', $physicalDescriptions[0]->getForms()[0]->getAuthority());
self::assertEquals('print', $physicalDescriptions[0]->getForms()[0]->getValue());
self::assertNotEmpty($physicalDescriptions[0]->getExtents());
self::assertEquals('vii, 322 p. ; 23 cm.', $physicalDescriptions[0]->getExtents()[0]->getValue());
self::assertNotEmpty($physicalDescriptions[0]->getReformattingQualities());
self::assertEquals('replacement', $physicalDescriptions[0]->getReformattingQualities()[0]);
self::assertNotEmpty($physicalDescriptions[0]->getDigitalOrigins());
self::assertEquals('born digital', $physicalDescriptions[0]->getDigitalOrigins()[0]);
self::assertEmpty($physicalDescriptions[0]->getNotes());
}

public function testGetNoPhysicalDescriptionsByQueryForBookDocument()
Expand All @@ -880,11 +890,16 @@ public function testGetPhysicalDescriptionsForSerialDocument()
self::assertNotEmpty($physicalDescriptions);
self::assertEquals(1, count($physicalDescriptions));
self::assertNotEmpty($physicalDescriptions[0]->getValue());
//self::assertEquals('', $physicalDescriptions[0]->getValue());
//self::assertNotEmpty($physicalDescriptions[0]->getForm());
//self::assertNotEmpty($physicalDescriptions[0]->getExtent());

// TODO: implement reading of elements
self::assertNotEmpty($physicalDescriptions[0]->getForms());
self::assertEquals(2, count($physicalDescriptions[0]->getForms()));
self::assertEquals('gmd', $physicalDescriptions[0]->getForms()[1]->getAuthority());
self::assertEquals('electronic resource', $physicalDescriptions[0]->getForms()[1]->getValue());
self::assertNotEmpty($physicalDescriptions[0]->getInternetMediaTypes());
self::assertEquals('text/html', $physicalDescriptions[0]->getInternetMediaTypes()[0]->getValue());
self::assertEmpty($physicalDescriptions[0]->getExtents());
self::assertEmpty($physicalDescriptions[0]->getReformattingQualities());
self::assertEmpty($physicalDescriptions[0]->getDigitalOrigins());
self::assertEmpty($physicalDescriptions[0]->getNotes());
}

public function testGetPhysicalDescriptionsByQueryForSerialDocument()
Expand All @@ -893,11 +908,16 @@ public function testGetPhysicalDescriptionsByQueryForSerialDocument()
self::assertNotEmpty($physicalDescriptions);
self::assertEquals(1, count($physicalDescriptions));
self::assertNotEmpty($physicalDescriptions[0]->getValue());
//self::assertEquals('', $physicalDescriptions[0]->getValue());
//self::assertNotEmpty($physicalDescriptions[0]->getForm());
//self::assertNotEmpty($physicalDescriptions[0]->getExtent());

// TODO: implement reading of elements
self::assertNotEmpty($physicalDescriptions[0]->getForms());
self::assertEquals(2, count($physicalDescriptions[0]->getForms()));
self::assertEquals('gmd', $physicalDescriptions[0]->getForms()[1]->getAuthority());
self::assertEquals('electronic resource', $physicalDescriptions[0]->getForms()[1]->getValue());
self::assertNotEmpty($physicalDescriptions[0]->getInternetMediaTypes());
self::assertEquals('text/html', $physicalDescriptions[0]->getInternetMediaTypes()[0]->getValue());
self::assertEmpty($physicalDescriptions[0]->getExtents());
self::assertEmpty($physicalDescriptions[0]->getReformattingQualities());
self::assertEmpty($physicalDescriptions[0]->getDigitalOrigins());
self::assertEmpty($physicalDescriptions[0]->getNotes());
}

public function testGetNoPhysicalDescriptionsByQueryForSerialDocument()
Expand Down

0 comments on commit 7510ece

Please sign in to comment.