Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: Testing ospf_basic_functionality execution #7626

Closed

Conversation

mwinter-osr
Copy link
Member

DO NOT MERGE

PR for a CI Test - Please ignore

Signed-off-by: Martin Winter mwinter@opensourcerouting.org

Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
@mwinter-osr mwinter-osr added submitter action required The author/submitter needs to do something (fix, rebase, add info, etc.) do not merge labels Nov 29, 2020
@polychaeta polychaeta added the tests Topotests, make check, etc label Nov 29, 2020
Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/5dc510d60f78603c984fb5c7e9160009/raw/8d575eafc740618212a5ffa72e78daae8eb65517/cr_7626_1606609738.diff | git apply

diff --git a/tests/topotests/ospf_basic_functionality/test_ospf_ecmp.py b/tests/topotests/ospf_basic_functionality/test_ospf_ecmp.py
index e5afcc7c4..c7d753549 100644
--- a/tests/topotests/ospf_basic_functionality/test_ospf_ecmp.py
+++ b/tests/topotests/ospf_basic_functionality/test_ospf_ecmp.py
@@ -252,7 +252,11 @@ def test_ospf_ecmp_tc16_p0(request):
     input_dict = {
         "r0": {
             "static_routes": [
-                {"network": NETWORK["ipv4"][0], "no_of_ip": 5, "next_hop": "Null0",}
+                {
+                    "network": NETWORK["ipv4"][0],
+                    "no_of_ip": 5,
+                    "next_hop": "Null0",
+                }
             ]
         }
     }
@@ -415,7 +419,11 @@ def test_ospf_ecmp_tc17_p0(request):
     input_dict = {
         "r0": {
             "static_routes": [
-                {"network": NETWORK["ipv4"][0], "no_of_ip": 5, "next_hop": "Null0",}
+                {
+                    "network": NETWORK["ipv4"][0],
+                    "no_of_ip": 5,
+                    "next_hop": "Null0",
+                }
             ]
         }
     }
@@ -499,6 +507,7 @@ def test_ospf_ecmp_check(request):
     write_test_header(tc_name)
     assert 1 == 0, "Test Assert in test_ospf_ecmp.py"
 
+
 if __name__ == "__main__":
     args = ["-s"] + sys.argv[1:]
     sys.exit(pytest.main(args))
diff --git a/tests/topotests/ospf_basic_functionality/test_ospf_ecmp_lan.py b/tests/topotests/ospf_basic_functionality/test_ospf_ecmp_lan.py
index df98c9af1..c71c48f1f 100644
--- a/tests/topotests/ospf_basic_functionality/test_ospf_ecmp_lan.py
+++ b/tests/topotests/ospf_basic_functionality/test_ospf_ecmp_lan.py
@@ -373,6 +373,7 @@ def test_ospf_ecmp_lan_check(request):
     write_test_header(tc_name)
     assert 1 == 0, "Test Assert in test_ospf_ecmp_lan.py"
 
+
 if __name__ == "__main__":
     args = ["-s"] + sys.argv[1:]
     sys.exit(pytest.main(args))
diff --git a/tests/topotests/ospf_basic_functionality/test_ospf_lan.py b/tests/topotests/ospf_basic_functionality/test_ospf_lan.py
index 16d23f82e..5a8fade11 100644
--- a/tests/topotests/ospf_basic_functionality/test_ospf_lan.py
+++ b/tests/topotests/ospf_basic_functionality/test_ospf_lan.py
@@ -728,6 +728,7 @@ def test_ospf_lan_check(request):
     write_test_header(tc_name)
     assert 1 == 0, "Test Assert in test_ospf_lan.py"
 
+
 if __name__ == "__main__":
     args = ["-s"] + sys.argv[1:]
     sys.exit(pytest.main(args))
diff --git a/tests/topotests/ospf_basic_functionality/test_ospf_nssa.py b/tests/topotests/ospf_basic_functionality/test_ospf_nssa.py
index 2e8be49eb..c4ff191a5 100644
--- a/tests/topotests/ospf_basic_functionality/test_ospf_nssa.py
+++ b/tests/topotests/ospf_basic_functionality/test_ospf_nssa.py
@@ -340,6 +340,7 @@ def test_ospf_nssa_check(request):
     write_test_header(tc_name)
     assert 1 == 0, "Test Assert in test_ospf_nssa.py"
 
