blob: 71de8a30760a8c35e3976bdf350ef85d5f299caa [file] [log] [blame]
Jeremy Kerr3d36ee22019-05-30 11:15:37 +08001/* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
Jeremy Kerr18925112019-03-13 15:43:08 +08002
3#include <string.h>
4#include <assert.h>
5
6#include <libmctp.h>
7#include <libmctp-alloc.h>
8
9#include "test-utils.h"
10
11struct mctp_binding_test {
12 struct mctp_binding binding;
13};
14
15static int mctp_binding_test_tx(struct mctp_binding *b __attribute__((unused)),
16 struct mctp_pktbuf *pkt __attribute__((unused)))
17{
18 /* we are not expecting TX packets */
19 assert(0);
20}
21
22struct mctp_binding_test *mctp_binding_test_init(void)
23{
24 struct mctp_binding_test *test;
25
26 test = __mctp_alloc(sizeof(*test));
27 test->binding.name = "test";
28 test->binding.version = 1;
29 test->binding.tx = mctp_binding_test_tx;
30 return test;
31}
32
33void mctp_binding_test_rx_raw(struct mctp_binding_test *test,
34 void *buf, size_t len)
35{
36 struct mctp_pktbuf *pkt;
37
38 pkt = mctp_pktbuf_alloc(len);
39 assert(pkt);
40 memcpy(mctp_pktbuf_hdr(pkt), buf, len);
41 mctp_bus_rx(&test->binding, pkt);
Jeremy Kerr18925112019-03-13 15:43:08 +080042}
43
44void mctp_binding_test_register_bus(struct mctp_binding_test *binding,
45 struct mctp *mctp, mctp_eid_t eid)
46{
47 mctp_register_bus(mctp, &binding->binding, eid);
48}
49
50void mctp_test_stack_init(struct mctp **mctp,
51 struct mctp_binding_test **binding,
52 mctp_eid_t eid)
53{
54 *mctp = mctp_init();
55 assert(*mctp);
56
57 *binding = mctp_binding_test_init();
58 assert(*binding);
59
60 mctp_binding_test_register_bus(*binding, *mctp, eid);
61}