/* notmuch - Not much of an email program, (just index and search) * * Copyright © 2009 Jeffrey C. Ollie * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses/ . * * Authors: Jeffrey C. Ollie */ #include #include #include "notmuch-private.h" START_TEST (test_sha1_simple) { char *result; result = notmuch_sha1_of_string("abcdefghi"); fail_if(strcmp("e1435dfb334ec81f2bdd5b0aa45969586e7681c0", result) != 0, "SHA1 results do not match"); } END_TEST Suite * notmuch_suite (void) { Suite *s = suite_create ("NotMuch"); /* SHA1 test cases */ TCase *tc_sha1 = tcase_create ("SHA1"); tcase_add_test (tc_sha1, test_sha1_simple); suite_add_tcase (s, tc_sha1); return s; } int main (void) { int number_failed; Suite *s = notmuch_suite (); SRunner *sr = srunner_create (s); srunner_run_all (sr, CK_VERBOSE); number_failed = srunner_ntests_failed (sr); srunner_free (sr); return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE; }