tests: Added http static server tests.

Coverage increased from 21% to 80%

Type: test

Change-Id: Ic8ecc620cef738d7dbe4c259f58a373ac155a588
Signed-off-by: adrianvillin <avillin@cisco.com>
This commit is contained in:
adrianvillin
2023-10-24 12:53:10 +02:00
committed by Dave Wallace
parent c78eeaba49
commit 30f2600dcf
2 changed files with 157 additions and 3 deletions

View File

@ -6,11 +6,10 @@ import subprocess
import sys
def can_create_namespaces():
def can_create_namespaces(namespace="vpp_chk_4212"):
"""Check if the environment allows creating the namespaces"""
try:
namespace = "vpp_chk_4212"
result = subprocess.run(["ip", "netns", "add", namespace], capture_output=True)
if result.returncode != 0:
return False
@ -18,7 +17,7 @@ def can_create_namespaces():
if result.returncode != 0:
return False
return True
except:
except Exception:
return False