blob: c64f0b554d5788be57eafcc88327e12d50c1bacd [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Joe Hershbergere721b882015-05-20 14:27:27 -05002/*
3 * Simple unit test library
4 *
5 * Copyright (c) 2013 Google, Inc
Joe Hershbergere721b882015-05-20 14:27:27 -05006 */
7
8#include <common.h>
Simon Glass400175b2020-01-27 08:49:56 -07009#include <console.h>
Simon Glass81098632019-12-29 21:19:23 -070010#include <malloc.h>
Joe Hershbergere721b882015-05-20 14:27:27 -050011#include <test/test.h>
12#include <test/ut.h>
13
Simon Glass9ce8b402015-11-08 23:47:50 -070014DECLARE_GLOBAL_DATA_PTR;
15
Joe Hershbergere721b882015-05-20 14:27:27 -050016void ut_fail(struct unit_test_state *uts, const char *fname, int line,
17 const char *func, const char *cond)
18{
Simon Glass9ce8b402015-11-08 23:47:50 -070019 gd->flags &= ~(GD_FLG_SILENT | GD_FLG_RECORD);
Joe Hershbergere721b882015-05-20 14:27:27 -050020 printf("%s:%d, %s(): %s\n", fname, line, func, cond);
21 uts->fail_count++;
22}
23
24void ut_failf(struct unit_test_state *uts, const char *fname, int line,
25 const char *func, const char *cond, const char *fmt, ...)
26{
27 va_list args;
28
Simon Glass9ce8b402015-11-08 23:47:50 -070029 gd->flags &= ~(GD_FLG_SILENT | GD_FLG_RECORD);
Joe Hershbergere721b882015-05-20 14:27:27 -050030 printf("%s:%d, %s(): %s: ", fname, line, func, cond);
31 va_start(args, fmt);
32 vprintf(fmt, args);
33 va_end(args);
34 putc('\n');
35 uts->fail_count++;
36}
Simon Glass81098632019-12-29 21:19:23 -070037
38ulong ut_check_free(void)
39{
40 struct mallinfo info = mallinfo();
41
42 return info.uordblks;
43}
44
45long ut_check_delta(ulong last)
46{
47 return ut_check_free() - last;
48}
49
Simon Glass400175b2020-01-27 08:49:56 -070050int ut_check_console_line(struct unit_test_state *uts, const char *fmt, ...)
51{
52 va_list args;
53
54 va_start(args, fmt);
55 vsnprintf(uts->expect_str, sizeof(uts->expect_str), fmt, args);
56 va_end(args);
57 console_record_readline(uts->actual_str, sizeof(uts->actual_str));
58
59 return strcmp(uts->expect_str, uts->actual_str);
60}
61
62int ut_check_console_end(struct unit_test_state *uts)
63{
64 if (!console_record_avail())
65 return 0;
66
67 console_record_readline(uts->actual_str, sizeof(uts->actual_str));
68
69 return 1;
70}
71
72int ut_check_console_dump(struct unit_test_state *uts, int total_bytes)
73{
74 char *str = uts->actual_str;
75 int upto;
76
77 /* Handle empty dump */
78 if (!total_bytes)
79 return 0;
80
81 for (upto = 0; upto < total_bytes;) {
82 int len;
83 int bytes;
84
85 len = console_record_readline(str, sizeof(uts->actual_str));
86 if (str[8] != ':' || str[9] != ' ')
87 return 1;
88
89 bytes = len - 8 - 2 - 3 * 16 - 4;
90 upto += bytes;
91 }
92
93 return upto == total_bytes ? 0 : 1;
94}