summaryrefslogtreecommitdiffstats
path: root/nixos/tests/gobgpd.nix
blob: 8491e1893403a17be481c093089cc7df63acaaa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{ pkgs, ... }:
let
  ifAddr =
    node: iface: (pkgs.lib.head node.config.networking.interfaces.${iface}.ipv4.addresses).address;
in
{
  name = "gobgpd";

  meta = with pkgs.lib.maintainers; {
    maintainers = [ higebu ];
  };

  nodes = {
    node1 =
      { nodes, ... }:
      {
        environment.systemPackages = [ pkgs.gobgp ];
        networking.firewall.allowedTCPPorts = [ 179 ];
        services.gobgpd = {
          enable = true;
          settings = {
            global = {
              config = {
                as = 64512;
                router-id = "192.168.255.1";
              };
            };
            neighbors = [
              {
                config = {
                  neighbor-address = ifAddr nodes.node2 "eth1";
                  peer-as = 64513;
                };
              }
            ];
          };
        };
      };
    node2 =
      { nodes, ... }:
      {
        environment.systemPackages = [ pkgs.gobgp ];
        networking.firewall.allowedTCPPorts = [ 179 ];
        services.gobgpd = {
          enable = true;
          settings = {
            global = {
              config = {
                as = 64513;
                router-id = "192.168.255.2";
              };
            };
            neighbors = [
              {
                config = {
                  neighbor-address = ifAddr nodes.node1 "eth1";
                  peer-as = 64512;
                };
              }
            ];
          };
        };
      };
  };

  testScript =
    { nodes, ... }:
    let
      addr1 = ifAddr nodes.node1 "eth1";
      addr2 = ifAddr nodes.node2 "eth1";
    in
    ''
      start_all()

      for node in node1, node2:
          with subtest("should start gobgpd node"):
              node.wait_for_unit("gobgpd.service")
          with subtest("should open port 179"):
              node.wait_for_open_port(179)

      with subtest("should show neighbors by gobgp cli and BGP state should be ESTABLISHED"):
          node1.wait_until_succeeds("gobgp neighbor ${addr2} | grep -q ESTABLISHED")
          node2.wait_until_succeeds("gobgp neighbor ${addr1} | grep -q ESTABLISHED")
    '';
}