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
|
#ifdef TQT_NO_CAST_ASCII
#undef TQT_NO_CAST_ASCII
#endif
#include "isbnvalidator.h"
#include <kdebug.h>
#include <stdlib.h>
bool check(TQString a, TQString b) {
static const Tellico::ISBNValidator val(0);
val.fixup(a);
if(a == b) {
kdDebug() << "checking '" << a << "' against expected value '" << b << "'... " << "ok" << endl;
} else {
kdDebug() << "checking '" << a << "' against expected value '" << b << "'... " << "KO!" << endl;
exit(1);
}
return true;
}
int main(int, char**) {
kdDebug() << "\n*****************************************************" << endl;
// initial checks
check("0-446-60098-9", "0-446-60098-9");
// check sum value
check("0-446-60098", "0-446-60098-9");
check(Tellico::ISBNValidator::isbn10("978-0-06-087298-4"), "0-06-087298-5");
check(Tellico::ISBNValidator::isbn13("0-06-087298-5"), "978-0-06-087298-4");
// check EAN-13
check("9780940016750", "978-0-940016-75-0");
check("978-0940016750", "978-0-940016-75-0");
check("978-0-940016-75-0", "978-0-940016-75-0");
check("978286274486", "978-2-86274-486-5");
check("9788186119130", "978-81-86-11913-6");
check("9788186119137", "978-81-86-11913-6");
check("97881-8611-9-13-0", "978-81-86-11913-6");
check("97881-8611-9-13-7", "978-81-86-11913-6");
// don't add checksum for EAN that start with 978 or 979 and are less than 13 in length
check("978059600", "978-059600");
check("978-0596000", "978-059600-0");
// normal english-language hyphenation
check("0-596-00053", "0-596-00053-7");
check("044660098", "0-446-60098-9");
check("0446600989", "0-446-60098-9");
// check french hyphenation
check("2862744867", "2-86274-486-7");
// check german hyphenation
check("3423071516", "3-423-07151-6");
// check dutch hyphenation
check("9065442979", "90-6544-297-9");
// check keeping middle hyphens
check("6-18611913-0", "6-18611913-0");
check("6-186119-13-0", "6-186119-13-0");
check("6-18611-9-13-0", "6-18611-913-0");
// check garbage
check("My name is robby", "");
check("http://www.abclinuxu.cz/clanky/show/63080", "6-3080");
kdDebug() << "\n ISBN Validator Test OK !" << endl;
kdDebug() << "\n*****************************************************" << endl;
}
|