Expand some query-related testcases
[xapian.git] / xapian-applications / omega / md5test.cc
blob0bc64cb0f72caab6ca92b990151d1f637ca680a1
1 /** @file
2 * @brief test cases for the MD5 code
3 */
4 /* Copyright (C) 2006 Olly Betts
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include <config.h>
23 #include <cstdlib>
24 #include <iostream>
25 #include <string>
27 #include <cstdio>
29 #include "md5wrap.h"
31 using namespace std;
33 struct testcase {
34 const char * string;
35 const char * hash;
38 static testcase md5_testcases[] = {
39 { "", "d41d8cd98f00b204e9800998ecf8427e" },
40 { "test", "098f6bcd4621d373cade4e832627b4f6" },
41 { "\x80\x81\x82", "b385760a988b494d3f9df43456928176" },
42 { NULL, NULL }
45 int main() {
46 string md5;
47 for (testcase * t = md5_testcases; t->string; ++t) {
48 string hexhash;
49 md5_string(t->string, md5);
50 for (size_t i = 0; i < md5.size(); ++i) {
51 char buf[16];
52 sprintf(buf, "%02x", static_cast<unsigned char>(md5[i]));
53 hexhash += buf;
55 if (hexhash != t->hash) {
56 cerr << "md5 of \"" << t->string << "\" should be \"" << t->hash << "\" not \"" << hexhash << "\"" << endl;
57 exit(1);