Skip to content

Commit

Permalink
test: Add Python tests
Browse files Browse the repository at this point in the history
  • Loading branch information
theSoenke committed Oct 12, 2023
1 parent e12bc73 commit 8c3b9fa
Show file tree
Hide file tree
Showing 6 changed files with 202 additions and 39 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run Python Tests
on: [push]
jobs:
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
npm install
npm run generate.python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
working-directory: ./clients/python
- name: Run tests
run: |
cd ./clients/python
pip install -r requirements.txt -r test-requirements.txt
python -m unittest
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
clients/go/
clients/python/
clients/php/

clients/python/*
!clients/python/test/test_locales_api.py
!clients/python/test/test_uploads_api.py

clients/ruby/.*
clients/ruby/Gemfile*
Expand Down
102 changes: 102 additions & 0 deletions clients/python/test/test_locales_api.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
# coding: utf-8

"""
Phrase Strings API Reference
The version of the OpenAPI document: 2.0.0
Contact: support@phrase.com
Generated by: https://openapi-generator.tech
"""


from __future__ import absolute_import

import unittest
from unittest.mock import Mock, patch


import phrase_api
from phrase_api.api.locales_api import LocalesApi # noqa: E501
from phrase_api.rest import ApiException


class TestLocalesApi(unittest.TestCase):
"""LocalesApi unit test stubs"""

def setUp(self):
self.configuration = phrase_api.Configuration()
self.configuration.api_key['Authorization'] = 'YOUR_API_KEY'
self.configuration.api_key_prefix['Authorization'] = 'token'

def tearDown(self):
pass

def test_account_locales(self):
"""Test case for account_locales
List locales used in account # noqa: E501
"""
pass



def test_locale_create(self):
"""Test case for locale_create
Create a locale # noqa: E501
"""
pass

def test_locale_delete(self):
"""Test case for locale_delete
Delete a locale # noqa: E501
"""
pass

def test_locale_download(self):
"""Test case for locale_download
Download a locale # noqa: E501
"""
pass

def test_locale_show(self):
"""Test case for locale_show
Get a single locale # noqa: E501
"""
pass

def test_locale_update(self):
"""Test case for locale_update
Update a locale # noqa: E501
"""
pass

@patch('phrase_api.ApiClient.request')
def test_locales_list(self, mock_get):
"""Test case for locales_list
List locales # noqa: E501
"""
mock_get.return_value = Mock(ok=True)
mock_get.return_value.data = '[{"id":"locale_id","name":"locale_name","code":"locale_code","default":true,"main":true,"rtl":true,"plural_forms":["plural_forms"]}]'

project_id = "project_id_example"
with phrase_api.ApiClient(self.configuration) as api_client:
api_instance = phrase_api.api.locales_api.LocalesApi(api_client)
api_response = api_instance.locales_list(project_id)

self.assertIsNotNone(api_response)
self.assertEqual(1, len(api_response))
self.assertIsInstance(api_response[0], phrase_api.models.locale.Locale)
self.assertEqual("locale_id", api_response[0].id)
self.assertEqual("locale_id", api_response[0].id)
self.assertEqual("locale_name", api_response[0].name)



if __name__ == '__main__':
unittest.main()
71 changes: 71 additions & 0 deletions clients/python/test/test_uploads_api.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# coding: utf-8

"""
Phrase Strings API Reference
The version of the OpenAPI document: 2.0.0
Contact: support@phrase.com
Generated by: https://openapi-generator.tech
"""


from __future__ import absolute_import

import unittest
from unittest.mock import Mock, patch

import phrase_api
from phrase_api.api.uploads_api import UploadsApi # noqa: E501
from phrase_api.rest import ApiException


class TestUploadsApi(unittest.TestCase):
"""UploadsApi unit test stubs"""

def setUp(self):
self.configuration = phrase_api.Configuration()
self.configuration.api_key['Authorization'] = 'YOUR_API_KEY'
self.configuration.api_key_prefix['Authorization'] = 'token'

def tearDown(self):
pass

@patch('phrase_api.ApiClient.request')
def test_upload_create(self, mock_post):
"""Test case for upload_create
Upload a new file # noqa: E501
"""
mock_post.return_value = Mock(ok=True)
mock_post.return_value.data = '{"id": "upload_id", "format": "simple_json"}'

project_id = "project_id_example"
with phrase_api.ApiClient(self.configuration) as api_client:
api_instance = phrase_api.UploadsApi(api_client)
api_response = api_instance.upload_create(project_id, file="./README.md", file_format="simple_json")

self.assertEqual("POST", mock_post.call_args_list[0].args[0])
self.assertEqual("https://api.phrase.com/v2/projects/project_id_example/uploads", mock_post.call_args_list[0].args[1])

self.assertIsNotNone(api_response)
self.assertIsInstance(api_response, phrase_api.models.upload.Upload)
self.assertEqual("upload_id", api_response.id)
self.assertEqual("simple_json", api_response.format)

def test_upload_show(self):
"""Test case for upload_show
Get a single upload # noqa: E501
"""
pass

def test_uploads_list(self):
"""Test case for uploads_list
List uploads # noqa: E501
"""
pass


if __name__ == '__main__':
unittest.main()
38 changes: 0 additions & 38 deletions openapi-generator/templates/python/gitlab-ci.mustache

This file was deleted.

3 changes: 3 additions & 0 deletions openapi-generator/templates/python/model_test.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ class Test{{classname}}(unittest.TestCase):
params are included, when True both required and
optional params are included """
# model = {{packageName}}.models.{{classFilename}}.{{classname}}() # noqa: E501

"""
if include_optional :
return {{classname}}(
{{#vars}}
Expand All @@ -42,6 +44,7 @@ class Test{{classname}}(unittest.TestCase):
{{/required}}
{{/vars}}
)
"""

def test{{classname}}(self):
"""Test {{classname}}"""
Expand Down

0 comments on commit 8c3b9fa

Please sign in to comment.