-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into datetime-parsing
- Loading branch information
Showing
10 changed files
with
205 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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,5 +9,7 @@ pyinflux3*.egg-info | |
__pycache__ | ||
.idea | ||
*.egg-info/ | ||
.coverage | ||
temp/ | ||
test-reports/ | ||
coverage.xml | ||
.coverage |
This file contains 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 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 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 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 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 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 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 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