Files
wlan-testing/tests/test_connectivity.py
2021-04-16 21:47:05 +05:30

30 lines
701 B
Python

import pytest
@pytest.mark.sanity
@pytest.mark.bridge
@pytest.mark.nat
@pytest.mark.vlan
@pytest.mark.wifi5
@pytest.mark.wifi6
class TestConnection:
def test_cloud_connectivity(self, instantiate_cloudsdk):
assert instantiate_cloudsdk
@pytest.mark.ap_conn
def test_access_points_connectivity(self, test_access_point):
PASS = True
if "ACTIVE" not in test_access_point:
PASS = False
import sys
sys.exit()
assert PASS
def test_lanforge_connectivity(self, setup_lanforge):
assert "instantiate_cloudsdk"
def test_perfecto_connectivity(self, setup_perfecto_devices):
assert "instantiate_cloudsdk"