Loading...
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | // SPDX-License-Identifier: GPL-2.0+ /* * Simple unit test library * * Copyright (c) 2013 Google, Inc */ #include <console.h> #include <malloc.h> #ifdef CONFIG_SANDBOX #include <asm/state.h> #endif #include <asm/global_data.h> #include <test/test.h> #include <test/ut.h> DECLARE_GLOBAL_DATA_PTR; void ut_fail(struct unit_test_state *uts, const char *fname, int line, const char *func, const char *cond) { gd->flags &= ~(GD_FLG_SILENT | GD_FLG_RECORD); printf("%s:%d, %s(): %s\n", fname, line, func, cond); uts->fail_count++; } void ut_failf(struct unit_test_state *uts, const char *fname, int line, const char *func, const char *cond, const char *fmt, ...) { va_list args; gd->flags &= ~(GD_FLG_SILENT | GD_FLG_RECORD); printf("%s:%d, %s(): %s: ", fname, line, func, cond); va_start(args, fmt); vprintf(fmt, args); va_end(args); putc('\n'); uts->fail_count++; } ulong ut_check_free(void) { struct mallinfo info = mallinfo(); return info.uordblks; } long ut_check_delta(ulong last) { return ut_check_free() - last; } static int readline_check(struct unit_test_state *uts) { int ret; ret = console_record_readline(uts->actual_str, sizeof(uts->actual_str)); if (ret == -ENOSPC) { ut_fail(uts, __FILE__, __LINE__, __func__, "Console record buffer too small - increase CONFIG_CONSOLE_RECORD_OUT_SIZE"); return ret; } else if (ret == -ENOENT) { strcpy(uts->actual_str, "<no-more-output>"); } return ret; } int ut_check_console_line(struct unit_test_state *uts, const char *fmt, ...) { va_list args; int len; int ret; va_start(args, fmt); len = vsnprintf(uts->expect_str, sizeof(uts->expect_str), fmt, args); va_end(args); if (len >= sizeof(uts->expect_str)) { ut_fail(uts, __FILE__, __LINE__, __func__, "unit_test_state->expect_str too small"); return -EOVERFLOW; } ret = readline_check(uts); if (ret == -ENOENT) return 1; return strcmp(uts->expect_str, uts->actual_str); } int ut_check_console_linen(struct unit_test_state *uts, const char *fmt, ...) { va_list args; int len; int ret; va_start(args, fmt); len = vsnprintf(uts->expect_str, sizeof(uts->expect_str), fmt, args); va_end(args); if (len >= sizeof(uts->expect_str)) { ut_fail(uts, __FILE__, __LINE__, __func__, "unit_test_state->expect_str too small"); return -EOVERFLOW; } ret = readline_check(uts); if (ret < 0) return ret; return strncmp(uts->expect_str, uts->actual_str, strlen(uts->expect_str)); } int ut_check_skipline(struct unit_test_state *uts) { int ret; if (!console_record_avail()) return -ENFILE; ret = readline_check(uts); if (ret < 0) return ret; return 0; } int ut_check_skip_to_linen(struct unit_test_state *uts, const char *fmt, ...) { va_list args; int len; int ret; va_start(args, fmt); len = vsnprintf(uts->expect_str, sizeof(uts->expect_str), fmt, args); va_end(args); if (len >= sizeof(uts->expect_str)) { ut_fail(uts, __FILE__, __LINE__, __func__, "unit_test_state->expect_str too small"); return -EOVERFLOW; } while (1) { if (!console_record_avail()) return -ENOENT; ret = readline_check(uts); if (ret < 0) return ret; if (!strncmp(uts->expect_str, uts->actual_str, strlen(uts->expect_str))) return 0; } } int ut_check_skip_to_line(struct unit_test_state *uts, const char *fmt, ...) { va_list args; int len; int ret; va_start(args, fmt); len = vsnprintf(uts->expect_str, sizeof(uts->expect_str), fmt, args); va_end(args); if (len >= sizeof(uts->expect_str)) { ut_fail(uts, __FILE__, __LINE__, __func__, "unit_test_state->expect_str too small"); return -EOVERFLOW; } while (1) { if (!console_record_avail()) return -ENOENT; ret = readline_check(uts); if (ret < 0) return ret; if (!strcmp(uts->expect_str, uts->actual_str)) return 0; } } int ut_check_console_end(struct unit_test_state *uts) { int ret; if (!console_record_avail()) return 0; ret = readline_check(uts); if (ret < 0) return ret; return 1; } int ut_check_console_dump(struct unit_test_state *uts, int total_bytes) { char *str = uts->actual_str; int upto; /* Handle empty dump */ if (!total_bytes) return 0; for (upto = 0; upto < total_bytes;) { int len; int bytes; len = console_record_readline(str, sizeof(uts->actual_str)); if (str[8] != ':' || str[9] != ' ') return 1; bytes = len - 8 - 2 - 3 * 16 - 2; upto += bytes; } return upto == total_bytes ? 0 : 1; } void ut_silence_console(struct unit_test_state *uts) { #ifdef CONFIG_SANDBOX struct sandbox_state *state = state_get_current(); if (!state->show_test_output) gd->flags |= GD_FLG_SILENT; #endif } void ut_unsilence_console(struct unit_test_state *uts) { gd->flags &= ~(GD_FLG_SILENT | GD_FLG_RECORD); } void ut_set_skip_delays(struct unit_test_state *uts, bool skip_delays) { #ifdef CONFIG_SANDBOX state_set_skip_delays(skip_delays); #endif } |