From 46212440d785506b3cb257439dce43adc6a60818 Mon Sep 17 00:00:00 2001 From: Ghislain Loas <ghislo@sandbox.pergame.net> Date: Tue, 24 Nov 2015 10:26:20 +0100 Subject: [PATCH] dev #30973 fix default right of pbm album to other --- VERSIONS_WIP/30973 | 1 + library/Class/WebService/BibNumerique/Dilicom/Book.php | 1 + tests/library/Class/WebService/Dilicom/ONIXParserTest.php | 7 +++++++ 3 files changed, 9 insertions(+) create mode 100644 VERSIONS_WIP/30973 diff --git a/VERSIONS_WIP/30973 b/VERSIONS_WIP/30973 new file mode 100644 index 00000000000..f3767c32f52 --- /dev/null +++ b/VERSIONS_WIP/30973 @@ -0,0 +1 @@ + - ticket #30973 : [PNB] backoffice \ No newline at end of file diff --git a/library/Class/WebService/BibNumerique/Dilicom/Book.php b/library/Class/WebService/BibNumerique/Dilicom/Book.php index 05317bdca1a..432b16c5a1f 100644 --- a/library/Class/WebService/BibNumerique/Dilicom/Book.php +++ b/library/Class/WebService/BibNumerique/Dilicom/Book.php @@ -35,6 +35,7 @@ class Class_WebService_BibNumerique_Dilicom_Book extends Class_WebService_BibNum ->setISBN($this->_isbn) ->setSousTitre($this->_subtitle) ->addEditor($this->getEditeur()) + ->setDroits(2) ->setUsageConstraints($this->_usage_constraints) ->addItem(new Class_Album_Item()); diff --git a/tests/library/Class/WebService/Dilicom/ONIXParserTest.php b/tests/library/Class/WebService/Dilicom/ONIXParserTest.php index 22a50ce786c..55de39d7b87 100644 --- a/tests/library/Class/WebService/Dilicom/ONIXParserTest.php +++ b/tests/library/Class/WebService/Dilicom/ONIXParserTest.php @@ -92,6 +92,13 @@ class DilicomONIXParserTest extends Storm_Test_ModelTestCase { } + /** @test */ + public function albumRightShouldBe2() { + $album = $this->_book->import(); + $this->assertEquals(2, $album->getDroits()); + } + + /** * @depends importAlbumTypeDocShouldBeDILICOM * @test -- GitLab