Adding gating.yaml and tests for python-netifaces
Signed-off-by: Sudhir Menon <sumenon@redhat.com>
This commit is contained in:
parent
1cd19fe85d
commit
c25cc08799
7
gating.yaml
Normal file
7
gating.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# recipients: abokovoy, frenaud, kaleem, ftrivino, fcami
|
||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-10
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
30
tests/test_netifaces.py
Normal file
30
tests/test_netifaces.py
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import netifaces
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
|
def test_interfaces():
|
||||||
|
ifaces = netifaces.interfaces()
|
||||||
|
assert isinstance(ifaces, list)
|
||||||
|
assert "lo" in ifaces
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.parametrize(
|
||||||
|
"iface,af,expected",
|
||||||
|
[
|
||||||
|
("lo", netifaces.AF_INET, "127.0.0.1"),
|
||||||
|
("lo", netifaces.AF_INET6, "::1"),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
def test_ifaddresses_lo(iface, af, expected):
|
||||||
|
addrs = netifaces.ifaddresses(iface)
|
||||||
|
assert addrs[af][0]["addr"] == expected
|
||||||
|
|
||||||
|
|
||||||
|
def test_invalid():
|
||||||
|
with pytest.raises(ValueError):
|
||||||
|
netifaces.ifaddresses("invalid interface")
|
||||||
|
|
||||||
|
|
||||||
|
def test_gateways():
|
||||||
|
gw = netifaces.gateways()
|
||||||
|
assert "default" in gw
|
13
tests/tests.yml
Normal file
13
tests/tests.yml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
- hosts: localhost
|
||||||
|
tags:
|
||||||
|
- classic
|
||||||
|
roles:
|
||||||
|
- role: standard-test-basic
|
||||||
|
required_packages:
|
||||||
|
- python3-netifaces
|
||||||
|
- python3-pytest
|
||||||
|
tests:
|
||||||
|
- unittests:
|
||||||
|
dir: "."
|
||||||
|
run: pytest-3 test_netifaces.py
|
Loading…
Reference in New Issue
Block a user