1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
#! /bin/sh
#BEGIN DEPEND------------------------------------------------------------------
INPUT_MODULES='src/lib/perl5/COD/CIF/Data/CODFlags.pm'
#END DEPEND--------------------------------------------------------------------
perl <<'END_SCRIPT'
#------------------------------------------------------------------------------
#$Author: antanas $
#$Date: 2019-12-17 11:46:57 +0200 (Tue, 17 Dec 2019) $
#$Revision: 7614 $
#$URL: svn+ssh://www.crystallography.net/home/coder/svn-repositories/cod-tools/tags/v3.1.0/tests/shtests/has_errors_003.sh $
#------------------------------------------------------------------------------
#*
#* Unit test for the COD::CIF::Data::CODFlags::has_errors subroutine.
#* Tests the way the subroutine behaves when the input data block contains
#* both the COD_ENTRY_ISSUE loop and the '_cod_error_flag' data item.
#**
use strict;
use warnings;
use COD::CIF::Data::CODFlags qw( has_errors );
my $data_block =
{
'name' => 'cod_warnings_both',
'tags' => [
'_cod_error_flag',
'_cod_entry_issue.id',
'_cod_entry_issue.severity'
],
'loops' => [
[ '_cod_entry_issue.id', '_cod_entry_issue.severity' ],
],
'inloop' => {
'_cod_entry_issue.id' => 0,
'_cod_entry_issue.severity' => 0,
},
'values' => {
'_cod_error_flag' => [ 'errors' ],
'_cod_entry_issue.id' => [
'1', '2', '3', '4'
],
'_cod_entry_issue.severity' => [
'note', 'warning', 'error', 'retraction'
],
},
'precisions' => {},
'types' => {
'_cod_error_flag' => [ 'UQSTRING' ],
'_cod_entry_issue.id' => [
'INT', 'INT', 'INT', 'INT'
],
'_cod_entry_issue.severity' => [
'UQSTRING', 'UQSTRING', 'UQSTRING', 'UQSTRING'
]
}
};
# Both approaches describe the block as having warnings
if (has_errors($data_block)) {
print 'Data block \'' . $data_block->{'name'} . '\' contains errors.' . "\n";
} else {
print 'Data block \'' . $data_block->{'name'} . '\' does not contain errors.' . "\n";
}
# Only the COD_ENTRY_ISSUE loop describes the block as having errors
$data_block->{'values'}{'_cod_error_flag'}[0] = 'none';
if (has_errors($data_block)) {
print 'Data block \'' . $data_block->{'name'} . '\' contains errors.' . "\n";
} else {
print 'Data block \'' . $data_block->{'name'} . '\' does not contain errors.' . "\n";
}
# Only the '_cod_error_flag' data item describes the block as having errors
$data_block->{'values'}{'_cod_error_flag'}[0] = 'errors';
$data_block->{'values'}{'_cod_entry_issue.severity'}[2] = 'none';
if (has_errors($data_block)) {
print 'Data block \'' . $data_block->{'name'} . '\' contains errors.' . "\n";
} else {
print 'Data block \'' . $data_block->{'name'} . '\' does not contain errors.' . "\n";
}
# None of the approaches describe the block as having errors
$data_block->{'values'}{'_cod_error_flag'}[0] = 'none';
if (has_errors($data_block)) {
print 'Data block \'' . $data_block->{'name'} . '\' contains errors.' . "\n";
} else {
print 'Data block \'' . $data_block->{'name'} . '\' does not contain errors.' . "\n";
}
END_SCRIPT
|