frr/tests/topotests/route_scale/test_route_scale1.py

75 lines
1.2 KiB
Python
Raw Normal View History

#!/usr/bin/env python
# SPDX-License-Identifier: ISC
#
# test_route_scale1.py
#
# Copyright (c) 2021 by
# Nvidia, Inc.
# Donald Sharp
#
"""
test_route_scale1.py: Testing route scale
"""
import os
import sys
import pytest
# Save the Current Working Directory to find configuration files.
CWD = os.path.dirname(os.path.realpath(__file__))
sys.path.append(os.path.join(CWD, "../"))
# pylint: disable=C0413
# Import topogen and topotest helpers
from scale_test_common import (
scale_build_common,
scale_setup_module,
route_install_helper,
scale_test_memory_leak,
scale_converge_protocols,
scale_teardown_module,
)
pytestmark = [pytest.mark.sharpd]
def build(tgen):
scale_build_common(tgen)
def setup_module(module):
scale_setup_module(module)
def teardown_module(_mod):
scale_teardown_module(_mod)
def test_converge_protocols():
scale_converge_protocols()
def test_route_install_2nh():
route_install_helper(1)
def test_route_install_4nh():
route_install_helper(2)
def test_route_install_16nh():
route_install_helper(4)
def test_memory_leak():
scale_test_memory_leak()
if __name__ == "__main__":
args = ["-s"] + sys.argv[1:]
sys.exit(pytest.main(args))