2021-12-01 06:22:59 -05:00
|
|
|
#!/usr/bin/python3
|
2021-06-03 02:37:05 -04:00
|
|
|
|
2021-12-01 06:22:59 -05:00
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
2021-06-03 02:37:05 -04:00
|
|
|
#
|
2021-12-01 06:22:59 -05:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
|
#
|
|
|
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
|
|
|
# information regarding copyright ownership.
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
pytest.importorskip("dns")
|
|
|
|
|
import dns.message
|
|
|
|
|
import dns.query
|
|
|
|
|
import dns.rcode
|
|
|
|
|
|
|
|
|
|
|
2022-03-14 03:59:32 -04:00
|
|
|
def test_connreset(named_port):
|
2022-06-07 10:27:23 -04:00
|
|
|
msg = dns.message.make_query(
|
|
|
|
|
"sub.example.", "A", want_dnssec=True, use_edns=0, payload=1232
|
|
|
|
|
)
|
2022-03-14 03:59:32 -04:00
|
|
|
ans = dns.query.udp(msg, "10.53.0.2", timeout=10, port=named_port)
|
2021-12-01 06:22:59 -05:00
|
|
|
assert ans.rcode() == dns.rcode.SERVFAIL
|