pineappleSoup's picture
Upload folder using huggingface_hub
57db94b verified
"""Unit tests for the :mod:`networkx.generators.duplication` module.
"""
import pytest
from networkx.exception import NetworkXError
from networkx.generators.duplication import (
duplication_divergence_graph,
partial_duplication_graph,
)
class TestDuplicationDivergenceGraph:
"""Unit tests for the
:func:`networkx.generators.duplication.duplication_divergence_graph`
function.
"""
def test_final_size(self):
G = duplication_divergence_graph(3, p=1)
assert len(G) == 3
G = duplication_divergence_graph(3, p=1, seed=42)
assert len(G) == 3
def test_probability_too_large(self):
with pytest.raises(NetworkXError):
duplication_divergence_graph(3, p=2)
def test_probability_too_small(self):
with pytest.raises(NetworkXError):
duplication_divergence_graph(3, p=-1)
def test_non_extreme_probability_value(self):
G = duplication_divergence_graph(6, p=0.3, seed=42)
assert len(G) == 6
assert list(G.degree()) == [(0, 2), (1, 3), (2, 2), (3, 3), (4, 1), (5, 1)]
def test_minimum_desired_nodes(self):
with pytest.raises(
NetworkXError, match=".*n must be greater than or equal to 2"
):
duplication_divergence_graph(1, p=1)
class TestPartialDuplicationGraph:
"""Unit tests for the
:func:`networkx.generators.duplication.partial_duplication_graph`
function.
"""
def test_final_size(self):
N = 10
n = 5
p = 0.5
q = 0.5
G = partial_duplication_graph(N, n, p, q)
assert len(G) == N
G = partial_duplication_graph(N, n, p, q, seed=42)
assert len(G) == N
def test_initial_clique_size(self):
N = 10
n = 10
p = 0.5
q = 0.5
G = partial_duplication_graph(N, n, p, q)
assert len(G) == n
def test_invalid_initial_size(self):
with pytest.raises(NetworkXError):
N = 5
n = 10
p = 0.5
q = 0.5
G = partial_duplication_graph(N, n, p, q)
def test_invalid_probabilities(self):
N = 1
n = 1
for p, q in [(0.5, 2), (0.5, -1), (2, 0.5), (-1, 0.5)]:
args = (N, n, p, q)
pytest.raises(NetworkXError, partial_duplication_graph, *args)