+
 if __name__ == "__main__":
     args = ["-s"] + sys.argv[1:]
     sys.exit(pytest.main(args))
diff --git a/tests/topotests/ospf_basic_functionality/test_ospf_routemaps.py b/tests/topotests/ospf_basic_functionality/test_ospf_routemaps.py
index ba0068647..19e2536a9 100644
--- a/tests/topotests/ospf_basic_functionality/test_ospf_routemaps.py
+++ b/tests/topotests/ospf_basic_functionality/test_ospf_routemaps.py
@@ -218,7 +218,11 @@ def test_ospf_routemaps_functionality_tc20_p0(request):
     input_dict = {
         "r0": {
             "static_routes": [
-                {"network": NETWORK["ipv4"][0], "no_of_ip": 5, "next_hop": "Null0",}
+                {
+                    "network": NETWORK["ipv4"][0],
+                    "no_of_ip": 5,
+                    "next_hop": "Null0",
+                }
             ]
         }
     }
@@ -353,7 +357,11 @@ def test_ospf_routemaps_functionality_tc24_p0(request):
     input_dict = {
         "r0": {
             "static_routes": [
-                {"network": NETWORK["ipv4"][0], "no_of_ip": 1, "next_hop": "Null0",}
+                {
+                    "network": NETWORK["ipv4"][0],
+                    "no_of_ip": 1,
+                    "next_hop": "Null0",
+                }
             ]
         }
     }
@@ -387,9 +395,10 @@ def test_ospf_routemaps_functionality_tc24_p0(request):
 
     step("verify that prefix-list is created in R0.")
     result = verify_prefix_lists(tgen, pfx_list)
