1
0
Fork 0
mirror of https://github.com/NeoCloud/NeoNetwork synced 2024-11-22 17:20:40 +08:00

assert as range

This commit is contained in:
JerryXiao 2020-05-22 18:29:07 +08:00
parent 66cd47a84a
commit 75d7176722
Signed by: Jerry
GPG key ID: 9D9CE43650FF2BAA

View file

@ -9,6 +9,7 @@ import re
NEONET_ADDR_POOL = ('10.127.0.0/16', 'fd10:127::/32') NEONET_ADDR_POOL = ('10.127.0.0/16', 'fd10:127::/32')
NEONET_ADDR_POOL = [ip_network(neo) for neo in NEONET_ADDR_POOL] NEONET_ADDR_POOL = [ip_network(neo) for neo in NEONET_ADDR_POOL]
IS_NEONET = lambda net: bool([True for neo in NEONET_ADDR_POOL if net.version == neo.version and net.subnet_of(neo)]) IS_NEONET = lambda net: bool([True for neo in NEONET_ADDR_POOL if net.version == neo.version and net.subnet_of(neo)])
AS_IS_NEONET = lambda asn: 4201270000 <= asn <= 4201279999
assert hasattr(IPv4Network, 'subnet_of') # needs at least python 3.7 assert hasattr(IPv4Network, 'subnet_of') # needs at least python 3.7
class BashParser: class BashParser:
@ -113,10 +114,12 @@ def neonet_get_asns():
continue continue
fc = shell2dict(f.read_text()) fc = shell2dict(f.read_text())
present_keys = ('name', 'owner', 'desc') present_keys = ('name', 'owner', 'desc')
asns[str2asn(f.name, 1)] = {k: fc.get(k) for k in present_keys} asn = str2asn(f.name, 1)
asns[asn] = {k: fc.get(k) for k in present_keys}
assert fc.get('owner') in PEOPLE assert fc.get('owner') in PEOPLE
for v in asns[str2asn(f.name, 1)].values(): for v in asns[asn].values():
assert v is not None assert v is not None
assert AS_IS_NEONET(asn) or asns[asn].get('external')
except Exception: except Exception:
print("[!] Error while processing file", f) print("[!] Error while processing file", f)
raise raise