Skip to content

Commit bb8733d

Browse files
committed
refactor initialization
- set self._network rather than _prefix_len
1 parent dd723bc commit bb8733d

File tree

3 files changed

+28
-12
lines changed

3 files changed

+28
-12
lines changed

ip_pool/ip_pool.py

+9-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import ipaddress
21
import json
32
from ipaddress import IPv4Address, IPv4Interface, IPv4Network
43
from typing import Dict, List
@@ -12,11 +11,15 @@ class IPAddressPool:
1211
def __init__(self, ipaddr_db_json_path: str):
1312
self.json_path = ipaddr_db_json_path
1413
self._ip_version = 4
15-
self._prefix_len = 0
14+
self._network = None
1615
self._ipaddr_pool = []
1716
self._hostnames = {}
1817
self._load_from_json(ipaddr_db_json_path)
1918

19+
@property
20+
def prefixlen(self):
21+
return self._network.prefixlen
22+
2023
@property
2124
def addresses(self) -> List[IPv4Address]:
2225
addresses = list(self._ipaddr_pool)
@@ -33,10 +36,11 @@ def initialize(self, ipv4_cidr_address: str):
3336
if self.is_initialized():
3437
raise IPAddressPoolException("Address pool already initialized")
3538

36-
prefix_len, address_list = self._generate_addresses(ipv4_cidr_address)
37-
39+
iface = IPv4Interface(ipv4_cidr_address)
40+
network: IPv4Network = iface.network
41+
address_list = list(network.hosts())
42+
self._network = network
3843
self._ipaddr_pool = address_list
39-
self._prefix_len = prefix_len
4044
self._save()
4145

4246
def new_address(self, hostname: str) -> IPv4Address:
@@ -112,10 +116,3 @@ def _load_from_json(self, json_path):
112116
self._initialize_from_dict(loaded)
113117
except FileNotFoundError:
114118
pass
115-
116-
def _generate_addresses(self, cidr_address):
117-
iface: IPv4Interface = ipaddress.ip_interface(cidr_address)
118-
network: IPv4Network = iface.network
119-
prefix_len = network.prefixlen
120-
hosts = list(network.hosts())
121-
return prefix_len, hosts

tests/data/test-data.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
test-data: hello

tests/test_ip-pool.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# import stuff from your project here
2+
# Run tests by doing:
3+
# $ cd path/to/ip-address-pool
4+
# $ nosetests
5+
import os
6+
7+
DATA_PATH = os.path.join("tests", "data")
8+
TEST_DATA = os.path.join(DATA_PATH, "test-data.txt")
9+
10+
11+
def setup_test_data():
12+
data = open(TEST_DATA, "r").read()
13+
return data
14+
15+
16+
def test_hello():
17+
data = setup_test_data()
18+
assert "hello" in data

0 commit comments

Comments
 (0)