Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ba308a2ec41c3a5677887e9ae9af85b72d9a3ff5
[simgrid.git] / src / kernel / routing / FullZone_test.cpp
1 /* Copyright (c) 2017-2021. The SimGrid Team. All rights reserved.               */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "catch.hpp"
7
8 #include "simgrid/kernel/routing/FullZone.hpp"
9 #include "simgrid/kernel/routing/NetPoint.hpp"
10 #include "simgrid/s4u/Engine.hpp"
11 #include "simgrid/s4u/Host.hpp"
12 #include "simgrid/s4u/NetZone.hpp"
13 #include "src/surf/network_interface.hpp" //LinkImpl
14
15 TEST_CASE("kernel::routing::FullZone: Creating Zone", "")
16 {
17   simgrid::s4u::Engine e("test");
18
19   REQUIRE(simgrid::s4u::create_full_zone("test"));
20 }
21
22 TEST_CASE("kernel::routing::FullZone: mix new routes and hosts", "[bug]")
23 {
24   simgrid::s4u::Engine e("test");
25   auto* zone = simgrid::s4u::create_full_zone("test");
26
27   const simgrid::s4u::Host* nic  = zone->create_host("nic", 1e9)->seal();
28   const simgrid::s4u::Link* link = zone->create_link("my_link", 1e6)->seal();
29   for (int i = 0; i < 10; i++) {
30     std::string cpu_name          = "CPU" + std::to_string(i);
31     const simgrid::s4u::Host* cpu = zone->create_host(cpu_name, 1e9)->seal();
32     REQUIRE_NOTHROW(zone->add_route(cpu->get_netpoint(), nic->get_netpoint(), nullptr, nullptr,
33                                     std::vector<simgrid::s4u::LinkInRoute>{link}, true));
34   }
35 }