summaryrefslogtreecommitdiff
path: root/spec/unit/plugins/linux/network_spec.rb
blob: 48f84ffcb33bcc54bf97322966a7962438faea07 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
#
#  Author:: Caleb Tennis <caleb.tennis@gmail.com>
#  Author:: Chris Read <chris.read@gmail.com>
#  Copyright:: Copyright (c) 2011-2016 Chef Software, Inc.
#  License:: Apache License, Version 2.0
#
#  Licensed under the Apache License, Version 2.0 (the "License");
#  you may not use this file except in compliance with the License.
#  You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS,
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  See the License for the specific language governing permissions and
#  limitations under the License.
#

require "spec_helper"

describe Ohai::System, "Linux Network Plugin" do
  let(:plugin) { get_plugin("linux/network") }

  let(:linux_ifconfig) do
    <<~EOM
      eth0      Link encap:Ethernet  HWaddr 12:31:3D:02:BE:A2
                inet addr:10.116.201.76  Bcast:10.116.201.255  Mask:255.255.255.0
                inet6 addr: fe80::1031:3dff:fe02:bea2/64 Scope:Link
                UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
                RX packets:2659966 errors:0 dropped:0 overruns:0 frame:0
                TX packets:1919690 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:1000
                RX bytes:1392844460 (1.2 GiB)  TX bytes:691785313 (659.7 MiB)
                Interrupt:16

      eth0:5    Link encap:Ethernet  HWaddr 00:0c:29:41:71:45
                inet addr:192.168.5.1  Bcast:192.168.5.255  Mask:255.255.255.0
                UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

      eth0.11   Link encap:Ethernet  HWaddr 00:aa:bb:cc:dd:ee
                inet addr:192.168.0.16  Bcast:192.168.0.255  Mask:255.255.255.0
                inet6 addr: fe80::2aa:bbff:fecc:ddee/64 Scope:Link
                inet6 addr: 1111:2222:3333:4444::2/64 Scope:Global
                inet6 addr: 1111:2222:3333:4444::3/64 Scope:Global
                UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
                RX packets:1208795008 errors:0 dropped:0 overruns:0 frame:0
                TX packets:3269635153 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:0
                RX bytes:1751940374 (1.6 GiB)  TX bytes:2195567597 (2.0 GiB)

      eth0.151  Link encap:Ethernet  HWaddr 00:aa:bb:cc:dd:ee
                inet addr:10.151.0.16  Bcast:10.151.0.255  Mask:255.255.255.0
                inet6 addr: fe80::2aa:bbff:fecc:ddee/64 Scope:Link
                UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
                RX packets:206553677 errors:0 dropped:0 overruns:0 frame:0
                TX packets:163901336 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:0
                RX bytes:3190792261 (2.9 GiB)  TX bytes:755086548 (720.1 MiB)

      eth0.152  Link encap:Ethernet  HWaddr 00:aa:bb:cc:dd:ee
                inet addr:10.152.1.16  Bcast:10.152.3.255  Mask:255.255.252.0
                inet6 addr: fe80::2aa:bbff:fecc:ddee/64 Scope:Link
                UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
                RX packets:14016741 errors:0 dropped:0 overruns:0 frame:0
                TX packets:55232 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:0
                RX bytes:664957462 (634.1 MiB)  TX bytes:4876434 (4.6 MiB)

      eth0.153  Link encap:Ethernet  HWaddr 00:aa:bb:cc:dd:ee
                inet addr:10.153.1.16  Bcast:10.153.3.255  Mask:255.255.252.0
                inet6 addr: fe80::2aa:bbff:fecc:ddee/64 Scope:Link
                UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
                RX packets:2022667595 errors:0 dropped:0 overruns:0 frame:0
                TX packets:1798627472 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:0
                RX bytes:4047036732 (3.7 GiB)  TX bytes:3451231474 (3.2 GiB)

      foo:veth0@eth0 Link encap:Ethernet  HWaddr ca:b3:73:8b:0c:e4
                BROADCAST MULTICAST  MTU:1500  Metric:1

      tun0      Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
                inet addr:172.16.19.39  P-t-P:172.16.19.1  Mask:255.255.255.255
                UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1418  Metric:1
                RX packets:57200 errors:0 dropped:0 overruns:0 frame:0
                TX packets:13782 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:100
                RX bytes:7377600 (7.0 MiB)  TX bytes:1175481 (1.1 MiB)

      venet0    Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
                UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1418  Metric:1
                RX packets:57200 errors:0 dropped:0 overruns:0 frame:0
                TX packets:13782 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:100
                RX bytes:7377600 (7.0 MiB)  TX bytes:1175481 (1.1 MiB)

      venet0:0  Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
                UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1418  Metric:1
                RX packets:57200 errors:0 dropped:0 overruns:0 frame:0
                TX packets:13782 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:100
                RX bytes:7377600 (7.0 MiB)  TX bytes:1175481 (1.1 MiB)

      lo        Link encap:Local Loopback
                inet addr:127.0.0.1  Mask:255.0.0.0
                inet6 addr: ::1/128 Scope:Host
                UP LOOPBACK RUNNING  MTU:16436  Metric:1
                RX packets:524 errors:0 dropped:0 overruns:0 frame:0
                TX packets:524 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:0
                RX bytes:35224 (34.3 KiB)  TX bytes:35224 (34.3 KiB)

      eth3      Link encap:Ethernet  HWaddr E8:39:35:C5:C8:54
                UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
                RX packets:13395101 errors:0 dropped:0 overruns:0 frame:0
                TX packets:9492909 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:1000
                RX bytes:1325650573 (1.2 GiB)  TX bytes:1666310189 (1.5 GiB)
                Interrupt:36 Memory:f4800000-f4ffffff

      eth13     Link encap:Ethernet  HWaddr 00:ba:ba:10:21:21
                inet addr:10.21.21.21  Bcast:10.21.21.255  Mask:255.255.255.0
                inet6 addr: fe80::2ba:baff:fe10:2121/64 Scope:Link
                UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
                RX packets:21 errors:0 dropped:0 overruns:0 frame:0
                TX packets:21 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:1000
                RX bytes:21 (2.1 GiB)  TX bytes:21 (2.1 GiB)
                Interrupt:21

      ovs-system Link encap:Ethernet  HWaddr 7A:7A:80:80:6C:24
                BROADCAST MULTICAST  MTU:1500  Metric:1
                RX packets:0 errors:0 dropped:0 overruns:0 frame:0
                TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:0
                RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)

      xapi1     Link encap:Ethernet  HWaddr E8:39:35:C5:C8:50
                inet addr:192.168.13.34  Bcast:192.168.13.255  Mask:255.255.255.0
                UP BROADCAST RUNNING  MTU:1500  Metric:1
                RX packets:160275 errors:0 dropped:0 overruns:0 frame:0
                TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
                collisions:0 txqueuelen:0
                RX bytes:21515031 (20.5 MiB)  TX bytes:2052 (2.0 KiB)

      fwdintf   Link encap:Ethernet  HWaddr 00:00:00:00:00:0a
                inet6 addr: fe80::200:ff:fe00:a/64 Scope:Link
                UP RUNNING NOARP MULTICAST  MTU:1496  Metric:1
                RX packets:0 errors:0 dropped:0 overruns:0 frame:0
                TX packets:2 errors:0 dropped:1 overruns:0 carrier:0
                collisions:0 txqueuelen:1000
                RX bytes:0 (0.0 B)  TX bytes:140 (140.0 B)
    EOM
    # Note that ifconfig shows foo:veth0@eth0 but fails to show any address information.
    # This was not a mistake collecting the output and Apparently ifconfig is broken in this regard.
  end

  let(:linux_ip_route) do
    <<~EOM
      10.116.201.0/24 dev eth0  proto kernel
      192.168.5.0/24 dev eth0  proto kernel  src 192.168.5.1
      192.168.212.0/24 dev foo:veth0@eth0  proto kernel  src 192.168.212.2
      172.16.151.0/24 dev eth0  proto kernel  src 172.16.151.100
      192.168.0.0/24 dev eth0  proto kernel  src 192.168.0.2
      10.5.4.0/24 \\ nexthop via 10.5.4.1 dev eth0 weight 1\\ nexthop via 10.5.4.2 dev eth0 weight 1
      default via 10.116.201.1 dev eth0
    EOM
  end

  let(:linux_route_n) do
    <<~EOM
      Kernel IP routing table
      Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
      10.116.201.0    0.0.0.0         255.255.255.0   U     0      0        0 eth0
      169.254.0.0     0.0.0.0         255.255.0.0     U     1002   0        0 eth0
      0.0.0.0         10.116.201.1    0.0.0.0         UG    0      0        0 eth0
    EOM
  end

  let(:linux_ip_route_inet6) do
    <<~EOM
      fe80::/64 dev eth0  proto kernel  metric 256
      fe80::/64 dev eth0.11  proto kernel  metric 256
      1111:2222:3333:4444::/64 dev eth0.11  metric 1024  expires 86023sec
      default via 1111:2222:3333:4444::1 dev eth0.11  metric 1024
    EOM
  end

  let(:linux_ip_addr) do
    <<~EOM
      1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
          link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
          inet 127.0.0.1/8 scope host lo
          inet6 ::1/128 scope host
             valid_lft forever preferred_lft forever
      2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
          link/ether 12:31:3d:02:be:a2 brd ff:ff:ff:ff:ff:ff
          inet 10.116.201.76/24 brd 10.116.201.255 scope global eth0
          inet 10.116.201.75/32 scope global eth0
          inet 10.116.201.74/24 scope global secondary eth0
          inet 192.168.5.1/24 brd 192.168.5.255 scope global eth0:5
          inet6 fe80::1031:3dff:fe02:bea2/64 scope link
             valid_lft forever preferred_lft forever
         inet6 2001:44b8:4160:8f00:a00:27ff:fe13:eacd/64 scope global dynamic
             valid_lft 6128sec preferred_lft 2526sec
      3: eth0.11@eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP
          link/ether 00:aa:bb:cc:dd:ee brd ff:ff:ff:ff:ff:ff
          inet 192.168.0.16/24 brd 192.168.0.255 scope global eth0.11
          inet6 fe80::2e0:81ff:fe2b:48e7/64 scope link
          inet6 1111:2222:3333:4444::2/64 scope global
             valid_lft forever preferred_lft forever
          inet6 1111:2222:3333:4444::3/64 scope global
             valid_lft forever preferred_lft forever
      4: eth0.151@eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP
          link/ether 00:aa:bb:cc:dd:ee brd ff:ff:ff:ff:ff:ff
          inet 10.151.0.16/24 brd 10.151.0.255 scope global eth0.151
          inet 10.151.1.16/24 scope global eth0.151
          inet6 fe80::2e0:81ff:fe2b:48e7/64 scope link
             valid_lft forever preferred_lft forever
      5: eth0.152@eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP
          link/ether 00:aa:bb:cc:dd:ee brd ff:ff:ff:ff:ff:ff
          inet 10.152.1.16/22 brd 10.152.3.255 scope global eth0.152
          inet6 fe80::2e0:81ff:fe2b:48e7/64 scope link
             valid_lft forever preferred_lft forever
      6: eth0.153@eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP
          link/ether 00:aa:bb:cc:dd:ee brd ff:ff:ff:ff:ff:ff
          inet 10.153.1.16/22 brd 10.153.3.255 scope global eth0.153
          inet6 fe80::2e0:81ff:fe2b:48e7/64 scope link
             valid_lft forever preferred_lft forever
      7: foo:veth0@eth0@veth0: <BROADCAST,MULTICAST,M-DOWN> mtu 1500 qdisc noop state DOWN
          link/ether ca:b3:73:8b:0c:e4 brd ff:ff:ff:ff:ff:ff
          inet 192.168.212.2/24 scope global foo:veth0@eth0
      8: tun0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
          link/none
          inet 172.16.19.39 peer 172.16.19.1 scope global tun0
      9: venet0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
          link/void
          inet 127.0.0.2/32 scope host venet0
          inet 172.16.19.48/32 scope global venet0:0
      10: eth13: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP
          link/ether 00:ba:ba:10:21:21 brd ff:ff:ff:ff:ff:ff
          inet 10.21.21.21/24 brd 10.21.21.255 scope global eth3
          inet6 fe80::2ba:baff:fe10:2121/64 scope link
      12: xapi1: <BROADCAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN
          link/ether e8:39:35:c5:c8:50 brd ff:ff:ff:ff:ff:ff
          inet 192.168.13.34/24 brd 192.168.13.255 scope global xapi1
             valid_lft forever preferred_lft forever
      13: fwdintf: <MULTICAST,NOARP,UP,LOWER_UP> mtu 1496 qdisc pfifo_fast state UNKNOWN group default qlen 1000
          link/ether 00:00:00:00:00:0a brd ff:ff:ff:ff:ff:ff
      14: ip6tnl0@NONE: <NOARP,UP,LOWER_UP> mtu 1452 qdisc noqueue state UNKNOWN group default qlen 1
          link/tunnel6 :: brd ::
          inet6 fe80::f47a:2aff:fef0:c6ef/64 scope link
             valid_lft forever preferred_lft forever
    EOM
  end

  let(:linux_ip_link_s_d) do
    <<~EOM
      1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
          link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
          RX: bytes  packets  errors  dropped overrun mcast
          35224      524      0       0       0       0
          TX: bytes  packets  errors  dropped carrier collsns
          35224      524      0       0       0       0
      2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
          link/ether 12:31:3d:02:be:a2 brd ff:ff:ff:ff:ff:ff
          RX: bytes  packets  errors  dropped overrun mcast
          1392844460 2659966  0       0       0       0
          TX: bytes  packets  errors  dropped carrier collsns
          691785313  1919690  0       0       0       0
      3: eth0.11@eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP
          link/ether 00:0c:29:41:71:45 brd ff:ff:ff:ff:ff:ff
          vlan id 11 <REORDER_HDR>
          RX: bytes  packets  errors  dropped overrun mcast
          0          0        0       0       0       0
          TX: bytes  packets  errors  dropped carrier collsns
          0          0        0       0       0       0
      4: tun0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN qlen 100
          link/none
          RX: bytes  packets  errors  dropped overrun mcast
          1392844460 2659966  0       0       0       0
          TX: bytes  packets  errors  dropped carrier collsns
          691785313  1919690  0       0       0       0
      5: venet0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
          link/void
          RX: bytes  packets  errors  dropped overrun mcast
          1392844460 2659966  0       0       0       0
          TX: bytes  packets  errors  dropped carrier collsns
          691785313  1919690  0       0       0       0
      10: eth3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master ovs-system state UP mode DEFAULT qlen 1000
          link/ether e8:39:35:c5:c8:54 brd ff:ff:ff:ff:ff:ff
          RX: bytes  packets  errors  dropped overrun mcast
          1321907045 13357087 0       0       0       3126613
          TX: bytes  packets  errors  dropped carrier collsns
          1661526184 9467091  0       0       0       0
      11: eth13: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master ovs-system state UP mode DEFAULT qlen 1000
          link/ether ba:ba:10:21:21:21 brd ff:ff:ff:ff:ff:ff
          RX: bytes  packets  errors  dropped overrun mcast
          21         21       0       0       0       21
          TX: bytes  packets  errors  dropped carrier collsns
          21         21       0       0       0       0
      12: ovs-system: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT
          link/ether 7a:7a:80:80:6c:24 brd ff:ff:ff:ff:ff:ff
          RX: bytes  packets  errors  dropped overrun mcast
          0          0        0       0       0       0
          TX: bytes  packets  errors  dropped carrier collsns
          0          0        0       0       0       0
      13: xapi1: <BROADCAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN mode DEFAULT
          link/ether e8:39:35:c5:c8:50 brd ff:ff:ff:ff:ff:ff
          RX: bytes  packets  errors  dropped overrun mcast
          21468183   159866   0       0       0       0
          TX: bytes  packets  errors  dropped carrier collsns
          2052       6        0       0       0       0
      14: fwdintf: <MULTICAST,NOARP,UP,LOWER_UP> mtu 1496 qdisc pfifo_fast state UNKNOWN mode DEFAULT group default qlen 1000
          link/ether 00:00:00:00:00:0a brd ff:ff:ff:ff:ff:ff promiscuity 0
          RX: bytes  packets  errors  dropped overrun mcast
          0          0        0       0       0       0
          TX: bytes  packets  errors  dropped carrier collsns
          140        2        0       1       0       0
      15: ip6tnl0@NONE: <NOARP> mtu 1452 qdisc noop state DOWN mode DEFAULT group default qlen 1
          link/tunnel6 :: brd :: promiscuity 0
          ip6tnl ip6ip6 remote :: local :: encaplimit 0 hoplimit 0 tclass 0x00 flowlabel 0x00000 (flowinfo 0x00000000) addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535
          RX: bytes  packets  errors  dropped overrun mcast
          0          0        0       0       0       0
          TX: bytes  packets  errors  dropped carrier collsns
          0          0        0       0       0       0
    EOM
  end

  let(:linux_arp_an) do
    <<~EOM
      ? (10.116.201.1) at fe:ff:ff:ff:ff:ff [ether] on eth0
    EOM
  end

  let(:linux_ip_neighbor_show) do
    <<~EOM
      10.116.201.1 dev eth0 lladdr fe:ff:ff:ff:ff:ff REACHABLE
    EOM
  end

  let(:linux_ip_inet6_neighbor_show) do
    <<~EOM
      1111:2222:3333:4444::1 dev eth0.11 lladdr 00:1c:0e:12:34:56 router REACHABLE
      fe80::21c:eff:fe12:3456 dev eth0.11 lladdr 00:1c:0e:30:28:00 router REACHABLE
      fe80::21c:eff:fe12:3456 dev eth0.153 lladdr 00:1c:0e:30:28:00 router REACHABLE
    EOM
  end

  let(:linux_ethtool) do
    <<~EOM
      Settings for eth0:
              Supported ports: [ FIBRE ]
              Supported link modes:   1000baseT/Full
                                      10000baseT/Full
              Supported pause frame use: No
              Supports auto-negotiation: Yes
              Advertised link modes:  1000baseT/Full
                                      10000baseT/Full
              Advertised pause frame use: No
              Advertised auto-negotiation: Yes
              Speed: 10000Mb/s
              Duplex: Full
              Port: FIBRE
              PHYAD: 0
              Transceiver: external
              Auto-negotiation: on
              Supports Wake-on: d
              Wake-on: d
              Current message level: 0x00000007 (7)
                                     drv probe link
              Link detected: yes
    EOM
  end

  let(:linux_ethtool_g) do
    <<~EOM
      Ring parameters for eth0:
      Pre-set maximums:
      RX:		8192
      RX Mini:	0
      RX Jumbo:	0
      TX:		8192
      Current hardware settings:
      RX:		8192
      RX Mini:	0
      RX Jumbo:	0
      TX:		8192

    EOM
  end

  let(:linux_ethtool_l) do
    <<~EOM
      Channel parameters for eth0:
      Pre-set maximums:
      RX:		16
      TX:	  16
      Other:	0
      Combined:		32
      Current hardware settings:
      RX:		0
      TX:	0
      Other:	0
      Combined:		16

    EOM
  end

  let(:linux_ethtool_c) do
    <<~EOM
      Coalesce parameters for eth0:
      Adaptive RX: on  TX: off
      stats-block-usecs: 0
      sample-interval: 0
      pkt-rate-low: 0
      pkt-rate-high: 0

      rx-usecs: 33
      rx-frames: 88
      rx-usecs-irq: 0
      rx-frames-irq: 0

      tx-usecs: 8
      tx-frames: 128
      tx-usecs-irq: 0
      tx-frames-irq: 0

      rx-usecs-low: 0
      rx-frame-low: 0
      tx-usecs-low: 0
      tx-frame-low: 0

      rx-usecs-high: 0
      rx-frame-high: 0
      tx-usecs-high: 0
      tx-frame-high: 0

    EOM
  end

  let(:linux_ethtool_k) do
    <<~EOM
      Features for eth0:
      rx-checksumming: on
      tx-checksumming: off
      rx-vlan-offload: on [fixed]
      rx-gro-hw: off [fixed]

    EOM
  end

  let(:linux_ethtool_i) do
    <<~EOM
      driver: mlx5_core
      version: 5.0-0
      firmware-version: 14.23.8012
      expansion-rom-version:
      bus-info: 0000:02:00.0
      supports-statistics: yes
      supports-test: yes
      supports-eeprom-access: no
      supports-register-dump: no
      supports-priv-flags: yes

    EOM
  end

  let(:linux_ethtool_a) do
    <<~EOM
      Pause parameters for eth0:
      Autonegotiate:	on
      RX:		off
      TX:		on

    EOM
  end

  before do
    allow(plugin).to receive(:collect_os).and_return(:linux)

    allow(plugin).to receive(:shell_out).with("ip addr").and_return(mock_shell_out(0, linux_ip_addr, ""))
    allow(plugin).to receive(:shell_out).with("ip -d -s link").and_return(mock_shell_out(0, linux_ip_link_s_d, ""))
    allow(plugin).to receive(:shell_out).with("ip -f inet neigh show").and_return(mock_shell_out(0, linux_ip_neighbor_show, ""))
    allow(plugin).to receive(:shell_out).with("ip -f inet6 neigh show").and_return(mock_shell_out(0, linux_ip_inet6_neighbor_show, ""))
    allow(plugin).to receive(:shell_out).with("ip -o -f inet route show table main").and_return(mock_shell_out(0, linux_ip_route, ""))
    allow(plugin).to receive(:shell_out).with("ip -o -f inet6 route show table main").and_return(mock_shell_out(0, linux_ip_route_inet6, ""))

    allow(plugin).to receive(:shell_out).with("route -n").and_return(mock_shell_out(0, linux_route_n, ""))
    allow(plugin).to receive(:shell_out).with("ifconfig -a").and_return(mock_shell_out(0, linux_ifconfig, ""))
    allow(plugin).to receive(:shell_out).with("arp -an").and_return(mock_shell_out(0, linux_arp_an, ""))
    allow(plugin).to receive(:shell_out).with(/ethtool -g/).and_return(mock_shell_out(0, linux_ethtool_g, ""))
    allow(plugin).to receive(:shell_out).with(/ethtool -l/).and_return(mock_shell_out(0, linux_ethtool_l, ""))
    allow(plugin).to receive(:shell_out).with(/ethtool -k/).and_return(mock_shell_out(0, linux_ethtool_k, ""))
    allow(plugin).to receive(:shell_out).with(/ethtool -c/).and_return(mock_shell_out(0, linux_ethtool_c, ""))
    allow(plugin).to receive(:shell_out).with(/ethtool -i/).and_return(mock_shell_out(0, linux_ethtool_i, ""))
    allow(plugin).to receive(:shell_out).with(/ethtool -a/).and_return(mock_shell_out(0, linux_ethtool_a, ""))
    allow(plugin).to receive(:shell_out).with(/ethtool [^\-]/).and_return(mock_shell_out(0, linux_ethtool, ""))
  end

  describe "#interface_has_no_addresses_in_family?" do
    context "when interface has no addresses" do
      let(:iface) { {} }

      it "returns true" do
        expect(plugin.interface_has_no_addresses_in_family?(iface, "inet")).to eq(true)
      end
    end

    context "when an interface has no addresses in family" do
      let(:iface) { { addresses: { "1.2.3.4" => { "family" => "inet6" } } } }

      it "returns true" do
        expect(plugin.interface_has_no_addresses_in_family?(iface, "inet")).to eq(true)
      end
    end

    context "when an interface has addresses in family" do
      let(:iface) { { addresses: { "1.2.3.4" => { "family" => "inet" } } } }

      it "returns false" do
        expect(plugin.interface_has_no_addresses_in_family?(iface, "inet")).to eq(false)
      end
    end
  end

  describe "#interface_have_address?" do
    context "when interface has no addresses" do
      let(:iface) { {} }

      it "returns false" do
        expect(plugin.interface_have_address?(iface, "1.2.3.4")).to eq(false)
      end
    end

    context "when interface has a matching address" do
      let(:iface) { { addresses: { "1.2.3.4" => {} } } }

      it "returns true" do
        expect(plugin.interface_have_address?(iface, "1.2.3.4")).to eq(true)
      end
    end

    context "when interface does not have a matching address" do
      let(:iface) { { addresses: { "4.3.2.1" => {} } } }

      it "returns false" do
        expect(plugin.interface_have_address?(iface, "1.2.3.4")).to eq(false)
      end
    end
  end

  describe "#interface_address_not_link_level?" do
    context "when the address scope is link" do
      let(:iface) { { addresses: { "1.2.3.4" => { scope: "Link" } } } }

      it "returns false" do
        expect(plugin.interface_address_not_link_level?(iface, "1.2.3.4")).to eq(false)
      end
    end

    context "when the address scope is global" do
      let(:iface) { { addresses: { "1.2.3.4" => { scope: "Global" } } } }

      it "returns true" do
        expect(plugin.interface_address_not_link_level?(iface, "1.2.3.4")).to eq(true)
      end
    end
  end

  describe "#interface_valid_for_route?" do
    let(:iface)   { double("iface") }
    let(:address) { "1.2.3.4" }
    let(:family)  { "inet" }

    context "when interface has no addresses" do
      it "returns true" do
        expect(plugin).to receive(:interface_has_no_addresses_in_family?).with(iface, family).and_return(true)
        expect(plugin.interface_valid_for_route?(iface, address, family)).to eq(true)
      end
    end

    context "when interface has addresses" do
      before do
        expect(plugin).to receive(:interface_has_no_addresses_in_family?).with(iface, family).and_return(false)
      end

      context "when interface contains the address" do
        before do
          expect(plugin).to receive(:interface_have_address?).with(iface, address).and_return(true)
        end

        context "when interface address is not a link-level address" do
          it "returns true" do
            expect(plugin).to receive(:interface_address_not_link_level?).with(iface, address).and_return(true)
            expect(plugin.interface_valid_for_route?(iface, address, family)).to eq(true)
          end
        end

        context "when the interface address is a link-level address" do
          it "returns false" do
            expect(plugin).to receive(:interface_address_not_link_level?).with(iface, address).and_return(false)
            expect(plugin.interface_valid_for_route?(iface, address, family)).to eq(false)
          end
        end
      end

      context "when interface does not contain the address" do
        it "returns false" do
          expect(plugin).to receive(:interface_have_address?).with(iface, address).and_return(false)
          expect(plugin.interface_valid_for_route?(iface, address, family)).to eq(false)
        end
      end
    end
  end

  describe "#route_is_valid_default_route?" do
    context "when the route destination is default" do
      let(:route)         { { destination: "default" } }
      let(:default_route) { double("default_route") }

      it "returns true" do
        expect(plugin.route_is_valid_default_route?(route, default_route)).to eq(true)
      end
    end

    context "when the route destination is not default" do
      let(:route) { { destination: "10.0.0.0/24" } }

      context "when the default route does not have a gateway" do
        let(:default_route) { {} }

        it "returns false" do
          expect(plugin.route_is_valid_default_route?(route, default_route)).to eq(false)
        end
      end

      context "when the gateway is within the destination" do
        let(:default_route) { { via: "10.0.0.1" } }

        it "returns true" do
          expect(plugin.route_is_valid_default_route?(route, default_route)).to eq(true)
        end
      end

      context "when the gateway is not within the destination" do
        let(:default_route) { { via: "20.0.0.1" } }

        it "returns false" do
          expect(plugin.route_is_valid_default_route?(route, default_route)).to eq(false)
        end
      end

      context "when route and default_route via have different address family" do
        let(:route) { { destination: "10.0.0.0/24" } }
        let(:default_route) { { via: "fe80::69" } }

        it "returns false" do
          expect(plugin.route_is_valid_default_route?(route, default_route)).to eq(false)
        end
      end
    end
  end

  %w{ifconfig iproute2}.each do |network_method|
    describe "gathering IP layer address info via #{network_method}" do
      before do
        allow(plugin).to receive(:which).with("ip").and_return( network_method == "iproute2" ? "/sbin/ip" : false )
        allow(plugin).to receive(:which).with("ethtool").and_return( "/sbin/ethtool" )
        plugin.run
      end

      it "completes the run" do
        expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
        expect(plugin["network"]).not_to be_nil
      end

      it "detects the interfaces" do
        if network_method == "iproute2"
          expect(plugin["network"]["interfaces"].keys.sort).to eq(["eth0", "eth0.11", "eth0.151", "eth0.152", "eth0.153", "eth0:5", "eth13", "eth3", "foo:veth0@eth0", "fwdintf", "ip6tnl0", "lo", "ovs-system", "tun0", "venet0", "venet0:0", "xapi1"])
        else
          expect(plugin["network"]["interfaces"].keys.sort).to eq(["eth0", "eth0.11", "eth0.151", "eth0.152", "eth0.153", "eth0:5", "eth13", "eth3", "foo:veth0@eth0", "fwdintf", "lo", "ovs-system", "tun0", "venet0", "venet0:0", "xapi1"])
        end
      end

      it "detects the layer one details of an ethernet interface" do
        expect(plugin["network"]["interfaces"]["eth0"]["link_speed"]).to eq(10000)
        expect(plugin["network"]["interfaces"]["eth0"]["duplex"]).to eq("Full")
        expect(plugin["network"]["interfaces"]["eth0"]["port"]).to eq("FIBRE")
        expect(plugin["network"]["interfaces"]["eth0"]["transceiver"]).to eq("external")
        expect(plugin["network"]["interfaces"]["eth0"]["auto_negotiation"]).to eq("on")
        expect(plugin["network"]["interfaces"]["eth0"]["mdi_x"]).to be_nil
        expect(plugin["network"]["interfaces"]["eth0"]["ring_params"]["max_tx"]).to eq(8192)
        expect(plugin["network"]["interfaces"]["eth0"]["ring_params"]["max_rx"]).to eq(8192)
        expect(plugin["network"]["interfaces"]["eth0"]["ring_params"]["current_tx"]).to eq(8192)
        expect(plugin["network"]["interfaces"]["eth0"]["ring_params"]["current_rx"]).to eq(8192)
        expect(plugin["network"]["interfaces"]["eth0"]["channel_params"]["max_tx"]).to eq(16)
        expect(plugin["network"]["interfaces"]["eth0"]["channel_params"]["max_rx"]).to eq(16)
        expect(plugin["network"]["interfaces"]["eth0"]["channel_params"]["max_other"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["channel_params"]["max_combined"]).to eq(32)
        expect(plugin["network"]["interfaces"]["eth0"]["channel_params"]["current_tx"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["channel_params"]["current_rx"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["channel_params"]["current_other"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["channel_params"]["current_combined"]).to eq(16)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["adaptive_rx"]).to eq("on")
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["adaptive_tx"]).to eq("off")
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["stats-block-usecs"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["sample-interval"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["pkt-rate-low"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["pkt-rate-high"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["rx-usecs"]).to eq(33)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["rx-frames"]).to eq(88)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["rx-usecs-irq"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["rx-frames-irq"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["tx-usecs"]).to eq(8)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["tx-frames"]).to eq(128)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["tx-usecs-irq"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["tx-frames-irq"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["rx-usecs-low"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["rx-frame-low"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["tx-usecs-low"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["tx-frame-low"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["rx-usecs-high"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["rx-frame-high"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["tx-usecs-high"]).to eq(0)
        expect(plugin["network"]["interfaces"]["eth0"]["coalesce_params"]["tx-frame-high"]).to eq(0)

      end

      it "detects the driver info of an ethernet interface" do
        expect(plugin["network"]["interfaces"]["eth0"]["driver_info"]["driver"]).to eq("mlx5_core")
        expect(plugin["network"]["interfaces"]["eth0"]["driver_info"]["version"]).to eq("5.0-0")
        expect(plugin["network"]["interfaces"]["eth0"]["driver_info"]["firmware-version"]).to eq("14.23.8012")
        expect(plugin["network"]["interfaces"]["eth0"]["driver_info"]["expansion-rom-version"]).to eq("")
        expect(plugin["network"]["interfaces"]["eth0"]["driver_info"]["bus-info"]).to eq("0000:02:00.0")
        expect(plugin["network"]["interfaces"]["eth0"]["driver_info"]["supports-statistics"]).to eq("yes")
        expect(plugin["network"]["interfaces"]["eth0"]["driver_info"]["supports-test"]).to eq("yes")
        expect(plugin["network"]["interfaces"]["eth0"]["driver_info"]["supports-eeprom-access"]).to eq("no")
        expect(plugin["network"]["interfaces"]["eth0"]["driver_info"]["supports-register-dump"]).to eq("no")
        expect(plugin["network"]["interfaces"]["eth0"]["driver_info"]["supports-priv-flags"]).to eq("yes")

      end

      it "detects the driver offload features of an ethernet interface" do
        expect(plugin["network"]["interfaces"]["eth0"]["offload_params"]["rx-checksumming"]).to eq("on")
        expect(plugin["network"]["interfaces"]["eth0"]["offload_params"]["tx-checksumming"]).to eq("off")
        expect(plugin["network"]["interfaces"]["eth0"]["offload_params"]["rx-vlan-offload"]).to eq("on")
        expect(plugin["network"]["interfaces"]["eth0"]["offload_params"]["rx-gro-hw"]).to eq("off")
      end

      it "detects the pause frame configuration of an ethernet interface" do
        expect(plugin["network"]["interfaces"]["eth0"]["pause_params"]["autonegotiate"]).to eq(true)
        expect(plugin["network"]["interfaces"]["eth0"]["pause_params"]["rx"]).to eq(false)
        expect(plugin["network"]["interfaces"]["eth0"]["pause_params"]["tx"]).to eq(true)

      end

      it "detects the ipv4 addresses of the ethernet interface" do
        expect(plugin["network"]["interfaces"]["eth0"]["addresses"].keys).to include("10.116.201.76")
        expect(plugin["network"]["interfaces"]["eth0"]["addresses"]["10.116.201.76"]["netmask"]).to eq("255.255.255.0")
        expect(plugin["network"]["interfaces"]["eth0"]["addresses"]["10.116.201.76"]["broadcast"]).to eq("10.116.201.255")
        expect(plugin["network"]["interfaces"]["eth0"]["addresses"]["10.116.201.76"]["family"]).to eq("inet")
      end

      it "detects the ipv4 addresses of an ethernet subinterface" do
        expect(plugin["network"]["interfaces"]["eth0.11"]["addresses"].keys).to include("192.168.0.16")
        expect(plugin["network"]["interfaces"]["eth0.11"]["addresses"]["192.168.0.16"]["netmask"]).to eq("255.255.255.0")
        expect(plugin["network"]["interfaces"]["eth0.11"]["addresses"]["192.168.0.16"]["broadcast"]).to eq("192.168.0.255")
        expect(plugin["network"]["interfaces"]["eth0.11"]["addresses"]["192.168.0.16"]["family"]).to eq("inet")
      end

      it "detects the ipv6 addresses of the ethernet interface" do
        expect(plugin["network"]["interfaces"]["eth0"]["addresses"].keys).to include("fe80::1031:3dff:fe02:bea2")
        expect(plugin["network"]["interfaces"]["eth0"]["addresses"]["fe80::1031:3dff:fe02:bea2"]["scope"]).to eq("Link")
        expect(plugin["network"]["interfaces"]["eth0"]["addresses"]["fe80::1031:3dff:fe02:bea2"]["prefixlen"]).to eq("64")
        expect(plugin["network"]["interfaces"]["eth0"]["addresses"]["fe80::1031:3dff:fe02:bea2"]["family"]).to eq("inet6")
      end

      it "detects the ipv6 addresses of an ethernet subinterface" do
        %w{1111:2222:3333:4444::2 1111:2222:3333:4444::3}.each do |addr|
          expect(plugin["network"]["interfaces"]["eth0.11"]["addresses"].keys).to include(addr)
          expect(plugin["network"]["interfaces"]["eth0.11"]["addresses"][addr]["scope"]).to eq("Global")
          expect(plugin["network"]["interfaces"]["eth0.11"]["addresses"][addr]["prefixlen"]).to eq("64")
          expect(plugin["network"]["interfaces"]["eth0.11"]["addresses"][addr]["family"]).to eq("inet6")
        end
      end

      it "detects the mac addresses of the ethernet interface" do
        expect(plugin["network"]["interfaces"]["eth0"]["addresses"].keys).to include("12:31:3D:02:BE:A2")
        expect(plugin["network"]["interfaces"]["eth0"]["addresses"]["12:31:3D:02:BE:A2"]["family"]).to eq("lladdr")
      end

      it "detects the encapsulation type of the ethernet interface" do
        expect(plugin["network"]["interfaces"]["eth0"]["encapsulation"]).to eq("Ethernet")
      end

      it "detects the flags of the ethernet interface" do
        if network_method == "ifconfig"
          expect(plugin["network"]["interfaces"]["eth0"]["flags"].sort).to eq(%w{BROADCAST MULTICAST RUNNING UP})
        else
          expect(plugin["network"]["interfaces"]["eth0"]["flags"].sort).to eq(%w{BROADCAST LOWER_UP MULTICAST UP})
        end
      end

      it "detects the number of the ethernet interface" do
        expect(plugin["network"]["interfaces"]["eth0"]["number"]).to eq("0")
      end

      it "detects the number of an ethernet interface greater than 10" do
        expect(plugin["network"]["interfaces"]["eth13"]["number"]).to eq("13")
      end

      it "detects the mtu of the ethernet interface" do
        expect(plugin["network"]["interfaces"]["eth0"]["mtu"]).to eq("1500")
      end

      it "detects the ipv4 addresses of the loopback interface" do
        expect(plugin["network"]["interfaces"]["lo"]["addresses"].keys).to include("127.0.0.1")
        expect(plugin["network"]["interfaces"]["lo"]["addresses"]["127.0.0.1"]["netmask"]).to eq("255.0.0.0")
        expect(plugin["network"]["interfaces"]["lo"]["addresses"]["127.0.0.1"]["family"]).to eq("inet")
      end

      it "detects the ipv6 addresses of the loopback interface" do
        expect(plugin["network"]["interfaces"]["lo"]["addresses"].keys).to include("::1")
        expect(plugin["network"]["interfaces"]["lo"]["addresses"]["::1"]["scope"]).to eq("Node")
        expect(plugin["network"]["interfaces"]["lo"]["addresses"]["::1"]["prefixlen"]).to eq("128")
        expect(plugin["network"]["interfaces"]["lo"]["addresses"]["::1"]["family"]).to eq("inet6")
      end

      it "detects the encapsulation type of the loopback interface" do
        expect(plugin["network"]["interfaces"]["lo"]["encapsulation"]).to eq("Loopback")
      end

      it "detects the flags of the ethernet interface" do
        if network_method == "ifconfig"
          expect(plugin["network"]["interfaces"]["lo"]["flags"].sort).to eq(%w{LOOPBACK RUNNING UP})
        else
          expect(plugin["network"]["interfaces"]["lo"]["flags"].sort).to eq(%w{LOOPBACK LOWER_UP UP})
        end
      end

      it "detects the mtu of the loopback interface" do
        expect(plugin["network"]["interfaces"]["lo"]["mtu"]).to eq("16436")
      end

      it "detects the arp entries" do
        expect(plugin["network"]["interfaces"]["eth0"]["arp"]["10.116.201.1"]).to eq("fe:ff:ff:ff:ff:ff")
      end

      if network_method == "iproute2"
        it "detects the tunnel information" do
          expect(plugin["network"]["interfaces"]["ip6tnl0"]["tunnel_info"]).to eq(
            {
              "proto" => "ip6ip6",
              "remote" => "::",
              "local" => "::",
              "encaplimit" => "0",
              "hoplimit" => "0",
              "tclass" => "0x00",
              "flowlabel" => "0x00000",
              "addrgenmode" => "eui64",
              "numtxqueues" => "1",
              "numrxqueues" => "1",
              "gso_max_size" => "65536",
              "gso_max_segs" => "65535",
            }
          )
        end
      end
    end

    describe "gathering interface counters via #{network_method}" do
      before do
        allow(plugin).to receive(:which).with("ip").and_return(network_method == "iproute2" ? "/sbin/ip" : false)
        allow(plugin).to receive(:which).with("ethtool").and_return("/sbin/ethtool")
        plugin.run
      end

      it "detects the ethernet counters" do
        expect(plugin["counters"]["network"]["interfaces"]["eth0"]["tx"]["bytes"]).to eq("691785313")
        expect(plugin["counters"]["network"]["interfaces"]["eth0"]["tx"]["packets"]).to eq("1919690")
        expect(plugin["counters"]["network"]["interfaces"]["eth0"]["tx"]["collisions"]).to eq("0")
        expect(plugin["counters"]["network"]["interfaces"]["eth0"]["tx"]["queuelen"]).to eq("1000")
        expect(plugin["counters"]["network"]["interfaces"]["eth0"]["tx"]["errors"]).to eq("0")
        expect(plugin["counters"]["network"]["interfaces"]["eth0"]["tx"]["carrier"]).to eq("0")
        expect(plugin["counters"]["network"]["interfaces"]["eth0"]["tx"]["drop"]).to eq("0")

        expect(plugin["counters"]["network"]["interfaces"]["eth0"]["rx"]["bytes"]).to eq("1392844460")
        expect(plugin["counters"]["network"]["interfaces"]["eth0"]["rx"]["packets"]).to eq("2659966")
        expect(plugin["counters"]["network"]["interfaces"]["eth0"]["rx"]["errors"]).to eq("0")
        expect(plugin["counters"]["network"]["interfaces"]["eth0"]["rx"]["overrun"]).to eq("0")
        expect(plugin["counters"]["network"]["interfaces"]["eth0"]["rx"]["drop"]).to eq("0")
      end

      it "detects the loopback counters" do
        expect(plugin["counters"]["network"]["interfaces"]["lo"]["tx"]["bytes"]).to eq("35224")
        expect(plugin["counters"]["network"]["interfaces"]["lo"]["tx"]["packets"]).to eq("524")
        expect(plugin["counters"]["network"]["interfaces"]["lo"]["tx"]["collisions"]).to eq("0")
        expect(plugin["counters"]["network"]["interfaces"]["lo"]["tx"]["errors"]).to eq("0")
        expect(plugin["counters"]["network"]["interfaces"]["lo"]["tx"]["carrier"]).to eq("0")
        expect(plugin["counters"]["network"]["interfaces"]["lo"]["tx"]["drop"]).to eq("0")

        expect(plugin["counters"]["network"]["interfaces"]["lo"]["rx"]["bytes"]).to eq("35224")
        expect(plugin["counters"]["network"]["interfaces"]["lo"]["rx"]["packets"]).to eq("524")
        expect(plugin["counters"]["network"]["interfaces"]["lo"]["rx"]["errors"]).to eq("0")
        expect(plugin["counters"]["network"]["interfaces"]["lo"]["rx"]["overrun"]).to eq("0")
        expect(plugin["counters"]["network"]["interfaces"]["lo"]["rx"]["drop"]).to eq("0")
      end
    end

    describe "setting the node's default IP address attribute with #{network_method}" do
      before do
        allow(plugin).to receive(:which).with("ip").and_return(network_method == "iproute2" ? "/sbin/ip" : false)
        allow(plugin).to receive(:which).with("ethtool").and_return("/sbin/ethtool")
        plugin.run
      end

      describe "without a subinterface" do
        it "finds the default interface by asking which iface has the default route" do
          expect(plugin["network"]["default_interface"]).to eq("eth0")
        end

        it "finds the default gateway by asking which iface has the default route" do
          expect(plugin["network"]["default_gateway"]).to eq("10.116.201.1")
        end
      end

      describe "with a link level default route" do
        let(:linux_ip_route) do
          <<~EOM
            10.116.201.0/24 dev eth0  proto kernel
            default dev eth0 scope link
          EOM
        end

        let(:linux_route_n) do
          <<~EOM
            Kernel IP routing table
            Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
            10.116.201.0    0.0.0.0         255.255.255.0   U     0      0        0 eth0
            0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 eth0
          EOM
        end

        before do
          plugin.run
        end

        it "finds the default interface by asking which iface has the default route" do
          expect(plugin["network"]["default_interface"]).to eq("eth0")
        end

        it "finds the default interface by asking which iface has the default route" do
          expect(plugin["network"]["default_gateway"]).to eq("0.0.0.0")
        end
      end

      describe "with a subinterface" do
        let(:linux_ip_route) do
          <<~EOM
            192.168.0.0/24 dev eth0.11  proto kernel  src 192.168.0.2
            default via 192.168.0.15 dev eth0.11
          EOM
        end

        let(:linux_route_n) do
          <<~EOM
            Kernel IP routing table
            Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
            192.168.0.0    0.0.0.0         255.255.255.0   U     0      0        0 eth0.11
            0.0.0.0         192.168.0.15   0.0.0.0         UG    0      0        0 eth0.11
          EOM
        end

        before do
          plugin.run
        end

        it "finds the default interface by asking which iface has the default route" do
          expect(plugin["network"]["default_interface"]).to eq("eth0.11")
        end

        it "finds the default interface by asking which iface has the default route" do
          expect(plugin["network"]["default_gateway"]).to eq("192.168.0.15")
        end
      end
    end
  end

  describe "for newer network features using iproute2 only" do
    before do
      allow(plugin).to receive(:which).with("ip").and_return("/sbin/ip")
      allow(plugin).to receive(:which).with("ethtool").and_return( "/sbin/ethtool" )
      allow(File).to receive(:exist?).with("/proc/net/if_inet6").and_return(true) # ipv6 is enabled
      plugin.run
    end

    it "completes the run" do
      expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
      expect(plugin["network"]).not_to be_nil
    end

    it "finds the default inet6 interface if there's a inet6 default route" do
      expect(plugin["network"]["default_inet6_interface"]).to eq("eth0.11")
    end

    it "finds the default inet6 gateway if there's a inet6 default route" do
      expect(plugin["network"]["default_inet6_gateway"]).to eq("1111:2222:3333:4444::1")
    end

    it "finds inet6 neighbours" do
      expect(plugin["network"]["interfaces"]["eth0.11"]["neighbour_inet6"]["1111:2222:3333:4444::1"]).to eq("00:1c:0e:12:34:56")
    end

    it "detects the ipv4 addresses of an ethernet interface with a crazy name" do
      expect(plugin["network"]["interfaces"]["foo:veth0@eth0"]["addresses"].keys).to include("192.168.212.2")
      expect(plugin["network"]["interfaces"]["foo:veth0@eth0"]["addresses"]["192.168.212.2"]["netmask"]).to eq("255.255.255.0")
      expect(plugin["network"]["interfaces"]["foo:veth0@eth0"]["addresses"]["192.168.212.2"]["family"]).to eq("inet")
    end

    it "detects the ipv4 addresses of an ethernet interface with a number greater than 10" do
      expect(plugin["network"]["interfaces"]["eth13"]["addresses"].keys).to include("10.21.21.21")
      expect(plugin["network"]["interfaces"]["eth13"]["addresses"]["10.21.21.21"]["netmask"]).to eq("255.255.255.0")
      expect(plugin["network"]["interfaces"]["eth13"]["addresses"]["10.21.21.21"]["family"]).to eq("inet")
    end

    it "generates a fake interface for ip aliases for backward compatibility" do
      expect(plugin["network"]["interfaces"]["eth0:5"]["addresses"].keys).to include("192.168.5.1")
      expect(plugin["network"]["interfaces"]["eth0:5"]["addresses"]["192.168.5.1"]["netmask"]).to eq("255.255.255.0")
      expect(plugin["network"]["interfaces"]["eth0:5"]["addresses"]["192.168.5.1"]["family"]).to eq("inet")
    end

    it "adds the vlan information of an interface" do
      expect(plugin["network"]["interfaces"]["eth0.11"]["vlan"]["id"]).to eq("11")
      expect(plugin["network"]["interfaces"]["eth0.11"]["vlan"]["flags"]).to eq([ "REORDER_HDR" ])
    end

    it "adds the state of an interface" do
      expect(plugin["network"]["interfaces"]["eth0.11"]["state"]).to eq("up")
    end

    it "detects interfaces only visible via ip link" do
      expect(plugin["network"]["interfaces"]["eth3"]["state"]).to eq("up")
    end

    it "detects tags on v6 addresses of the ethernet interface" do
      expect(plugin["network"]["interfaces"]["eth0"]["addresses"]["2001:44b8:4160:8f00:a00:27ff:fe13:eacd"]["tags"]).to eq(["dynamic"])
    end

    describe "when IPv6 is disabled" do
      before do
        allow(File).to receive(:exist?).with("/proc/net/if_inet6").and_return(false)
        plugin.run
      end

      it "doesn't set ip6address" do
        expect(plugin["ip6address"]).to be_nil
      end
    end

    describe "when dealing with routes" do
      it "adds routes" do
        plugin.run
        expect(plugin["network"]["interfaces"]["eth0"]["routes"]).to include Mash.new( destination: "10.116.201.0/24", proto: "kernel", family: "inet" )
        expect(plugin["network"]["interfaces"]["eth0"]["routes"]).to include Mash.new( destination: "10.5.4.0/24", family: "inet", via: "10.5.4.1")
        expect(plugin["network"]["interfaces"]["eth0"]["routes"]).to include Mash.new( destination: "10.5.4.0/24", family: "inet", via: "10.5.4.2")
        expect(plugin["network"]["interfaces"]["foo:veth0@eth0"]["routes"]).to include Mash.new( destination: "192.168.212.0/24", proto: "kernel", src: "192.168.212.2", family: "inet" )
        expect(plugin["network"]["interfaces"]["eth0"]["routes"]).to include Mash.new( destination: "fe80::/64", metric: "256", proto: "kernel", family: "inet6" )
        expect(plugin["network"]["interfaces"]["eth0.11"]["routes"]).to include Mash.new( destination: "1111:2222:3333:4444::/64", metric: "1024", family: "inet6" )
        expect(plugin["network"]["interfaces"]["eth0.11"]["routes"]).to include Mash.new( destination: "default", via: "1111:2222:3333:4444::1", metric: "1024", family: "inet6")
      end

      describe "when there isn't a source field in route entries and no ipv6 default routes" do
        let(:linux_ip_route_inet6) do
          <<~EOM
            fe80::/64 dev eth0  proto kernel  metric 256
            fe80::/64 dev eth0.11  proto kernel  metric 256
            1111:2222:3333:4444::/64 dev eth0.11  metric 1024  expires 86023sec
          EOM
        end

        before do
          plugin.run
        end

        it "doesn't set ipaddress" do
          expect(plugin["ipaddress"]).to be nil
        end

        it "doesn't set macaddress" do
          expect(plugin["macaddress"]).to be nil
        end

        it "doesn't set ip6address" do
          expect(plugin["ip6address"]).to be nil
        end
      end

      describe "when there's a source field in the default route entry" do
        let(:linux_ip_route) do
          <<~EOM
            10.116.201.0/24 dev eth0  proto kernel
            192.168.5.0/24 dev eth0  proto kernel  src 192.168.5.1
            192.168.212.0/24 dev foo:veth0@eth0  proto kernel  src 192.168.212.2
            172.16.151.0/24 dev eth0  proto kernel  src 172.16.151.100
            192.168.0.0/24 dev eth0  proto kernel  src 192.168.0.2
            default via 10.116.201.1 dev eth0  src 10.116.201.76
          EOM
        end

        let(:linux_ip_route_inet6) do
          <<~EOM
            fe80::/64 dev eth0  proto kernel  metric 256
            fe80::/64 dev eth0.11  proto kernel  metric 256
            1111:2222:3333:4444::/64 dev eth0.11  metric 1024
            default via 1111:2222:3333:4444::1 dev eth0.11  metric 1024  src 1111:2222:3333:4444::3
          EOM
        end

        before do
          plugin.run
        end

        it "completes the run" do
          expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
          expect(plugin["network"]).not_to be_nil
        end

        it "sets ipaddress" do
          expect(plugin["ipaddress"]).to eq("10.116.201.76")
        end

        it "sets ip6address" do
          expect(plugin["ip6address"]).to eq("1111:2222:3333:4444::3")
        end
      end

      describe "when there're several default routes" do
        let(:linux_ip_route) do
          <<~EOM
            10.116.201.0/24 dev eth0  proto kernel  src 10.116.201.76
            192.168.5.0/24 dev eth0  proto kernel  src 192.168.5.1
            192.168.212.0/24 dev foo:veth0@eth0  proto kernel  src 192.168.212.2
            172.16.151.0/24 dev eth0  proto kernel  src 172.16.151.100
            192.168.0.0/24 dev eth0  proto kernel  src 192.168.0.2
            default via 10.116.201.1 dev eth0 metric 10
            default via 10.116.201.254 dev eth0 metric 9
          EOM
        end

        let(:linux_ip_route_inet6) do
          <<~EOM
            fe80::/64 dev eth0  proto kernel  metric 256
            fe80::/64 dev eth0.11  proto kernel  metric 256
            1111:2222:3333:4444::/64 dev eth0.11  metric 1024  src 1111:2222:3333:4444::3
            default via 1111:2222:3333:4444::1 dev eth0.11  metric 1024
            default via 1111:2222:3333:4444::ffff dev eth0.11  metric 1023
          EOM
        end

        before do
          plugin.run
        end

        it "completes the run" do
          expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
          expect(plugin["network"]).not_to be_nil
        end

        it "sets default ipv4 interface and gateway" do
          expect(plugin["network"]["default_interface"]).to eq("eth0")
          expect(plugin["network"]["default_gateway"]).to eq("10.116.201.254")
        end

        it "sets default ipv6 interface and gateway" do
          expect(plugin["network"]["default_inet6_interface"]).to eq("eth0.11")
          expect(plugin["network"]["default_inet6_gateway"]).to eq("1111:2222:3333:4444::ffff")
        end
      end

      describe "when there're a mixed setup of routes that could be used to set ipaddress" do
        let(:linux_ip_route) do
          <<~EOM
            10.116.201.0/24 dev eth0  proto kernel  src 10.116.201.76
            192.168.5.0/24 dev eth0  proto kernel  src 192.168.5.1
            192.168.212.0/24 dev foo:veth0@eth0  proto kernel  src 192.168.212.2
            172.16.151.0/24 dev eth0  proto kernel  src 172.16.151.100
            192.168.0.0/24 dev eth0  proto kernel  src 192.168.0.2
            default via 10.116.201.1 dev eth0 metric 10
            default via 10.116.201.254 dev eth0 metric 9 src 10.116.201.74
          EOM
        end

        let(:linux_ip_route_inet6) do
          <<~EOM
            fe80::/64 dev eth0  proto kernel  metric 256
            fe80::/64 dev eth0.11  proto kernel  metric 256
            1111:2222:3333:4444::/64 dev eth0.11  metric 1024  src 1111:2222:3333:4444::3
            default via 1111:2222:3333:4444::1 dev eth0.11  metric 1024
            default via 1111:2222:3333:4444::ffff dev eth0.11  metric 1023 src 1111:2222:3333:4444::2
          EOM
        end

        before do
          plugin.run
        end

        it "completes the run" do
          expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
          expect(plugin["network"]).not_to be_nil
        end

        it "sets ipaddress" do
          expect(plugin["ipaddress"]).to eq("10.116.201.74")
        end

        it "sets ip6address" do
          expect(plugin["ip6address"]).to eq("1111:2222:3333:4444::2")
        end
      end

      describe "when there're multipath routes" do
        let(:linux_ip_route) do
          <<~EOM
            10.5.4.0/24 proto static \\ nexthop via 10.5.4.1 dev eth0 weight 1\\ nexthop via 10.5.4.2 dev eth0 weight 1
          EOM
        end

        let(:linux_ip_route_inet6) do
          <<~EOM
            default proto ra metric 1024 expires 1797sec \\        nexthop via fe80::c018:50ff:fe41:ca33 dev eth0.11 weight 1 \\        nexthop via fe80::c018:50ff:fe41:ca33 dev eth0 weight 1 pref medium
            default proto ra metric 1050 expires 1796sec \\        nexthop via fe80::c018:50ff:fe3f:9184 dev eth3 weight 1 \\        nexthop via fe80::c018:50ff:fe3f:9184 dev eth13 weight 1 pref medium
          EOM
        end

        before do
          plugin.run
        end

        it "completes the run" do
          expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
          expect(plugin["network"]).not_to be_nil
        end

        it "sets default ipv6 interface and gateway" do
          expect(plugin["network"]["default_inet6_interface"]).to eq("eth0")
          expect(plugin["network"]["default_inet6_gateway"]).to eq("fe80::c018:50ff:fe41:ca33")
        end

        it "sets the routes properly" do
          expect(plugin["network"]["interfaces"]["eth0"]["routes"]).to eq([
            Mash.new( destination: "10.5.4.0/24", family: "inet", proto: "static", via: "10.5.4.1" ),
            Mash.new( destination: "10.5.4.0/24", family: "inet", proto: "static", via: "10.5.4.2" ),
            Mash.new( destination: "default", family: "inet6", proto: "ra", via: "fe80::c018:50ff:fe41:ca33", metric: "1024" ),
          ])
          expect(plugin["network"]["interfaces"]["eth0.11"]["routes"]).to eq([Mash.new( destination: "default", family: "inet6", proto: "ra", via: "fe80::c018:50ff:fe41:ca33", metric: "1024" )])
          expect(plugin["network"]["interfaces"]["eth13"]["routes"]).to eq([Mash.new( destination: "default", family: "inet6", proto: "ra", via: "fe80::c018:50ff:fe3f:9184", metric: "1050" )])
          expect(plugin["network"]["interfaces"]["eth3"]["routes"]).to eq([Mash.new( destination: "default", family: "inet6", proto: "ra", via: "fe80::c018:50ff:fe3f:9184", metric: "1050" )])
        end
      end

      describe "when there's a source field in a local route entry but it isnt in the default route" do
        let(:linux_ip_route) do
          <<~EOM
            10.116.201.0/24 dev eth0  proto kernel  src 10.116.201.76
            192.168.5.0/24 dev eth0  proto kernel  src 192.168.5.1
            192.168.212.0/24 dev foo:veth0@eth0  proto kernel  src 192.168.212.2
            172.16.151.0/24 dev eth0  proto kernel  src 172.16.151.100
            192.168.0.0/24 dev eth0  proto kernel  src 192.168.0.2
            default via 10.116.201.1 dev eth0
          EOM
        end

        let(:linux_ip_route_inet6) do
          <<~EOM
            fe80::/64 dev eth0  proto kernel  metric 256
            fe80::/64 dev eth0.11  proto kernel  metric 256
            1111:2222:3333:4444::/64 dev eth0.11  metric 1024  src 1111:2222:3333:4444::3
            default via 1111:2222:3333:4444::1 dev eth0.11  metric 1024
          EOM
        end

        it "completes the run" do
          expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
          plugin.run
          expect(plugin["network"]).not_to be_nil
        end

        it "sets ipaddress" do
          plugin.run
          expect(plugin["ipaddress"]).to eq("10.116.201.76")
        end

        # without a source address on the default route we cannot pick the an ipv6 address from the interface
        # In the future an RFC6724 compliant process should choose ip6address in the network plugin
        it "does not set ip6address" do
          plugin.run
          expect(plugin["ip6address"]).to eq(nil)
        end

        context "with only ipv6 routes" do
          let(:linux_ip_route) { "" }

          it "sets macaddress to the mac address of the ip6 default interface" do
            expect(plugin["macaddress"]).to eq("00:AA:BB:CC:DD:EE")
          end
        end

        describe "when about to set macaddress" do
          it "sets macaddress" do
            plugin.run
            expect(plugin["macaddress"]).to eq("12:31:3D:02:BE:A2")
          end

          context "when then ipv4 interface has the NOARP flag and no ipv6 routes exist" do
            let(:linux_ip_route) do
              <<~EOM
                10.118.19.1 dev tun0 proto kernel  src 10.118.19.39
                default via 172.16.19.1 dev tun0
              EOM
            end
            let(:linux_ip_route_inet6) { "" }

            it "completes the run" do
              expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
              plugin.run
              expect(plugin["network"]).not_to be_nil
            end

            it "doesn't set macaddress" do
              plugin.run
              expect(plugin["macaddress"]).to be_nil
            end
          end
        end
      end

      describe "with a link level default route" do
        let(:linux_ip_route) do
          <<~EOM
            default dev venet0 scope link
          EOM
        end

        before do
          plugin.run
        end

        it "completes the run" do
          expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
          expect(plugin["network"]).not_to be_nil
        end

        it "doesn't set ipaddress" do
          expect(plugin["ipaddress"]).to be_nil
        end
      end

      describe "with a link level default route to an unaddressed int" do
        let(:linux_ip_route) do
          <<~EOM
            default dev eth3 scope link
          EOM
        end

        before do
          plugin.run
        end

        it "completes the run" do
          expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
          expect(plugin["network"]).not_to be_nil
        end

        it "sets default_interface" do
          expect(plugin["network"]["default_interface"]).to eq("eth3")
        end

        it "doesn't set ipaddress" do
          expect(plugin["ipaddress"]).to be_nil
        end
      end

      describe "with a link level default route with a source" do
        let(:linux_ip_route) do
          <<~EOM
            default dev fwdintf scope link src 2.2.2.2
          EOM
        end

        before do
          plugin.run
        end

        it "completes the run" do
          expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
          expect(plugin["network"]).not_to be_nil
        end

        it "sets default_interface" do
          expect(plugin["network"]["default_interface"]).to eq("fwdintf")
        end

        it "sets ipaddress" do
          expect(plugin["ipaddress"]).to eq("2.2.2.2")
        end
      end

      describe "when not having a global scope ipv6 address" do
        let(:linux_ip_route_inet6) do
          <<~EOM
            fe80::/64 dev eth0  proto kernel  metric 256
            default via fe80::21c:eff:fe12:3456 dev eth0.153  src fe80::2e0:81ff:fe2b:48e7  metric 1024
          EOM
        end

        before do
          plugin.run
        end

        it "completes the run" do
          expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
          expect(plugin["network"]).not_to be_nil
        end

        it "doesn't set ip6address" do
          expect(plugin["ip6address"]).to be_nil
        end

      end

      describe "with no default route" do
        let(:linux_ip_route) do
          <<~EOM
            10.116.201.0/24 dev eth0  proto kernel  src 10.116.201.76
            192.168.5.0/24 dev eth0  proto kernel  src 192.168.5.1
            192.168.212.0/24 dev foo:veth0@eth0  proto kernel  src 192.168.212.2
            172.16.151.0/24 dev eth0  proto kernel  src 172.16.151.100
            192.168.0.0/24 dev eth0  proto kernel  src 192.168.0.2
          EOM
        end

        let(:linux_ip_route_inet6) do
          <<~EOM
            fe80::/64 dev eth0  proto kernel  metric 256
            fe80::/64 dev eth0.11  proto kernel  metric 256
            1111:2222:3333:4444::/64 dev eth0.11  metric 1024  src 1111:2222:3333:4444::3
          EOM
        end

        before do
          plugin.run
        end

        it "completes the run" do
          expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
          expect(plugin["network"]).not_to be_nil
        end

        it "doesn't set ipaddress" do
          expect(plugin["ipaddress"]).to be_nil
        end

        it "doesn't set ip6address" do
          expect(plugin["ip6address"]).to be_nil
        end
      end

      describe "with openvz setup" do
        let(:linux_ip_route) { "default dev venet0  scope link" }
        let(:linux_ip_addr) do
          <<~EOM
            1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN
                link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
                inet 127.0.0.1/8 scope host lo
                inet6 ::1/128 scope host
                   valid_lft forever preferred_lft forever
            2: venet0: <BROADCAST,POINTOPOINT,NOARP,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN
                link/void
                inet 127.0.0.2/32 scope host venet0
                inet 10.116.201.76/24 brd 10.116.201.255 scope global venet0:0
                inet6 2001:44b8:4160:8f00:a00:27ff:fe13:eacd/64 scope global dynamic
                   valid_lft 6128sec preferred_lft 2526sec
          EOM
        end
        # We don't have the corresponding ipv6 data for these tests
        let(:linux_ip_route_inet6) { "" }
        let(:linux_ip_inet6_neighbor_show) { "" }

        before do
          allow(plugin).to receive(:is_openvz?).and_return true
          allow(plugin).to receive(:is_openvz_host?).and_return false
          plugin.run
        end

        it "completes the run" do
          expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
          expect(plugin["network"]).not_to be_nil
        end

        it "sets default ipv4 interface and gateway" do
          expect(plugin["network"]["default_interface"]).to eq("venet0:0")
          expect(plugin["network"]["default_gateway"]).to eq("0.0.0.0")
        end

        it "sets correct routing information" do
          expect(plugin["network"]["interfaces"]["venet0:0"]["routes"]).to eq([Mash.new( destination: "default", family: "inet", scope: "link" )])
        end

        it "sets correct address information" do
          expect(plugin["network"]["interfaces"]["venet0:0"]["addresses"]).to eq("10.116.201.76" => Mash.new(family: "inet", prefixlen: "24", netmask: "255.255.255.0", broadcast: "10.116.201.255", scope: "Global"))
        end
      end

      describe "with irrelevant routes (container setups)" do
        let(:linux_ip_route) do
          <<~EOM
            10.116.201.0/26 dev eth0 proto kernel  src 10.116.201.39
            10.116.201.0/26 dev if4 proto kernel  src 10.116.201.45
            10.118.19.0/26 dev eth0 proto kernel  src 10.118.19.39
            10.118.19.0/26 dev if5 proto kernel  src 10.118.19.45
            default via 10.116.201.1 dev eth0  src 10.116.201.99
          EOM
        end

        let(:linux_ip_route_inet6) do
          <<~EOM
            fe80::/64 dev eth0  proto kernel  metric 256
            fe80::/64 dev eth0.11  proto kernel  metric 256
            1111:2222:3333:4444::/64 dev eth0.11  metric 1024 src 1111:2222:3333:4444::FFFF:2
            default via 1111:2222:3333:4444::1 dev eth0.11  metric 1024
          EOM
        end

        before do
          plugin.run
        end

        it "completes the run" do
          expect(plugin.logger).not_to receive(:trace).with(/Plugin linux::network threw exception/)
          expect(plugin["network"]).not_to be_nil
        end

        it "doesn't add bogus routes" do
          expect(plugin["network"]["interfaces"]["eth0"]["routes"]).not_to include Mash.new( destination: "10.116.201.0/26", proto: "kernel", family: "inet", via: "10.116.201.39" )
          expect(plugin["network"]["interfaces"]["eth0"]["routes"]).not_to include Mash.new( destination: "10.118.19.0/26", proto: "kernel", family: "inet", via: "10.118.19.39" )
          expect(plugin["network"]["interfaces"]["eth0"]["routes"]).not_to include Mash.new( destination: "1111:2222:3333:4444::/64", family: "inet6", metric: "1024" )
        end

        it "doesn't set ipaddress" do
          expect(plugin["ipaddress"]).to be_nil
        end

        it "doesn't set ip6address" do
          expect(plugin["ip6address"]).to be_nil
        end
      end

      # This should never happen in the real world.
      describe "when encountering a surprise interface" do
        let(:linux_ip_route) do
          <<~EOM
            192.168.122.0/24 dev virbr0  proto kernel  src 192.168.122.1
          EOM
        end

        it "logs a message and skips previously unseen interfaces in 'ip route show'" do
          expect(plugin.logger).to receive(:trace).with(/Skipping previously unseen interface from 'ip route show': virbr0/).once
          allow(plugin.logger).to receive(:trace) # Catches the 'Loading plugin network' type messages
          plugin.run
        end
      end

      describe "when running with ip version ss131122" do
        let(:linux_ip_link_s_d) do
          <<~EOM
            1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN mode DEFAULT group default
                link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 promiscuity 0
                RX: bytes  packets  errors  dropped overrun mcast
                35224      524      0       0       0       0
                TX: bytes  packets  errors  dropped carrier collsns
                35224      524      0       0       0       0
            2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
                link/ether 12:31:3d:02:be:a2 brd ff:ff:ff:ff:ff:ff promiscuity 0
                RX: bytes  packets  errors  dropped overrun mcast
                1392844460 2659966  0       0       0       0
                TX: bytes  packets  errors  dropped carrier collsns
                691785313  1919690  0       0       0       0
            3: eth0.11@eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default
                link/ether 00:0c:29:41:71:45 brd ff:ff:ff:ff:ff:ff promiscuity 0
                vlan protocol 802.1Q id 11 <REORDER_HDR>
                RX: bytes  packets  errors  dropped overrun mcast
                0          0        0       0       0       0
                TX: bytes  packets  errors  dropped carrier collsns
                0          0        0       0       0       0
            4: tun0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN mode DEFAULT group default qlen 100
                link/none promiscuity 0
                RX: bytes  packets  errors  dropped overrun mcast
                1392844460 2659966  0       0       0       0
                TX: bytes  packets  errors  dropped carrier collsns
                691785313  1919690  0       0       0       0
            5: venet0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
                link/void promiscuity 0
                RX: bytes  packets  errors  dropped overrun mcast
                1392844460 2659966  0       0       0       0
                TX: bytes  packets  errors  dropped carrier collsns
                691785313  1919690  0       0       0       0
          EOM
        end

        it "adds the vlan information of an interface" do
          plugin.run
          expect(plugin["network"]["interfaces"]["eth0.11"]["vlan"]["id"]).to eq("11")
          expect(plugin["network"]["interfaces"]["eth0.11"]["vlan"]["protocol"]).to eq("802.1Q")
          expect(plugin["network"]["interfaces"]["eth0.11"]["vlan"]["flags"]).to eq([ "REORDER_HDR" ])
        end
      end

      # Test we can handle IPv4 with inet6 IPv6 next hops
      describe "using IPv6 next hops for IPv4 routes" do
        let(:linux_ip_route) do
          <<~EOM
            default via inet6 fe80::69 dev eth0 metric 69
          EOM
        end

        it "expect an IPv6 next hop and not keyword inet6" do
          expect(plugin["network"]["interfaces"]["eth0"]["routes"]).to eq(
            [
              { "destination" => "default", "family" => "inet", "metric" => "69", "via" => "fe80::69" },
              { "destination" => "fe80::/64", "family" => "inet6", "metric" => "256", "proto" => "kernel" },
            ]
          )
        end
      end

      describe "gathering xdp counters via ip_link_s_d" do
        let(:linux_ip_link_s_d) do
          <<~EOM
            1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN mode DEFAULT group default
                link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 promiscuity 0
                RX: bytes  packets  errors  dropped overrun mcast
                35224      524      0       0       0       0
                TX: bytes  packets  errors  dropped carrier collsns
                35224      524      0       0       0       0
            2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
                link/ether 12:31:3d:02:be:a2 brd ff:ff:ff:ff:ff:ff promiscuity 0
                RX: bytes  packets  errors  dropped overrun mcast
                1392844460 2659966  0       0       0       0
                TX: bytes  packets  errors  dropped carrier collsns
                691785313  1919690  0       0       0       0
            3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 xdp qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
                link/ether 12:31:3d:02:be:a2 brd ff:ff:ff:ff:ff:ff promiscuity 0
                prog/xdp id 9500 tag 1234567acde1892 jited
                RX: bytes  packets  errors  dropped overrun mcast
                1392844460 2659966  0       0       0       0
                TX: bytes  packets  errors  dropped carrier collsns
                691785313  1919690  0       0       0       0
            4: eth2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 xdpgeneric qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
                link/ether 12:31:3d:02:be:a2 brd ff:ff:ff:ff:ff:ff promiscuity 0
                prog/xdp id 8400 tag 5234567acde1892 jited
                RX: bytes  packets  errors  dropped overrun mcast
                1392844460 2659966  0       0       0       0
                TX: bytes  packets  errors  dropped carrier collsns
                691785313  1919690  0       0       0       0
            5: eth3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 xdpoffload qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
                link/ether 12:31:3d:02:be:a2 brd ff:ff:ff:ff:ff:ff promiscuity 0
                prog/xdp id 7400 tag 8234567acde1892
                RX: bytes  packets  errors  dropped overrun mcast
                1392844460 2659966  0       0       0       0
                TX: bytes  packets  errors  dropped carrier collsns
                691785313  1919690  0       0       0       0
            6: eth4: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 xdpmulti qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
                link/ether 12:31:3d:02:be:a2 brd ff:ff:ff:ff:ff:ff promiscuity 0
                prog/xdpdrv id 7400 tag 8234567acde1892 jited
                prog/xdpoffload id 5400 tag 5234567acde1892
                RX: bytes  packets  errors  dropped overrun mcast
                1392844460 2659966  0       0       0       0
                TX: bytes  packets  errors  dropped carrier collsns
                691785313  1919690  0       0       0       0
          EOM
        end
        it "adds the xdp information of an interface" do
          plugin.run
          expect(plugin["network"]["interfaces"]["lo"]["xdp"]).to be_nil
          expect(plugin["network"]["interfaces"]["eth0"]["xdp"]).to be_nil
          expect(plugin["network"]["interfaces"]["eth1"]["xdp"]).to eq(
            {
              "attached" => [
                {
                  mode: "xdpdrv",
                  id: "9500",
                  tag: "1234567acde1892",
                },
              ],
            }
          )
          expect(plugin["network"]["interfaces"]["eth2"]["xdp"]).to eq(
            {
              "attached" => [
                {
                  mode: "xdpgeneric",
                  id: "8400",
                  tag: "5234567acde1892",
                },
              ],
            }
          )
          expect(plugin["network"]["interfaces"]["eth3"]["xdp"]).to eq(
            {
              "attached" => [
                {
                  mode: "xdpoffload",
                  id: "7400",
                  tag: "8234567acde1892",
                },
              ],
            }
          )
          expect(plugin["network"]["interfaces"]["eth4"]["xdp"]).to eq(
            {
              "attached" => [
                {
                  mode: "xdpdrv",
                  id: "7400",
                  tag: "8234567acde1892",
                },
                {
                  mode: "xdpoffload",
                  id: "5400",
                  tag: "5234567acde1892",
                },
              ],
            }
          )
        end
      end
    end
  end
end