re-import sources as agreed with the maintainer

This commit is contained in:
Adam Samalik 2023-07-11 11:49:48 +02:00
parent 8ad47de44e
commit 207eee8c0f
3 changed files with 46 additions and 1 deletions

4
.gitignore vendored
View File

@ -1,2 +1,4 @@
SOURCES/netifaces-0.10.6.tar.gz
/netifaces-0.5.tar.gz
/netifaces-0.10.4.tar.gz
/netifaces-0.10.5.tar.gz
/netifaces-0.10.6.tar.gz

30
tests/test_netifaces.py Normal file
View 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
View 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