golden hour
/opt/alt/php56/usr/share/pear/test/File_MARC/tests
⬆️ Go Up
Upload
File/Folder
Size
Actions
bad_example.mrc
1.81 KB
Del
OK
bad_example.xml
7.11 KB
Del
OK
bigarchive.xml
3.43 KB
Del
OK
camel.mrc
6.83 KB
Del
OK
example.mrc
1.81 KB
Del
OK
marc_001.phpt
2.45 KB
Del
OK
marc_002.phpt
4.6 KB
Del
OK
marc_003.phpt
1.35 KB
Del
OK
marc_004.phpt
9.35 KB
Del
OK
marc_005.phpt
3.42 KB
Del
OK
marc_006.phpt
1.28 KB
Del
OK
marc_007.phpt
1.18 KB
Del
OK
marc_008.phpt
478 B
Del
OK
marc_009.phpt
1.51 KB
Del
OK
marc_010.phpt
4.59 KB
Del
OK
marc_011.phpt
2.69 KB
Del
OK
marc_012.phpt
1.74 KB
Del
OK
marc_013.phpt
8.32 KB
Del
OK
marc_014.phpt
3.49 KB
Del
OK
marc_015.phpt
4.76 KB
Del
OK
marc_016.phpt
12.36 KB
Del
OK
marc_017.phpt
4.07 KB
Del
OK
marc_018.phpt
3.1 KB
Del
OK
marc_019.phpt
4.04 KB
Del
OK
marc_020.phpt
3.87 KB
Del
OK
marc_021.phpt
4.76 KB
Del
OK
marc_022.phpt
10.26 KB
Del
OK
marc_023.phpt
540 B
Del
OK
marc_16783.phpt
2.43 KB
Del
OK
marc_field_001.phpt
895 B
Del
OK
marc_field_002.phpt
559 B
Del
OK
marc_field_003.phpt
1.65 KB
Del
OK
marc_field_004.phpt
937 B
Del
OK
marc_field_005.phpt
1015 B
Del
OK
marc_field_21246.phpt
812 B
Del
OK
marc_lint_001.phpt
4.41 KB
Del
OK
marc_lint_002.phpt
2.3 KB
Del
OK
marc_lint_003.phpt
2.73 KB
Del
OK
marc_lint_004.phpt
5.07 KB
Del
OK
marc_lint_005.phpt
2.63 KB
Del
OK
marc_record_001.phpt
561 B
Del
OK
marc_subfield_001.phpt
733 B
Del
OK
marc_subfield_002.phpt
1.04 KB
Del
OK
marc_xml_001.phpt
7.47 KB
Del
OK
marc_xml_002.phpt
3.54 KB
Del
OK
marc_xml_003.phpt
1.46 KB
Del
OK
marc_xml_004.phpt
2.76 KB
Del
OK
marc_xml_005.phpt
1.48 KB
Del
OK
marc_xml_006.phpt
1.42 KB
Del
OK
marc_xml_007.phpt
986 B
Del
OK
marc_xml_008.phpt
12.38 KB
Del
OK
marc_xml_009.phpt
1.09 KB
Del
OK
marc_xml_16642.phpt
930 B
Del
OK
marc_xml_namespace.phpt
720 B
Del
OK
marc_xml_namespace_prefix.phpt
699 B
Del
OK
marc_xml_rsinger.phpt
2.45 KB
Del
OK
music.mrc
4.17 KB
Del
OK
music.xml
11.38 KB
Del
OK
namespace.xml
7.9 KB
Del
OK
onerecord.xml
3.23 KB
Del
OK
sandburg.mrc
1.12 KB
Del
OK
sandburg.xml
3.26 KB
Del
OK
skipif.inc
177 B
Del
OK
xmlescape.mrc
728 B
Del
OK
Edit: marc_lint_005.phpt
--TEST-- marc_lint_005: Tests check_020() called separately --SKIPIF-- <?php include('tests/skipif.inc'); ?> <?php include('tests/skipif_noispn.inc'); ?> --FILE-- <?php $dir = dirname(__FILE__); require __DIR__ . '/bootstrap.php'; // Create test harness to allow direct calls to check methods: class File_MARC_Lint_Test_Harness extends File_MARC_Lint { public function check020($field) { return parent::check020($field); } // override warn method to echo instead of store in object: protected function warn($msg) { echo $msg . "\n"; } } $marc_lint = new File_MARC_Lint_Test_Harness(); $testData = array( array('a' => "154879473"), //too few digits array('a' => "1548794743"), //invalid checksum array('a' => "15487947443"), //11 digits array('a' => "15487947443324"), //14 digits array('a' => "9781548794743"), //13 digit valid array('a' => "9781548794745"), //13 digit invalid array('a' => "1548794740 (10 : good checksum)"), //10 digit valid with qualifier array('a' => "1548794745 (10 : bad checksum)"), //10 digit invalid with qualifier array('a' => "1-54879-474-0 (hyphens and good checksum)"), //10 digit invalid with hyphens and qualifier array('a' => "1-54879-474-5 (hyphens and bad checksum)"), //10 digit invalid with hyphens and qualifier array('a' => "1548794740(10 : unspaced qualifier)"), //10 valid without space before qualifier array('a' => "1548794745(10 : unspaced qualifier : bad checksum)"), //10 invalid without space before qualifier array('z' => "1548794743"), //subfield z ); foreach ($testData as $current) { $subfields = array(); foreach ($current as $key => $value) { $subfields[] = new File_MARC_Subfield($key, $value); } $field = new File_MARC_Data_Field('020', $subfields, '', ''); $marc_lint->check020($field); } ?> --EXPECT-- 020: Subfield a has the wrong number of digits, 154879473. 020: Subfield a has bad checksum, 1548794743. 020: Subfield a has the wrong number of digits, 15487947443. 020: Subfield a has the wrong number of digits, 15487947443324. 020: Subfield a has bad checksum (13 digit), 9781548794745. 020: Subfield a has bad checksum, 1548794745 (10 : bad checksum). 020: Subfield a may have invalid characters. 020: Subfield a may have invalid characters. 020: Subfield a has bad checksum, 1-54879-474-5 (hyphens and bad checksum). 020: Subfield a qualifier must be preceded by space, 1548794740(10 : unspaced qualifier). 020: Subfield a qualifier must be preceded by space, 1548794745(10 : unspaced qualifier : bad checksum). 020: Subfield a has bad checksum, 1548794745(10 : unspaced qualifier : bad checksum).
Save