Bug 17726: TestBuilder - Add default values
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 12 Dec 2016 22:38:40 +0000 (22:38 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 20 Jan 2017 13:43:17 +0000 (13:43 +0000)
commit41358176e1d276e47d3034a37bd089b7e6c7e846
tree00027cfcd04ae08a154c2f2fe9a614c21fb088fa
parent63f7cbc777521c33f8ada3e1068be01b98da9050
Bug 17726: TestBuilder - Add default values

The items.more_subfields_xml is set to random data (generated by
TestBuilder), and so GetMarcBiblio does not manage to embed items (if
needed).

The error is:
  :1: parser error : Start tag expected, '<' not found

More precisely it explodes in
C4::Items::_parse_unlinked_item_subfields_from_xml when
MARC::Record->new_from_xml is called with an invalid xml

This patch adds a default values mechanism to TestBuilder to avoid
modifying all the existing calls.

Test plan:
Set SearchEngine to ElasticSearch
prove t/db_dependent/Circulation.pl
should return green with this patch

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
t/db_dependent/TestBuilder.t
t/lib/TestBuilder.pm