From be8cd1f07f6d67801f7c78e81613ada7fff7b9b9 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Mon, 7 Oct 2024 14:18:19 +0000 Subject: [PATCH] Bug 38096: [DONT PUSH] Add test data for fields 856 and 857 --- .../data/mysql/atomicupdate/bug_38096.pl | 232 ++++++++++++++++++ 1 file changed, 232 insertions(+) create mode 100755 installer/data/mysql/atomicupdate/bug_38096.pl diff --git a/installer/data/mysql/atomicupdate/bug_38096.pl b/installer/data/mysql/atomicupdate/bug_38096.pl new file mode 100755 index 00000000000..8def8e0babd --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_38096.pl @@ -0,0 +1,232 @@ +use Modern::Perl; +use Koha::Installer::Output qw(say_warning say_failure say_success say_info); + +return { + bug_number => "38096", + description => "[DO NOT PUSH] Insert test data for 38096 test plan", + up => sub { + my ($args) = @_; + my ( $dbh, $out ) = @$args{qw(dbh out)}; + + # Do you stuffs here + $dbh->do(q{UPDATE biblio_metadata set metadata =' + + + 03741njm a22006491a 4500 + 12322942 + OSt + 20241007123044.0 + sd fungnn---eu + 981026s1998 mnumun fi mul d + + 00716040 + + + 021561601628 + + + NSD6016 + NorthSide + + + (OCoLC)ocm40166468 + + + SVP + SVP + DLC + + + mul + eng + + + lcderive + + + ev----- + + + NorthSide NSD6016 + + + Nordic roots + [sound recording] : + a NorthSide collection. + + + Minneapolis : + NorthSide, + [1998] + + + 1 sound disc : + digital ; + 4 3/4 in. + + + Folk, popular, and rock music. + + + Compact disc. + + + Program notes in English ([20] p. : col. ill.) inserted in container. + + + Compiled by Robert Simonds. + + + Various performers. + + + Sung in Scandinavian languages. + + + Folk music + Scandinavia. + 706 + + + Folk dance music + Scandinavia. + 707 + + + Popular music + Scandinavia + 1991-2000. + 708 + + + Rock music + Scandinavia + 1991-2000. + 709 + + + Rimestad, Hege. + prf + 61 + + + Wimme. + prf + 62 + + + Varis, Tapani. + prf + 63 + + + Johansson, Olov. + prf + 64 + + + Väsen (Musical group) + prf + 65 + + + Hedningarna (Musical group) + prf + 66 + + + Groupa (Musical Group) + prf + 67 + + + Chateau Neuf (Musical group) + prf + 68 + + + Swåp (Musica group) + prf + 69 + + + Loituma (Musical group) + prf + 70 + + + Garmarna (Musical group) + prf + + + Hoven Droven (Musical group) + prf + 71 + + + Fule (Musical group) + prf + 72 + + + Troka (Musical group) + prf + 73 + + + Triakel (Musical group) + prf + 74 + + + Koha community no protocol + koha-community.org/ + + + Koha community with protocol + https://koha-community.org/ + + + Koha logo image + jpeg + https://koha-community.org/files/2013/09/cropped-kohabanner3.jpg + + + Koha community no protocol + koha-community.org/ + + + Koha community with protocol + https://koha-community.org/ + + + KohaCon 2024 logo image + jpeg + https://2024.kohacon.org/wp-content/uploads/2024/01/kohacon24_fr_verticale_vert_noir.png + + + cbc + copycat + 3 + ncip + 20 + y-soundrec + + + ddc + MU + + + 76 + 76 + +' where biblionumber=76}); + + + # Other information + say_info( $out, "Test data for 38096 added." ); + }, +}; -- 2.39.5