diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 19:17:32 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 19:17:32 +0000 |
commit | e38d2351b83fa65c66ccde443777647ef5cb6cff (patch) | |
tree | 1897fc20e9f73a81c520a5b9f76f8ed042124883 /src/tests/isbntest.cpp | |
download | tellico-e38d2351b83fa65c66ccde443777647ef5cb6cff.tar.gz tellico-e38d2351b83fa65c66ccde443777647ef5cb6cff.zip |
Added KDE3 version of Tellico
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1097620 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/tests/isbntest.cpp')
-rw-r--r-- | src/tests/isbntest.cpp | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/src/tests/isbntest.cpp b/src/tests/isbntest.cpp new file mode 100644 index 0000000..b4c5fee --- /dev/null +++ b/src/tests/isbntest.cpp @@ -0,0 +1,73 @@ +#ifdef QT_NO_CAST_ASCII +#undef QT_NO_CAST_ASCII +#endif + +#include "isbnvalidator.h" + +#include <kdebug.h> + +#include <stdlib.h> + +bool check(QString a, QString 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; +} |