2020-03-27 10:13:31 +01:00
|
|
|
#!/usr/bin/python3
|
2021-06-03 08:37:05 +02:00
|
|
|
|
2020-03-27 10:13:31 +01:00
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
|
|
#
|
2021-06-03 08:37:05 +02:00
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
#
|
2020-03-27 10:13:31 +01:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
2021-06-03 08:37:05 +02:00
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
2020-09-14 16:20:40 -07:00
|
|
|
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
2020-03-27 10:13:31 +01:00
|
|
|
#
|
|
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
|
|
# information regarding copyright ownership.
|
|
|
|
|
|
|
|
from datetime import datetime
|
2020-04-14 17:02:21 +02:00
|
|
|
|
2021-09-17 16:34:25 +10:00
|
|
|
import os
|
|
|
|
|
2020-04-14 17:02:21 +02:00
|
|
|
import pytest
|
|
|
|
import requests
|
|
|
|
|
|
|
|
import generic
|
|
|
|
from helper import fmt
|
2020-03-27 10:13:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
# JSON helper functions
|
2020-04-14 17:02:21 +02:00
|
|
|
def fetch_zones_json(statsip, statsport):
|
2020-03-27 10:13:31 +01:00
|
|
|
|
2021-06-02 16:40:58 +10:00
|
|
|
r = requests.get("http://{}:{}/json/v1/zones".format(statsip, statsport),
|
|
|
|
timeout=600)
|
2020-03-27 10:13:31 +01:00
|
|
|
assert r.status_code == 200
|
|
|
|
|
|
|
|
data = r.json()
|
|
|
|
return data["views"]["_default"]["zones"]
|
|
|
|
|
|
|
|
|
2020-04-14 17:02:21 +02:00
|
|
|
def fetch_traffic_json(statsip, statsport):
|
|
|
|
|
2021-06-02 16:40:58 +10:00
|
|
|
r = requests.get("http://{}:{}/json/v1/traffic".format(statsip, statsport),
|
|
|
|
timeout=600)
|
2020-04-14 17:02:21 +02:00
|
|
|
assert r.status_code == 200
|
|
|
|
|
|
|
|
data = r.json()
|
|
|
|
|
|
|
|
return data["traffic"]
|
|
|
|
|
|
|
|
|
|
|
|
def load_timers_json(zone, primary=True):
|
|
|
|
|
2020-03-27 10:13:31 +01:00
|
|
|
name = zone['name']
|
|
|
|
|
|
|
|
# Check if the primary zone timer exists
|
|
|
|
assert 'loaded' in zone
|
|
|
|
loaded = datetime.strptime(zone['loaded'], fmt)
|
|
|
|
|
|
|
|
if primary:
|
|
|
|
# Check if the secondary zone timers does not exist
|
|
|
|
assert 'expires' not in zone
|
|
|
|
assert 'refresh' not in zone
|
|
|
|
expires = None
|
|
|
|
refresh = None
|
|
|
|
else:
|
|
|
|
assert 'expires' in zone
|
|
|
|
assert 'refresh' in zone
|
|
|
|
expires = datetime.strptime(zone['expires'], fmt)
|
|
|
|
refresh = datetime.strptime(zone['refresh'], fmt)
|
|
|
|
|
|
|
|
return (name, loaded, expires, refresh)
|
|
|
|
|
|
|
|
|
2020-04-14 17:02:21 +02:00
|
|
|
def load_zone_json(zone):
|
|
|
|
name = zone['name']
|
|
|
|
|
|
|
|
return name
|
|
|
|
|
|
|
|
|
2020-03-27 10:13:31 +01:00
|
|
|
@pytest.mark.json
|
|
|
|
@pytest.mark.requests
|
2021-09-17 16:34:25 +10:00
|
|
|
@pytest.mark.skipif(os.getenv("HAVEJSONSTATS", "unset") != "1",
|
|
|
|
reason="JSON not configured")
|
2020-03-27 10:13:31 +01:00
|
|
|
def test_zone_timers_primary_json(statsport):
|
2020-04-14 17:02:21 +02:00
|
|
|
generic.test_zone_timers_primary(fetch_zones_json, load_timers_json,
|
|
|
|
statsip="10.53.0.1", statsport=statsport,
|
|
|
|
zonedir="ns1")
|
2020-03-27 10:13:31 +01:00
|
|
|
|
|
|
|
|
2020-04-14 17:02:21 +02:00
|
|
|
@pytest.mark.json
|
|
|
|
@pytest.mark.requests
|
2021-09-17 16:34:25 +10:00
|
|
|
@pytest.mark.skipif(os.getenv("HAVEJSONSTATS", "unset") != "1",
|
|
|
|
reason="JSON not configured")
|
2020-04-14 17:02:21 +02:00
|
|
|
def test_zone_timers_secondary_json(statsport):
|
|
|
|
generic.test_zone_timers_secondary(fetch_zones_json, load_timers_json,
|
|
|
|
statsip="10.53.0.3", statsport=statsport,
|
|
|
|
zonedir="ns3")
|
2020-03-27 10:13:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.json
|
|
|
|
@pytest.mark.requests
|
2021-09-17 16:34:25 +10:00
|
|
|
@pytest.mark.skipif(os.getenv("HAVEJSONSTATS", "unset") != "1",
|
|
|
|
reason="JSON not configured")
|
2020-04-14 17:02:21 +02:00
|
|
|
def test_zone_with_many_keys_json(statsport):
|
|
|
|
generic.test_zone_with_many_keys(fetch_zones_json, load_zone_json,
|
|
|
|
statsip="10.53.0.2", statsport=statsport)
|
2020-03-27 10:13:31 +01:00
|
|
|
|
|
|
|
|
2020-04-14 17:02:21 +02:00
|
|
|
@pytest.mark.json
|
|
|
|
@pytest.mark.requests
|
|
|
|
@pytest.mark.dnspython
|
2021-09-17 16:34:25 +10:00
|
|
|
@pytest.mark.skipif(os.getenv("HAVEJSONSTATS", "unset") != "1",
|
|
|
|
reason="JSON not configured")
|
2020-04-14 17:02:21 +02:00
|
|
|
def test_traffic_json(port, statsport):
|
|
|
|
generic.test_traffic(fetch_traffic_json,
|
|
|
|
statsip="10.53.0.2", statsport=statsport,
|
|
|
|
port=port)
|