summaryrefslogtreecommitdiffstats
path: root/src/tests/vsprintf_test.c
blob: f388b3ded6349c15258b7bb4994cab3cf51e5664 (plain) (blame)
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
/*
 * Copyright (C) 2012 Michael Brown <mbrown@fensystems.co.uk>.
 *
 * 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 2 of the
 * License, or 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, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA.
 *
 * You can also choose to distribute this program under the terms of
 * the Unmodified Binary Distribution Licence (as given in the file
 * COPYING.UBDL), provided that you have satisfied its requirements.
 */

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );

/** @file
 *
 * vsprintf() self-tests
 *
 */

/* Forcibly enable assertions */
#undef NDEBUG

#include <string.h>
#include <stdio.h>
#include <ipxe/test.h>

/**
 * Report an snprintf() test result
 *
 * @v len		Buffer length
 * @v expected		Expected result
 * @v file		Test code file
 * @v line		Test code line
 * @v format		Format string
 * @v ...		Arguments
 */
static void snprintf_okx ( size_t len, const char *expected, const char *file,
			   unsigned int line, const char *fmt, ... ) {
	char actual[len];
	size_t actual_len;
	va_list args;

	va_start ( args, fmt );
	actual_len = vsnprintf ( actual, sizeof ( actual ), fmt, args );
	va_end ( args );
	okx ( actual_len >= strlen ( expected ), file, line );
	okx ( strcmp ( actual, expected ) == 0, file, line );
	if ( strcmp ( actual, expected ) != 0 ) {
		DBG ( "SNPRINTF expected \"%s\", got \"%s\"\n",
		      expected, actual );
	}
}
#define snprintf_ok( len, result, format, ... )				\
	snprintf_okx ( len, result, __FILE__, __LINE__, format,		\
		       ##__VA_ARGS__ )

/**
 * Perform vsprintf() self-tests
 *
 */
static void vsprintf_test_exec ( void ) {

	/* Constant string */
	snprintf_ok ( 16, "Testing", "Testing" );

	/* Constant string, truncated to fit */
	snprintf_ok ( 5, "Test", "Testing" );

	/* Basic format specifiers */
	snprintf_ok ( 16, "%", "%%" );
	snprintf_ok ( 16, "ABC", "%c%c%c", 'A', 'B', 'C' );
	snprintf_ok ( 16, "abc", "%lc%lc%lc", L'a', L'b', L'c' );
	snprintf_ok ( 16, "Hello world", "%s %s", "Hello", "world" );
	snprintf_ok ( 16, "Goodbye world", "%ls %s", L"Goodbye", "world" );
	snprintf_ok ( 16, "0x1234abcd", "%p", ( ( void * ) 0x1234abcd ) );
	snprintf_ok ( 16, "0xa723", "%#x", 0xa723 );
	snprintf_ok ( 16, "a723", "%x", 0xa723 );
	snprintf_ok ( 16, "0x0000a723", "%#08x", 0xa723 );
	snprintf_ok ( 16, "00A723", "%06X", 0xa723 );
	snprintf_ok ( 16, "9876abcd", "%lx", 0x9876abcdUL );
	snprintf_ok ( 16, "1234 5678", "%04llx %04llx", 0x1234ULL, 0x5678ULL );
	snprintf_ok ( 16, "123", "%d", 123 );
	snprintf_ok ( 16, "456", "%i", 456 );
	snprintf_ok ( 16, " 99", "%3d", 99 );
	snprintf_ok ( 16, "099", "%03d", 99 );
	snprintf_ok ( 16, "-72", "%d", -72 );
	snprintf_ok ( 16, " -72", "%4d", -72 );
	snprintf_ok ( 16, "-072", "%04d", -72 );
	snprintf_ok ( 16, "4", "%zd", sizeof ( uint32_t ) );
	snprintf_ok ( 16, "123456789", "%d", 123456789 );

	/* Realistic combinations */
	snprintf_ok ( 64, "DBG 0x1234 thingy at 0x0003f0c0+0x5c\n",
		      "DBG %p %s at %#08lx+%#zx\n", ( ( void * ) 0x1234 ),
		      "thingy", 0x3f0c0UL, ( ( size_t ) 0x5c ) );
	snprintf_ok ( 64, "PCI 00:1f.3", "PCI %02x:%02x.%x", 0x00, 0x1f, 0x03 );
	snprintf_ok ( 64, "Region [1000000,3f000000)", "Region [%llx,%llx)",
		      0x1000000ULL, 0x3f000000ULL );

	/* Null string (used for debug messages) */
	snprintf_ok ( 16, "<NULL>", "%s", ( ( char * ) NULL ) );
	snprintf_ok ( 16, "<NULL>", "%ls", ( ( wchar_t * ) NULL ) );
}

/** vsprintf() self-test */
struct self_test vsprintf_test __self_test = {
	.name = "vsprintf",
	.exec = vsprintf_test_exec,
};