mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 00:56:19 +00:00
tests: client testing
Signed-off-by: Christian Hopps <chopps@labn.net>
This commit is contained in:
parent
b8b5290105
commit
2bb115fd78
103
tests/topotests/mgmt_fe_client/fe_client.py
Normal file
103
tests/topotests/mgmt_fe_client/fe_client.py
Normal file
@ -0,0 +1,103 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 eval: (blacken-mode 1) -*-
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
#
|
||||
# November 27 2023, Christian Hopps <chopps@labn.net>
|
||||
#
|
||||
# Copyright (c) 2023, LabN Consulting, L.L.C.
|
||||
#
|
||||
# noqa: E501
|
||||
#
|
||||
import argparse
|
||||
import errno
|
||||
import logging
|
||||
import os
|
||||
import socket
|
||||
import sys
|
||||
import time
|
||||
from pathlib import Path
|
||||
|
||||
import mgmt_pb2
|
||||
|
||||
MGMT_MSG_MARKER_PROTOBUF = b"\000###"
|
||||
MGMT_MSG_MARKER_NATIVE = b"\001###"
|
||||
|
||||
|
||||
def __parse_args():
|
||||
MPATH = "/var/run/frr/mgmtd_fe.sock"
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("--verbose", action="store_true", help="Be verbose")
|
||||
parser.add_argument("--server", default=MPATH, help="path to server socket")
|
||||
args = parser.parse_args()
|
||||
|
||||
level = logging.DEBUG if args.verbose else logging.INFO
|
||||
logging.basicConfig(level=level, format="%(asctime)s %(levelname)s: %(message)s")
|
||||
|
||||
return args
|
||||
|
||||
|
||||
def __server_connect(spath):
|
||||
sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
|
||||
logging.debug("Connecting to server on %s", spath)
|
||||
while ec := sock.connect_ex(str(spath)):
|
||||
logging.warn("retry server connection in .5s (%s)", os.strerror(ec))
|
||||
time.sleep(0.5)
|
||||
logging.info("Connected to server on %s", spath)
|
||||
return sock
|
||||
|
||||
|
||||
def mgmt_pb_recv_msg(sock, msg):
|
||||
"""Receive a mgmtd protobuf message from a stream socket."""
|
||||
marker = sock.recv(4)
|
||||
assert marker in (MGMT_MSG_MARKER_PROTOBUF, MGMT_MSG_MARKER_NATIVE)
|
||||
|
||||
msize = int.from_bytes(sock.recv(4), byteorder="big")
|
||||
mdata = sock.recv(msize)
|
||||
|
||||
msg.ParseFromString(mdata)
|
||||
return msg
|
||||
|
||||
|
||||
def mgmt_pb_send_msg(sock, msg):
|
||||
"""Send a mgmtd protobuf message from a stream socket."""
|
||||
marker = MGMT_MSG_MARKER_PROTOBUF
|
||||
mdata = msg.SerializeToString()
|
||||
msize = int.to_bytes(len(mdata), byteorder="big", length=4)
|
||||
sock.send(marker)
|
||||
sock.send(msize)
|
||||
sock.send(mdata)
|
||||
|
||||
|
||||
def create_session(sock):
|
||||
req = mgmt_pb2.FeRegisterReq()
|
||||
req.client_name = "test-client"
|
||||
mgmt_pb_send_msg(sock, req)
|
||||
logging.debug("Sent FeRegisterReq: %s", req)
|
||||
|
||||
req = mgmt_pb2.FeSessionReq()
|
||||
req.create = 1
|
||||
req.client_conn_id = 1
|
||||
mgmt_pb_send_msg(sock, req)
|
||||
logging.debug("Sent FeSessionReq: %s", req)
|
||||
|
||||
reply = mgmt_pb_recv_msg(sock, mgmt_pb2.FeSessionReply())
|
||||
logging.debug("Received FeSessionReply: %s", reply)
|
||||
|
||||
|
||||
def __main():
|
||||
args = __parse_args()
|
||||
sock = __server_connect(Path(args.server))
|
||||
create_session(sock)
|
||||
|
||||
|
||||
def main():
|
||||
try:
|
||||
__main()
|
||||
except KeyboardInterrupt:
|
||||
logging.info("Exiting")
|
||||
except Exception as error:
|
||||
logging.error("Unexpected error exiting: %s", error, exc_info=True)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
1990
tests/topotests/mgmt_fe_client/mgmt_pb2.py
Normal file
1990
tests/topotests/mgmt_fe_client/mgmt_pb2.py
Normal file
File diff suppressed because one or more lines are too long
1
tests/topotests/mgmt_fe_client/oper.py
Symbolic link
1
tests/topotests/mgmt_fe_client/oper.py
Symbolic link
@ -0,0 +1 @@
|
||||
../mgmt_oper/oper.py
|
23
tests/topotests/mgmt_fe_client/r1/frr.conf
Normal file
23
tests/topotests/mgmt_fe_client/r1/frr.conf
Normal file
@ -0,0 +1,23 @@
|
||||
log timestamp precision 6
|
||||
log file frr.log
|
||||
|
||||
no debug memstats-at-exit
|
||||
|
||||
debug northbound notifications
|
||||
debug northbound libyang
|
||||
debug northbound events
|
||||
debug northbound callbacks
|
||||
|
||||
debug mgmt backend datastore frontend transaction
|
||||
debug mgmt client frontend
|
||||
debug mgmt client backend
|
||||
|
||||
interface r1-eth0
|
||||
ip address 1.1.1.1/24
|
||||
exit
|
||||
|
||||
interface r1-eth1 vrf red
|
||||
ip address 3.3.3.1/24
|
||||
exit
|
||||
ip route 11.11.11.11/32 1.1.1.2
|
||||
!ip route 13.13.13.13/32 3.3.3.2 vrf red
|
49
tests/topotests/mgmt_fe_client/test_client.py
Normal file
49
tests/topotests/mgmt_fe_client/test_client.py
Normal file
@ -0,0 +1,49 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 eval: (blacken-mode 1) -*-
|
||||
# SPDX-License-Identifier: ISC
|
||||
#
|
||||
# Copyright (c) 2021, LabN Consulting, L.L.C.
|
||||
# Copyright (c) 2019-2020 by
|
||||
# Donatas Abraitis <donatas.abraitis@gmail.com>
|
||||
#
|
||||
# noqa: E501
|
||||
#
|
||||
"""
|
||||
Test static route functionality
|
||||
"""
|
||||
import pytest
|
||||
from lib.topogen import Topogen
|
||||
from oper import check_kernel_32
|
||||
|
||||
pytestmark = [pytest.mark.staticd]
|
||||
|
||||
|
||||
@pytest.fixture(scope="module")
|
||||
def tgen(request):
|
||||
"Setup/Teardown the environment and provide tgen argument to tests"
|
||||
|
||||
topodef = {"s1": ("r1",), "s2": ("r1",)}
|
||||
|
||||
tgen = Topogen(topodef, request.module.__name__)
|
||||
tgen.start_topology()
|
||||
|
||||
router_list = tgen.routers()
|
||||
for rname, router in router_list.items():
|
||||
# Setup VRF red
|
||||
router.net.add_l3vrf("red", 10)
|
||||
router.net.add_loop("lo-red")
|
||||
router.net.attach_iface_to_l3vrf("lo-red", "red")
|
||||
router.net.attach_iface_to_l3vrf(rname + "-eth1", "red")
|
||||
router.load_frr_config("frr.conf")
|
||||
|
||||
tgen.start_router()
|
||||
yield tgen
|
||||
tgen.stop_topology()
|
||||
|
||||
|
||||
def test_oper_simple(tgen):
|
||||
if tgen.routers_have_failure():
|
||||
pytest.skip(tgen.errors)
|
||||
|
||||
r1 = tgen.gears["r1"].net
|
||||
check_kernel_32(r1, "11.11.11.11", 1, "")
|
Loading…
Reference in New Issue
Block a user