-
Notifications
You must be signed in to change notification settings - Fork 201
Make DNS error retryable #1211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make DNS error retryable #1211
Changes from 4 commits
5b06608
25adc57
b284c9f
0185e16
47b1fb5
55c201c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Copyright (c) "Neo4j" | ||
# Neo4j Sweden AB [https://neo4j.com] | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Copyright (c) "Neo4j" | ||
# Neo4j Sweden AB [https://neo4j.com] | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Copyright (c) "Neo4j" | ||
# Neo4j Sweden AB [https://neo4j.com] | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
from __future__ import annotations | ||
|
||
import socket | ||
|
||
import pytest | ||
|
||
from neo4j._addressing import ( | ||
ResolvedAddress, | ||
ResolvedIPv4Address, | ||
ResolvedIPv6Address, | ||
) | ||
from neo4j._async_compat.network import AsyncNetworkUtil | ||
from neo4j.addressing import Address | ||
from neo4j.exceptions import ServiceUnavailable | ||
|
||
from ....._async_compat import mark_async_test | ||
|
||
|
||
@mark_async_test | ||
async def test_resolve_address(): | ||
resolved = [ | ||
addr | ||
async for addr in AsyncNetworkUtil.resolve_address( | ||
Address(("localhost", 1234)), | ||
) | ||
] | ||
assert all(isinstance(addr, ResolvedAddress) for addr in resolved) | ||
for addr in resolved: | ||
if isinstance(addr, ResolvedIPv4Address): | ||
assert len(addr) == 2 | ||
assert addr[0].startswith("127.0.0.") | ||
assert addr[1] == 1234 | ||
elif isinstance(addr, ResolvedIPv6Address): | ||
assert len(addr) == 4 | ||
assert addr[:2] == ("::1", 1234) | ||
|
||
|
||
@mark_async_test | ||
async def test_resolve_invalid_address(): | ||
with pytest.raises(ServiceUnavailable) as exc: | ||
await anext( | ||
AsyncNetworkUtil.resolve_address( | ||
Address(("example.invalid", 1234)), | ||
) | ||
) | ||
cause = exc.value.__cause__ | ||
assert isinstance(cause, socket.gaierror) | ||
assert cause.errno, socket.EAI_NONAME |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.