-
Notifications
You must be signed in to change notification settings - Fork 17
feat: update user-agent and improve transport selection in queryClient #92
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
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
8aaf982
feat: updates user-agent header, improves query transport scheme sele…
karel-rehor 5f69333
chore: fix lint issues
karel-rehor 7aa274c
docs: updates CHANGELOG.md
karel-rehor 8e3197c
chore: improve _flight_client init with connection_string
karel-rehor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,3 +9,7 @@ pyinflux3*.egg-info | |
| __pycache__ | ||
| .idea | ||
| *.egg-info/ | ||
| temp/ | ||
| test-reports/ | ||
| coverage.xml | ||
| .coverage | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| """Version of the Client that is used in User-Agent header.""" | ||
|
|
||
| VERSION = '0.6.0dev0' | ||
| USER_AGENT = f'influxdb3-python/{VERSION}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| # needed to resolve some module imports when running pytest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| import unittest | ||
| from unittest import mock | ||
|
|
||
| from influxdb_client_3.write_client._sync.api_client import ApiClient | ||
| from influxdb_client_3.write_client.configuration import Configuration | ||
| from influxdb_client_3.write_client.service import WriteService | ||
| from influxdb_client_3.version import VERSION | ||
|
|
||
|
|
||
| _package = "influxdb3-python" | ||
| _sentHeaders = {} | ||
|
|
||
|
|
||
| def mock_rest_request(method, | ||
| url, | ||
| query_params=None, | ||
| headers=None, | ||
| body=None, | ||
| post_params=None, | ||
| _preload_content=True, | ||
| _request_timeout=None, | ||
| **urlopen_kw): | ||
| class MockResponse: | ||
| def __init__(self, data, status_code): | ||
| self.data = data | ||
| self.status_code = status_code | ||
|
|
||
| def data(self): | ||
| return self.data | ||
|
|
||
| global _sentHeaders | ||
| _sentHeaders = headers | ||
|
|
||
| return MockResponse(None, 200) | ||
|
|
||
|
|
||
| class ApiClientTests(unittest.TestCase): | ||
|
|
||
| def test_default_headers(self): | ||
| global _package | ||
| conf = Configuration() | ||
| client = ApiClient(conf, | ||
| header_name="Authorization", | ||
| header_value="Bearer TEST_TOKEN") | ||
| self.assertIsNotNone(client.default_headers["User-Agent"]) | ||
| self.assertIsNotNone(client.default_headers["Authorization"]) | ||
| self.assertEqual(f"{_package}/{VERSION}", client.default_headers["User-Agent"]) | ||
| self.assertEqual("Bearer TEST_TOKEN", client.default_headers["Authorization"]) | ||
|
|
||
| @mock.patch("influxdb_client_3.write_client._sync.rest.RESTClientObject.request", | ||
| side_effect=mock_rest_request) | ||
| def test_call_api(self, mock_post): | ||
| global _package | ||
| global _sentHeaders | ||
| _sentHeaders = {} | ||
|
|
||
| conf = Configuration() | ||
| client = ApiClient(conf, | ||
| header_name="Authorization", | ||
| header_value="Bearer TEST_TOKEN") | ||
| service = WriteService(client) | ||
| service.post_write("TEST_ORG", "TEST_BUCKET", "data,foo=bar val=3.14") | ||
| self.assertEqual(4, len(_sentHeaders.keys())) | ||
| self.assertIsNotNone(_sentHeaders["Accept"]) | ||
| self.assertEqual("application/json", _sentHeaders["Accept"]) | ||
| self.assertIsNotNone(_sentHeaders["Content-Type"]) | ||
| self.assertEqual("text/plain", _sentHeaders["Content-Type"]) | ||
| self.assertIsNotNone(_sentHeaders["Authorization"]) | ||
| self.assertEqual("Bearer TEST_TOKEN", _sentHeaders["Authorization"]) | ||
| self.assertIsNotNone(_sentHeaders["User-Agent"]) | ||
| self.assertEqual(f"{_package}/{VERSION}", _sentHeaders["User-Agent"]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please simplify this to something like:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. The
connection_stringis a better solution. Changed.