-    assert result is not True, (
-        "Testcase {} : Failed \n Prefix list not "
-        "present. Error: {}".format(tc_name, result)
+    assert (
+        result is not True
+    ), "Testcase {} : Failed \n Prefix list not " "present. Error: {}".format(
+        tc_name, result
     )
 
     # Create route map
@@ -455,9 +464,10 @@ def test_ospf_routemaps_functionality_tc24_p0(request):
 
     step("verify that prefix-list is created in R0.")
     result = verify_prefix_lists(tgen, pfx_list)
-    assert result is not True, (
-        "Testcase {} : Failed \n Prefix list not "
-        "present. Error: {}".format(tc_name, result)
+    assert (
+        result is not True
+    ), "Testcase {} : Failed \n Prefix list not " "present. Error: {}".format(
+        tc_name, result
     )
 
     # Create route map
@@ -534,6 +544,7 @@ def test_ospf_routemaps_functionality_tc24_p0(request):
 
     write_test_footer(tc_name)
 
+
 def test_ospf_routemaps_check(request):
     """
     Test if tests are executed
@@ -543,6 +554,7 @@ def test_ospf_routemaps_check(request):
     write_test_header(tc_name)
     assert 1 == 0, "Test Assert in test_ospf_routemaps.py"
 
+
 if __name__ == "__main__":
     args = ["-s"] + sys.argv[1:]
     sys.exit(pytest.main(args))
diff --git a/tests/topotests/ospf_basic_functionality/test_ospf_rte_calc.py b/tests/topotests/ospf_basic_functionality/test_ospf_rte_calc.py
index 0a64e3ef7..f6d2f4336 100644
--- a/tests/topotests/ospf_basic_functionality/test_ospf_rte_calc.py
+++ b/tests/topotests/ospf_basic_functionality/test_ospf_rte_calc.py
@@ -407,7 +407,13 @@ def test_ospf_redistribution_tc6_p0(request):
 
     protocol = "ospf"
     result = verify_rib(
-        tgen, "ipv4", dut, input_dict, protocol=protocol, next_hop=nh, expected=False,
+        tgen,
+        "ipv4",
+        dut,
+        input_dict,
+        protocol=protocol,
+        next_hop=nh,
+        expected=False,
     )
     assert result is not True, "Testcase {} : Failed \n Error: {}".format(
         tc_name, result
@@ -549,7 +555,11 @@ def test_ospf_redistribution_tc8_p1(request):
     input_dict = {
         "r0": {
             "static_routes": [
-                {"network": NETWORK["ipv4"][0], "no_of_ip": 5, "next_hop": "Null0",}
+                {
+                    "network": NETWORK["ipv4"][0],
+                    "no_of_ip": 5,
+                    "next_hop": "Null0",
+                }
             ]
         }
     }
@@ -598,6 +608,7 @@ def test_ospf_redistribution_tc8_p1(request):
 
     write_test_footer(tc_name)
 
+
 def test_ospf_rte_calc_check(request):
     """
     Test if tests are executed
@@ -607,6 +618,7 @@ def test_ospf_rte_calc_check(request):
     write_test_header(tc_name)
     assert 1 == 0, "Test Assert in test_rte_calc.py"
 
+
 if __name__ == "__main__":
     args = ["-s"] + sys.argv[1:]
     sys.exit(pytest.main(args))
diff --git a/tests/topotests/ospf_basic_functionality/test_ospf_single_area.py b/tests/topotests/ospf_basic_functionality/test_ospf_single_area.py
index d8c15982f..136be2d4c 100644
--- a/tests/topotests/ospf_basic_functionality/test_ospf_single_area.py
+++ b/tests/topotests/ospf_basic_functionality/test_ospf_single_area.py
@@ -785,6 +785,7 @@ def test_ospf_single_area_check(request):
     write_test_header(tc_name)
     assert 1 == 0, "Test Assert in test_ospf_single_area.py"
 
+
 if __name__ == "__main__":
     args = ["-s"] + sys.argv[1:]
     sys.exit(pytest.main(args))

If you are a new contributor to FRR, please see our contributing guidelines.

After making changes, you do not need to create a new PR. You should perform an amend or interactive rebase followed by a force push.

@LabN-CI
Copy link
Collaborator

LabN-CI commented Nov 29, 2020

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/7626 ec54c09
Date 11/28/2020
Start 19:30:36
Finish 20:05:55
Run-Time 35:19
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2020-11-28-19:30:36.txt
Log autoscript-2020-11-28-19:31:40.log.bz2
Memory 502 502 426

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15700/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Successful

Basic Tests: Failed

Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604I386-15700/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386:

RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2020-11-29 02:35:48,841 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 201, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 
line 8: % Unknown command[30]: neighbor fd00:0:0:3::1 remote-as 0 
% Specify remote-as or peer-group commands first
line 10: Failure to communicate[13] to bgpd, line: neighbor fd00:0:0:3::1 activate 

% Specify remote-as or peer-group commands first
line 12: Failure to communicate[13] to bgpd, line: no neighbor fd00:0:0:3::1 activate 



2020-11-29 02:35:49,215 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 201, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-11-29 02:37:43,144 ERROR: r1: bgpd left a dead pidfile (pid=16355)
2020-11-29 02:44:37,748 ERROR: r1: bgpd left a dead pidfile (pid=29043)
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2020-11-29 03:11:26,810 ERROR: assert failed at "test_ospf_authentication/test_ospf_authentication_check": Test Assert in test_ospf_authentication.py
assert 1 == 0
  -1
  +0
2020-11-29 03:12:58,408 ERROR: assert failed at "test_ospf_ecmp/test_ospf_ecmp_check": Test Assert in test_ospf_ecmp.py
assert 1 == 0
  -1
  +0
2020-11-29 03:13:57,384 ERROR: assert failed at "test_ospf_ecmp_lan/test_ospf_ecmp_lan_check": Test Assert in test_ospf_ecmp_lan.py
assert 1 == 0
  -1
  +0
2020-11-29 03:15:23,322 ERROR: assert failed at "test_ospf_lan/test_ospf_lan_check": Test Assert in test_ospf_lan.py
assert 1 == 0
  -1
  +0
2020-11-29 03:16:00,000 ERROR: assert failed at "test_ospf_nssa/test_ospf_nssa_check": Test Assert in test_ospf_nssa.py
assert 1 == 0
  -1
  +0
2020-11-29 03:16:46,698 ERROR: assert failed at "test_ospf_routemaps/test_ospf_routemaps_check": Test Assert in test_ospf_routemaps.py
assert 1 == 0
  -1
  +0
2020-11-29 03:18:17,007 ERROR: assert failed at "test_ospf_rte_calc/test_ospf_rte_calc_check": Test Assert in test_rte_calc.py
assert 1 == 0
  -1
  +0
2020-11-29 03:19:08,249 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 1485, in create_interfaces_cfg
    tgen, c_router, interface_data, "interface_config", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 3: % Unknown command[16]: ip ospf  hello-interval 65536 


2020-11-29 03:19:29,618 ERROR: assert failed at "test_ospf_single_area/test_ospf_single_area_check": Test Assert in test_ospf_single_area.py
assert 1 == 0
  -1
  +0

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15700/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP2U1604I386-15700/test

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 i386:

2020-11-29 02:32:42,608 ERROR: r3: zebra left a dead pidfile (pid=19548)
2020-11-29 02:37:30,226 ERROR: assert failed at "bgp_l3vpn_to_bgp_vrf.test_bgp_l3vpn_to_bgp_vrf/test_adjacencies": 1 tests failed
2020-11-29 02:39:09,607 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 2200, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-11-29 02:39:09,792 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 2200, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-11-29 02:39:09,977 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 2200, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-11-29 02:39:10,160 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 2200, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-11-29 02:41:30,959 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 2200, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15700/artifact/TP2U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1804AMD64-15700/test

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64:

2020-11-29 01:29:28,140 ERROR: r1: bgpd left a dead pidfile (pid=2917)
2020-11-29 01:36:18,369 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 201, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 
line 8: % Unknown command[30]: neighbor fd00:0:0:3::1 remote-as 0 
% Specify remote-as or peer-group commands first
line 10: Failure to communicate[13] to bgpd, line: neighbor fd00:0:0:3::1 activate 

% Specify remote-as or peer-group commands first
line 12: Failure to communicate[13] to bgpd, line: no neighbor fd00:0:0:3::1 activate 



2020-11-29 01:36:18,662 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 201, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-11-29 02:11:02,217 ERROR: assert failed at "test_ospf_authentication/test_ospf_authentication_check": Test Assert in test_ospf_authentication.py
assert 1 == 0
  -1
  +0
2020-11-29 02:12:18,396 ERROR: assert failed at "test_ospf_ecmp/test_ospf_ecmp_check": Test Assert in test_ospf_ecmp.py
assert 1 == 0
  -1
  +0
2020-11-29 02:13:12,907 ERROR: assert failed at "test_ospf_ecmp_lan/test_ospf_ecmp_lan_check": Test Assert in test_ospf_ecmp_lan.py
assert 1 == 0
  -1
  +0
2020-11-29 02:14:34,271 ERROR: assert failed at "test_ospf_lan/test_ospf_lan_check": Test Assert in test_ospf_lan.py
assert 1 == 0
  -1
  +0
2020-11-29 02:15:08,115 ERROR: assert failed at "test_ospf_nssa/test_ospf_nssa_check": Test Assert in test_ospf_nssa.py
assert 1 == 0
  -1
  +0
2020-11-29 02:15:47,731 ERROR: assert failed at "test_ospf_routemaps/test_ospf_routemaps_check": Test Assert in test_ospf_routemaps.py
assert 1 == 0
  -1
  +0
2020-11-29 02:17:08,885 ERROR: assert failed at "test_ospf_rte_calc/test_ospf_rte_calc_check": Test Assert in test_rte_calc.py
assert 1 == 0
  -1
  +0
2020-11-29 02:17:54,005 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 1485, in create_interfaces_cfg
    tgen, c_router, interface_data, "interface_config", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 3: % Unknown command[16]: ip ospf  hello-interval 65536 


2020-11-29 02:18:16,305 ERROR: assert failed at "test_ospf_single_area/test_ospf_single_area_check": Test Assert in test_ospf_single_area.py
assert 1 == 0
  -1
  +0

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15700/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604AMD64-15700/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64:

2020-11-29 02:36:11,352 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 201, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 
line 8: % Unknown command[30]: neighbor fd00:0:0:3::1 remote-as 0 
% Specify remote-as or peer-group commands first
line 10: Failure to communicate[13] to bgpd, line: neighbor fd00:0:0:3::1 activate 

% Specify remote-as or peer-group commands first
line 12: Failure to communicate[13] to bgpd, line: no neighbor fd00:0:0:3::1 activate 



2020-11-29 02:36:11,659 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 201, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-11-29 02:40:45,508 ERROR: r1: bgpd left a dead pidfile (pid=24088)
2020-11-29 03:10:36,521 ERROR: assert failed at "test_ospf_authentication/test_ospf_authentication_check": Test Assert in test_ospf_authentication.py
assert 1 == 0
  -1
  +0
2020-11-29 03:11:50,423 ERROR: assert failed at "test_ospf_ecmp/test_ospf_ecmp_check": Test Assert in test_ospf_ecmp.py
assert 1 == 0
  -1
  +0
2020-11-29 03:12:44,495 ERROR: assert failed at "test_ospf_ecmp_lan/test_ospf_ecmp_lan_check": Test Assert in test_ospf_ecmp_lan.py
assert 1 == 0
  -1
  +0
2020-11-29 03:14:06,046 ERROR: assert failed at "test_ospf_lan/test_ospf_lan_check": Test Assert in test_ospf_lan.py
assert 1 == 0
  -1
  +0
2020-11-29 03:14:37,898 ERROR: assert failed at "test_ospf_nssa/test_ospf_nssa_check": Test Assert in test_ospf_nssa.py
assert 1 == 0
  -1
  +0
2020-11-29 03:15:17,644 ERROR: assert failed at "test_ospf_routemaps/test_ospf_routemaps_check": Test Assert in test_ospf_routemaps.py
assert 1 == 0
  -1
  +0
2020-11-29 03:15:17,739 ERROR: r1: bgpd left a dead pidfile (pid=28183)
2020-11-29 03:16:40,786 ERROR: assert failed at "test_ospf_rte_calc/test_ospf_rte_calc_check": Test Assert in test_rte_calc.py
assert 1 == 0
  -1
  +0
2020-11-29 03:17:26,102 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 1485, in create_interfaces_cfg
    tgen, c_router, interface_data, "interface_config", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 288, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 572, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 3: % Unknown command[16]: ip ospf  hello-interval 65536 


2020-11-29 03:17:48,504 ERROR: assert failed at "test_ospf_single_area/test_ospf_single_area_check": Test Assert in test_ospf_single_area.py
assert 1 == 0
  -1
  +0

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15700/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 arm8: Failed (click for details) Topo tests part 1 on Ubuntu 18.04 arm8: No useful log found
Successful on other platforms/tests
  • Topo tests part 2 on Ubuntu 16.04 amd64
  • Ubuntu 16.04 deb pkg check
  • Topo tests part 2 on Ubuntu 18.04 arm8
  • Topo tests part 0 on Ubuntu 18.04 amd64
  • Debian 10 deb pkg check
  • Topo tests part 2 on Ubuntu 18.04 amd64
  • Topo tests part 0 on Ubuntu 16.04 i386
  • Ubuntu 20.04 deb pkg check
  • Topo tests part 0 on Ubuntu 18.04 arm8
  • IPv4 ldp protocol on Ubuntu 18.04
  • Debian 9 deb pkg check
  • Addresssanitizer topotests part 0
  • Static analyzer (clang)
  • Ubuntu 18.04 deb pkg check
  • Addresssanitizer topotests part 1
  • CentOS 7 rpm pkg check
  • IPv6 protocols on Ubuntu 18.04
  • Fedora 29 rpm pkg check
  • Addresssanitizer topotests part 2
  • Debian 8 deb pkg check
  • IPv4 protocols on Ubuntu 18.04
  • Topo tests part 0 on Ubuntu 16.04 amd64

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-15700/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.5.0.3 (current is 4.3.0)
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20201129-00-gec54c0953-0 (missing) -> 7.6-dev-20201129-00-gec54c0953-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20201129-00-gec54c0953-0 (missing) -> 7.6-dev-20201129-00-gec54c0953-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20201129-00-gec54c0953-0 (missing) -> 7.6-dev-20201129-00-gec54c0953-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20201129-00-gec54c0953-0 (missing) -> 7.6-dev-20201129-00-gec54c0953-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 7.5-0 -> 7.6-dev-20201129-00-gec54c0953-0 (missing) -> 7.6-dev-20201129-00-gec54c0953-0~deb10u1

@donaldsharp donaldsharp closed this Dec 8, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
do not merge submitter action required The author/submitter needs to do something (fix, rebase, add info, etc.) tests Topotests, make check, etc
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants