Skip to content
Snippets Groups Projects
Commit fd4b818f authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

rel #13283 : fix test failure

parent f3ce186a
Branches
Tags
3 merge requests!258Dev/13872 Orphee Allow Hold Available Items,!108Dev#13283 Export Pret Unimarc,!99Dev#13283 Export Pret Unimarc
......@@ -220,7 +220,8 @@ class NoticeStromaeTest extends Storm_Test_ModelTestCase {
$zone_995 = serialize(
[
['clef' => 'h', 'valeur' => '00510172'],
['clef' => '2', 'valeur' => '[AA][Adulte CEC][0][1][Disponible][0][0][0][0]']]); //'7=* 8=1 g=P- h=00510172 m=20140408 o=p p=p q=a r=as 2=[AA][Adulte CEC][0][1][Disponible][0][0][0][0] 9=2014-04-04-00.00.00.000000']
['clef' => '2', 'valeur' => '[AA][Adulte CEC][0][1][Disponible][0][0][0][0]']]);
$exemplaire = $this->fixture('Class_Exemplaire',
['id' => 234,
'zone995' => $zone_995]);
......@@ -239,7 +240,7 @@ class NoticeStromaeTest extends Storm_Test_ModelTestCase {
file_put_contents($temp_file, $unimarc);
exec('yaz-marcdump -o json -f utf8 -t utf8 ' . $temp_file, $output);
$this->dump = json_decode(implode('', $output));
$this->_995s = $this->getFieldsFromJson('995', json_decode(implode('', $output)));
}
......@@ -257,22 +258,20 @@ class NoticeStromaeTest extends Storm_Test_ModelTestCase {
/** @test */
public function exportedUnimarcShouldHave995Zone() {
$this->assertFalse(empty($this->getFieldsFromJson('995', $this->dump)));
$this->assertFalse(empty($this->_995s));
}
/** @test */
public function field995DollarHShouldBe00510172() {
$_995s = $this->getFieldsFromJson('995', $this->dump);
$this->assertSame('00510172', $this->getSubfieldFromJson('h', $_995s[0]));
$this->assertSame('00510172', $this->getSubfieldFromJson('h', $this->_995s[0]));
}
/** @test */
public function field995Dollar2ShouldBeAsExpected() {
$_995s = $this->getFieldsFromJson('995', $this->dump);
$this->assertSame('[AA][Adulte CEC][0][1][Disponible][0][0][0][0]',
$this->getSubfieldFromJson('2', $_995s[0]));
$this->getSubfieldFromJson('2', $this->_995s[0]));
}
......
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