1 /* $NetBSD: t_print.c,v 1.1 2014/12/02 19:48:21 christos Exp $ */
4 * Copyright (c) 2014 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
31 #include <sys/cdefs.h>
32 __RCSID("$NetBSD: t_print.c,v 1.1 2014/12/02 19:48:21 christos Exp $");
34 #include "net/dl_print.c"
50 (char)0x01, (char)0xa2, (char)0x03,
51 (char)0xc4, (char)0x05, (char)0xf6,
54 "/6#01:a2:03:c4:05:f6",
65 (char)0x11, (char)0x22, (char)0x33,
66 (char)0x44, (char)0x55, (char)0x66,
69 "lo0/24#11:22:33:44:55:66",
79 'n', 'p', 'f', 'l', 'o', 'g', '0', (char)0xa5,
102 ATF_TC_HEAD(dl_print
, tc
)
105 atf_tc_set_md_var(tc
, "descr", "printing of link address");
108 ATF_TC_BODY(dl_print
, tc
)
110 char buf
[LINK_ADDRSTRLEN
];
112 size_t l
= sizeof(buf
);
114 for (size_t i
= 0; i
< __arraycount(tst
); i
++) {
115 r
= dl_print(buf
, l
, &tst
[i
].ia
);
116 ATF_REQUIRE_STREQ(buf
, tst
[i
].str
);
117 ATF_REQUIRE_EQ(r
, tst
[i
].len
);
121 for (size_t i
= 0; i
< __arraycount(tst
); i
++) {
122 r
= dl_print(buf
, l
, &tst
[i
].ia
);
123 ATF_CHECK(strncmp(buf
, tst
[i
].str
, l
- 1) == 0);
125 ATF_REQUIRE_EQ(buf
[l
- 1], '\0');
126 ATF_REQUIRE_EQ(r
, tst
[i
].len
);
131 ATF_TC_HEAD(sdl_print
, tc
)
134 atf_tc_set_md_var(tc
, "descr", "printing of sockaddr_dl");
137 ATF_TC_BODY(sdl_print
, tc
)
142 size_t l
= sizeof(buf
);
143 struct sockaddr_dl sdl
;
145 memset(&sdl
, 0, sizeof(sdl
));
146 for (size_t i
= 0; i
< __arraycount(tst
); i
++) {
147 memcpy(&sdl
.sdl_addr
, &tst
[i
].ia
, sizeof(sdl
.sdl_addr
));
148 sdl
.sdl_index
= (uint16_t)i
;
149 r
= sdl_print(buf
, l
, &sdl
);
150 e
= snprintf(res
, l
, "[%s]:%zu", tst
[i
].str
, i
);
151 ATF_REQUIRE_STREQ(buf
, res
);
152 ATF_REQUIRE_EQ(r
, e
);
156 for (size_t i
= 0; i
< __arraycount(tst
); i
++) {
157 memcpy(&sdl
.sdl_addr
, &tst
[i
].ia
, sizeof(sdl
.sdl_addr
));
158 sdl
.sdl_index
= (uint16_t)i
;
159 r
= sdl_print(buf
, l
, &sdl
);
160 e
= snprintf(res
, l
, "[%s]:%zu", tst
[i
].str
, i
);
161 ATF_REQUIRE_STREQ(buf
, res
);
162 ATF_REQUIRE_EQ(r
, e
);
169 ATF_TP_ADD_TC(tp
, dl_print
);
170 ATF_TP_ADD_TC(tp
, sdl_print
);
171 return atf_no_error();