diff options
author | Tom Gundersen <teg@jklm.no> | 2014-04-17 11:12:41 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-04-19 16:47:52 +0200 |
commit | 7182867e7970741d294237aa83022fcb2774af69 (patch) | |
tree | de20eb1919f1d53c222cef0472dd4cd0eecb3fdd /src/libsystemd | |
parent | 4e996881b2a24390b534d84aa89ba70401cc7e69 (diff) |
sd-rtnl: add multi-part message test
Diffstat (limited to 'src/libsystemd')
-rw-r--r-- | src/libsystemd/sd-rtnl/test-rtnl.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/libsystemd/sd-rtnl/test-rtnl.c b/src/libsystemd/sd-rtnl/test-rtnl.c index 529231a70a..78f5cca665 100644 --- a/src/libsystemd/sd-rtnl/test-rtnl.c +++ b/src/libsystemd/sd-rtnl/test-rtnl.c @@ -322,6 +322,34 @@ static void test_match(void) { assert_se((rtnl = sd_rtnl_unref(rtnl)) == NULL); } +static void test_get_addresses(sd_rtnl *rtnl) { + _cleanup_rtnl_message_unref_ sd_rtnl_message *req = NULL, *reply = NULL; + sd_rtnl_message *m; + + assert_se(sd_rtnl_message_new_addr(rtnl, &req, RTM_GETADDR, 0, AF_UNSPEC) >= 0); + + assert_se(sd_rtnl_call(rtnl, req, 0, &reply) >= 0); + + for (m = reply; m; m = sd_rtnl_message_next(m)) { + uint16_t type; + unsigned char family, scope, flags; + int ifindex; + + assert_se(sd_rtnl_message_get_type(m, &type) >= 0); + assert_se(type == RTM_NEWADDR); + + assert_se(sd_rtnl_message_addr_get_ifindex(m, &ifindex) >= 0); + assert_se(sd_rtnl_message_addr_get_family(m, &family) >= 0); + assert_se(sd_rtnl_message_addr_get_scope(m, &scope) >= 0); + assert_se(sd_rtnl_message_addr_get_flags(m, &flags) >= 0); + + assert_se(ifindex > 0); + assert_se(family == AF_INET || family == AF_INET6); + + log_info("got IPv%u address on ifindex %i", family == AF_INET ? 4: 6, ifindex); + } +} + int main(void) { sd_rtnl *rtnl; sd_rtnl_message *m; @@ -352,6 +380,8 @@ int main(void) { test_link_configure(rtnl, if_loopback); + test_get_addresses(rtnl); + assert_se(sd_rtnl_message_new_link(rtnl, &m, RTM_GETLINK, if_loopback) >= 0); assert_se(m); |