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)
committerKatrin Fischer <katrin.fischer.83@web.de>
Tue, 7 Feb 2017 06:55:26 +0000 (07:55 +0100)
commitabd7febc1e8afa589b3b10eccf59e1dfbd40fb8a
tree5032b651ad2494c418666d1d983e6deae073caf8
parent9b23c350862a3215671aca173330dd25a92b78af
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>
(cherry picked from commit 41358176e1d276e47d3034a37bd089b7e6c7e846)
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
t/db_dependent/TestBuilder.t
t/lib/TestBuilder.pm