Skip to content

Commit

Permalink
tests(version): add tests to fintoc version header
Browse files Browse the repository at this point in the history
  • Loading branch information
jfcumsille committed Apr 9, 2024
1 parent 75257d0 commit 330ea48
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 5 deletions.
2 changes: 2 additions & 0 deletions tests/managers/test_links_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@ def patch_http_client(self, patch_http_client):
def setup_method(self):
self.base_url = "https://test.com"
self.api_key = "super_secret_api_key"
self.api_version = None
self.user_agent = "fintoc-python/test"
self.params = {"first_param": "first_value", "second_param": "second_value"}
self.client = Client(
self.base_url,
self.api_key,
self.api_version,
self.user_agent,
params=self.params,
)
Expand Down
6 changes: 6 additions & 0 deletions tests/mixins/test_manager_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,13 @@ def patch_http_client(self, patch_http_client):
def setup_method(self):
self.base_url = "https://test.com"
self.api_key = "super_secret_api_key"
self.api_version = None
self.user_agent = "fintoc-python/test"
self.params = {"first_param": "first_value", "second_param": "second_value"}
self.client = Client(
self.base_url,
self.api_key,
self.api_version,
self.user_agent,
params=self.params,
)
Expand Down Expand Up @@ -95,11 +97,13 @@ def patch_http_client(self, patch_http_client):
def setup_method(self):
self.base_url = "https://test.com"
self.api_key = "super_secret_api_key"
self.api_version = None
self.user_agent = "fintoc-python/test"
self.params = {"first_param": "first_value", "second_param": "second_value"}
self.client = Client(
self.base_url,
self.api_key,
self.api_version,
self.user_agent,
params=self.params,
)
Expand Down Expand Up @@ -148,11 +152,13 @@ def patch_http_client(self, patch_http_client):
def setup_method(self):
self.base_url = "https://test.com"
self.api_key = "super_secret_api_key"
self.api_version = None
self.user_agent = "fintoc-python/test"
self.params = {"first_param": "first_value", "second_param": "second_value"}
self.client = Client(
self.base_url,
self.api_key,
self.api_version,
self.user_agent,
params=self.params,
)
Expand Down
6 changes: 6 additions & 0 deletions tests/mixins/test_resource_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ def patch_http_client(self, patch_http_client):
def setup_method(self):
self.base_url = "https://test.com"
self.api_key = "super_secret_api_key"
self.api_version = None
self.user_agent = "fintoc-python/test"
self.params = {"first_param": "first_value", "second_param": "second_value"}
self.client = Client(
self.base_url,
self.api_key,
self.api_version,
self.user_agent,
params=self.params,
)
Expand Down Expand Up @@ -108,11 +110,13 @@ def patch_http_client(self, patch_http_client):
def setup_method(self):
self.base_url = "https://test.com"
self.api_key = "super_secret_api_key"
self.api_version = None
self.user_agent = "fintoc-python/test"
self.params = {"first_param": "first_value", "second_param": "second_value"}
self.client = Client(
self.base_url,
self.api_key,
self.api_version,
self.user_agent,
params=self.params,
)
Expand Down Expand Up @@ -159,11 +163,13 @@ def patch_http_client(self, patch_http_client):
def setup_method(self):
self.base_url = "https://test.com"
self.api_key = "super_secret_api_key"
self.api_version = None
self.user_agent = "fintoc-python/test"
self.params = {"first_param": "first_value", "second_param": "second_value"}
self.client = Client(
self.base_url,
self.api_key,
self.api_version,
self.user_agent,
params=self.params,
)
Expand Down
2 changes: 2 additions & 0 deletions tests/resources/test_account.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ class TestAccountResource:
def setup_method(self):
self.base_url = "https://test.com"
self.api_key = "super_secret_api_key"
self.api_version = None
self.user_agent = "fintoc-python/test"
self.params = {"first_param": "first_value", "second_param": "second_value"}
self.client = Client(
self.base_url,
self.api_key,
self.api_version,
self.user_agent,
params=self.params,
)
Expand Down
2 changes: 2 additions & 0 deletions tests/resources/test_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ class TestLinkResource:
def setup_method(self):
self.base_url = "https://test.com"
self.api_key = "super_secret_api_key"
self.api_version = None
self.user_agent = "fintoc-python/test"
self.params = {"first_param": "first_value", "second_param": "second_value"}
self.client = Client(
self.base_url,
self.api_key,
self.api_version,
self.user_agent,
params=self.params,
)
Expand Down
28 changes: 24 additions & 4 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,19 @@ def setup_method(self):
self.api_key = "super_secret_api_key"
self.user_agent = "fintoc-python/test"
self.params = {"first_param": "first_value", "second_param": "second_value"}
self.api_version = None

def create_client(self, params=False):
def create_client(self, params=False, api_version=None):
if not params:
return Client(self.base_url, self.api_key, self.user_agent)
return Client(self.base_url, self.api_key, self.user_agent, params=self.params)
return Client(self.base_url, self.api_key, api_version, self.user_agent)

return Client(
self.base_url,
self.api_key,
self.api_version,
self.user_agent,
params=self.params,
)

def test_client_creation_without_params(self):
client = self.create_client()
Expand All @@ -34,7 +42,17 @@ def test_client_creation_with_params(self):
assert client.user_agent == self.user_agent
assert client.params == self.params

def test_client_headers(self):
def test_client_headers_with_api_version(self):
client = self.create_client(api_version="2023-01-01")
assert isinstance(client.headers, dict)
assert len(client.headers.keys()) == 3
assert "Authorization" in client.headers
assert "User-Agent" in client.headers
assert client.headers["Authorization"] == self.api_key
assert client.headers["User-Agent"] == self.user_agent
assert client.headers["Fintoc-Version"] == "2023-01-01"

def test_client_headers_without_api_version(self):
client = self.create_client()
assert isinstance(client.headers, dict)
assert len(client.headers.keys()) == 2
Expand Down Expand Up @@ -87,11 +105,13 @@ def patch_http_client(self, patch_http_client):
def setup_method(self):
self.base_url = "https://test.com"
self.api_key = "super_secret_api_key"
self.api_version = None
self.user_agent = "fintoc-python/test"
self.params = {"first_param": "first_value", "second_param": "second_value"}
self.client = Client(
self.base_url,
self.api_key,
self.api_version,
self.user_agent,
params=self.params,
)
Expand Down
3 changes: 2 additions & 1 deletion tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ class TestCoreFintocObject:
def test_object_creations(self):
# pylint: disable=protected-access
api_key = "super_secret_api_key"
fintoc = Fintoc(api_key)
api_version = "2023-01-01"
fintoc = Fintoc(api_key, api_version)
assert isinstance(fintoc._client, Client)
assert isinstance(fintoc.links, ManagerMixin)
assert isinstance(fintoc.webhook_endpoints, ManagerMixin)

0 comments on commit 330ea48

Please sign in to comment.