Lines Matching full:route
38 #include "route.h"
347 zassert_not_null(test_mcast_routes[0], "mcast route add failed"); in test_route_mcast_route_add()
351 zassert_not_null(test_mcast_routes[1], "mcast route add failed"); in test_route_mcast_route_add()
355 zassert_not_null(test_mcast_routes[2], "mcast route add failed"); in test_route_mcast_route_add()
359 zassert_not_null(test_mcast_routes[3], "mcast route add failed"); in test_route_mcast_route_add()
361 /* check if route can be added in test_route_mcast_route_add()
366 zassert_is_null(test_mcast_routes[4], "mcast route add should fail"); in test_route_mcast_route_add()
404 struct net_route_entry_mcast *route = in test_route_mcast_lookup() local
407 zassert_equal_ptr(test_mcast_routes[0], route, in test_route_mcast_lookup()
410 route = net_route_mcast_lookup(&mcast_prefix_site_local); in test_route_mcast_lookup()
412 zassert_equal_ptr(test_mcast_routes[1], route, in test_route_mcast_lookup()
415 route = net_route_mcast_lookup(&mcast_prefix_global); in test_route_mcast_lookup()
417 zassert_equal_ptr(test_mcast_routes[3], route, in test_route_mcast_lookup()
422 struct net_route_entry_mcast *route; in test_route_mcast_route_del() local
425 zassert_true(success, "failed to delete mcast route"); in test_route_mcast_route_del()
427 route = net_route_mcast_lookup(&mcast_prefix_admin); in test_route_mcast_route_del()
428 zassert_is_null(route, "lookup found deleted route"); in test_route_mcast_route_del()
431 zassert_true(success, "failed to delete mcast route"); in test_route_mcast_route_del()
433 route = net_route_mcast_lookup(&mcast_prefix_site_local); in test_route_mcast_route_del()
434 zassert_is_null(route, "lookup found deleted route"); in test_route_mcast_route_del()
437 zassert_true(success, "failed to delete mcast route"); in test_route_mcast_route_del()
440 zassert_true(success, "failed to delete mcast route"); in test_route_mcast_route_del()
443 zassert_true(success, "failed to delete mcast route"); in test_route_mcast_route_del()
446 zassert_true(success, "failed to delete mcast route"); in test_route_mcast_route_del()
579 * iface 3 route is set to all nodes in test_route_mcast_scenario3()
667 struct net_route_entry_mcast *route; in test_route_mcast_multiple_route_ifaces() local
696 route = net_route_mcast_lookup(&mcast_prefix_site_local); in test_route_mcast_multiple_route_ifaces()
697 zassert_not_null(route, "failed to find the route entry"); in test_route_mcast_multiple_route_ifaces()
700 res = net_route_mcast_iface_add(route, iface_1); in test_route_mcast_multiple_route_ifaces()
723 res = net_route_mcast_iface_del(route, iface_1); in test_route_mcast_multiple_route_ifaces()