git subrepo clone https://github.com/libretro/libretro-common.git deps/libretro-common
[pcsx_rearmed.git] / deps / libretro-common / test / hash / test_hash.c
1 /* Copyright  (C) 2021 The RetroArch team
2  *
3  * ---------------------------------------------------------------------------------------
4  * The following license statement only applies to this file (test_stdstring.c).
5  * ---------------------------------------------------------------------------------------
6  *
7  * Permission is hereby granted, free of charge,
8  * to any person obtaining a copy of this software and associated documentation files (the "Software"),
9  * to deal in the Software without restriction, including without limitation the rights to
10  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
11  * and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
16  * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
19  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21  */
22
23 #include <check.h>
24 #include <stdarg.h>
25 #include <stdlib.h>
26 #include <stdio.h>
27
28 #include <lrc_hash.h>
29
30 #define SUITE_NAME "hash"
31
32 START_TEST (test_sha256)
33 {
34    char output[65];
35    sha256_hash(output, (uint8_t*)"abc", 3);
36    ck_assert(!strcmp(output,
37       "ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad"));
38 }
39 END_TEST
40
41 START_TEST (test_sha1)
42 {
43    char output[41];
44    char tmpfile[512];
45    FILE *fd;
46    tmpnam(tmpfile);
47    fd = fopen(tmpfile, "wb");
48    ck_assert(fd != NULL);
49    fwrite("abc", 1, 3, fd);
50    fclose(fd);
51    sha1_calculate(tmpfile, output);
52
53    ck_assert(!strcmp(output,
54       "A9993E364706816ABA3E25717850C26C9CD0D89D"));
55 }
56 END_TEST
57
58 START_TEST (test_djb2)
59 {
60    ck_assert_uint_eq(djb2_calculate("retroarch"), 0xFADF3BCF);
61 }
62 END_TEST
63
64 Suite *create_suite(void)
65 {
66    Suite *s = suite_create(SUITE_NAME);
67
68    TCase *tc_core = tcase_create("Core");
69    tcase_add_test(tc_core, test_sha256);
70    tcase_add_test(tc_core, test_sha1);
71    tcase_add_test(tc_core, test_djb2);
72    suite_add_tcase(s, tc_core);
73
74    return s;
75 }
76
77 int main(void)
78 {
79    int num_fail;
80    Suite *s = create_suite();
81    SRunner *sr = srunner_create(s);
82    srunner_run_all(sr, CK_NORMAL);
83    num_fail = srunner_ntests_failed(sr);
84    srunner_free(sr);
85    return (num_fail == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
86 }