From 28b344a6ade7624278835cff242b3e0c9d891346 Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Mon, 14 May 2018 13:22:42 +0200 Subject: CSIT-1081 Container VPP configuration refactor Adopt code for various topology configurations. Change-Id: Iaf9d7995ab8cd06da0c56c5e5664d57d19e74d7c Signed-off-by: Peter Mikus --- resources/libraries/python/Memif.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'resources/libraries/python/Memif.py') diff --git a/resources/libraries/python/Memif.py b/resources/libraries/python/Memif.py index b4c184e1be..acde3ecc17 100644 --- a/resources/libraries/python/Memif.py +++ b/resources/libraries/python/Memif.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017 Cisco and/or its affiliates. +# Copyright (c) 2018 Cisco and/or its affiliates. # 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: @@ -15,7 +15,7 @@ from resources.libraries.python.ssh import SSH from resources.libraries.python.VatExecutor import VatExecutor, VatTerminal -from resources.libraries.python.topology import Topology +from resources.libraries.python.topology import NodeType, Topology class Memif(object): @@ -98,6 +98,17 @@ class Memif(object): vat = VatExecutor() vat.execute_script("show_memif.vat", node, json_out=False) + @staticmethod + def show_memif_on_all_duts(nodes): + """Show Memif data on all DUTs. + + :param nodes: Topology nodes. + :type nodes: dict + """ + for node in nodes.values(): + if node['type'] == NodeType.DUT: + Memif.show_memif(node) + @staticmethod def clear_memif_socks(node, *socks): """Clear Memif sockets for the given node. -- cgit 1.2.3-korg