Skip to content
Snippets Groups Projects
Commit c34c3809 authored by Henri-Damien LAURENT's avatar Henri-Damien LAURENT
Browse files

Merge branch 'hotline#151102_ensa_integration_bloquee_sur_fichier_marcxml' into 'master'

hotline#151102 : cosmogramme : adding marcxml support for serial

See merge request !4366
parents bffbb999 d6dbc364
Branches
Tags
1 merge request!4366hotline#151102 : cosmogramme : adding marcxml support for serial
Pipeline #16342 failed with stage
in 29 minutes and 25 seconds
- correctif #151102 : Cosmogramme : Prise en charge du format marcxml pour les périodiques
\ No newline at end of file
......@@ -82,23 +82,13 @@ class Class_WebService_OAI_MarcXMLParser extends Class_WebService_OAI_ParserAbst
}
public function startRecord($attributes) {
/**
* MarcXML record tag is in OAI/metadata record tag
* So it creates the record only on OAI record tag
* to avoid two records creation and mark record as deleted if needed
*/
if ($this->parser->inParents('metadata'))
return parent::startRecord($attributes);
}
public function endRecord($data) {
if (!$this->parser->inParents('metadata'))
if (!$this->_record)
return;
$splitted_records = $this->_splitRecordWithMaxItemsCount($this->_record, 100);
$this->_records = array_merge($this->_records, $splitted_records);
$this->_record = null;
}
......
......@@ -251,3 +251,52 @@ class PhaseNoticeOAIKohaMoreThanThousandItemsTest extends PhaseNoticeOAITestCase
Class_Notice::findAll()));
}
}
class PhaseNoticeMarcXMLKohaMoreThan100ItemsTest extends PhaseNoticeOAITestCase {
protected function _prepareFixtures() {
parent::_prepareFixtures();
Class_Cosmogramme_Integration::find(999)
->setFichier('./notice_revue.marcxml')
->assertSave();
Class_IntProfilDonnees::find(102)
->setFormat(Class_IntProfilDonnees::FORMAT_UNIMARC_XML)
->setAccents(Class_IntProfilDonnees::ENCODING_UTF8)
->assertSave();
Class_Notice::deleteBy([]);
}
/** @test */
public function recordTitlesShouldBeMatieres() {
$this->assertEquals(['Matières'],
array_map(function($record)
{
return $record->getTitrePrincipal();
},
Class_Notice::findAll()));
}
/** @test */
public function noticeField924CountShouldBe16() {
$this->assertEquals(16, sizeof(Class_Notice::find(1)->get_subfield('924')));
}
/** @test */
public function noticeField955CountShouldBe16() {
$this->assertEquals(16, sizeof(Class_Notice::find(1)->get_subfield('955')));
}
/** @test */
public function recordExemplaireCountShouldBe93() {
$this->assertEquals(93,Class_Exemplaire::count());
}
}
This diff is collapsed.
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment