-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reverted unit testing and updated test_get_token_default_server()
- Loading branch information
Juliana Mashon
authored and
Juliana Mashon
committed
Jul 17, 2024
1 parent
937fb17
commit 3ebdf5d
Showing
1 changed file
with
205 additions
and
24 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 |
---|---|---|
@@ -1,43 +1,224 @@ | ||
import unittest | ||
from unittest.mock import MagicMock, patch | ||
import json | ||
from unittest.mock import Mock, patch | ||
|
||
from main import Farmbot | ||
from api_functions import ApiFunctions | ||
from broker_functions import BrokerFunctions | ||
|
||
class TestApiFunctions(unittest.TestCase): | ||
|
||
class TestFarmbot(unittest.TestCase): | ||
@patch('main.ApiFunctions') | ||
def setUp(self, MockApiFunctions): | ||
self.mock_api = MockApiFunctions.return_value | ||
self.farmbot = Farmbot() | ||
@patch('main.BrokerFunctions') | ||
def test_get_token_default_server(self, MockBrokerFunctions, MockApiFunctions): | ||
mock_api_instance = MockApiFunctions.return_value | ||
mock_broker_instance = MockBrokerFunctions.return_value | ||
|
||
mock_response = Mock() | ||
expected_token = {'token': 'abc123'} | ||
mock_response.json.return_value = expected_token | ||
mock_response.status_code = 200 | ||
|
||
fb = Farmbot() | ||
token_data = fb.get_token('[email protected]', 'test_pass_123') | ||
|
||
mock_api_instance.post.assert_called_once_with( | ||
'https://my.farm.bot/api/tokens', | ||
headers={'content-type': 'application/json'}, | ||
json={'user': {'email': '[email protected]', 'password': 'test_pass_123'}} | ||
) | ||
|
||
self.assertEqual(token_data, expected_token) | ||
self.assertEqual(fb.token, expected_token) | ||
|
||
mock_api_instance.get_token.assert_called_once_with('[email protected]', 'test_pass_123', 'https://my.farm.bot') | ||
|
||
mock_broker_instance.broker_connect.token = expected_token | ||
mock_broker_instance.api.api_connect.token = expected_token | ||
|
||
# ## POSITIVE TEST: function called with email, password, and default server | ||
# @patch('requests.post') | ||
# def test_get_token_default_server(self, mock_post): | ||
# mock_response = Mock() | ||
# expected_token = {'token': 'abc123'} | ||
# mock_response.json.return_value = expected_token | ||
# mock_response.status_code = 200 | ||
# mock_post.return_value = mock_response | ||
# fb = Farmbot() | ||
# fb.get_token('[email protected]', 'test_pass_123') | ||
# mock_post.assert_called_once_with( | ||
# 'https://my.farm.bot/api/tokens', | ||
# headers={'content-type': 'application/json'}, | ||
# json={'user': {'email': '[email protected]', 'password': 'test_pass_123'}} | ||
# ) | ||
# self.assertEqual(fb.token, expected_token) | ||
# self.assertEqual(mock_post.return_value.status_code, 200) | ||
|
||
# POSITIVE TEST: function called with email, password, and custom server | ||
@patch('requests.post') | ||
def test_get_token_custom_server(self, mock_post): | ||
mock_response = Mock() | ||
expected_token = {'token': 'abc123'} | ||
mock_response.json.return_value = expected_token | ||
mock_response.status_code = 200 | ||
mock_post.return_value = mock_response | ||
fb = Farmbot() | ||
# Call with custom server | ||
fb.get_token('[email protected]', 'test_pass_123', 'https://staging.farm.bot') | ||
mock_post.assert_called_once_with( | ||
'https://staging.farm.bot/api/tokens', | ||
headers={'content-type': 'application/json'}, | ||
json={'user': {'email': '[email protected]', 'password': 'test_pass_123'}} | ||
) | ||
self.assertEqual(fb.token, expected_token) | ||
self.assertEqual(mock_post.return_value.status_code, 200) | ||
|
||
# NEGATIVE TEST: function called with bad email or password (HTTP error) | ||
@patch('requests.post') | ||
def test_get_token_bad_email(self, mock_post): | ||
mock_response = Mock() | ||
mock_response.status_code = 422 | ||
mock_post.return_value = mock_response | ||
fb = Farmbot() | ||
# Call with bad email | ||
fb.get_token('[email protected]', 'test_pass_123', 'https://staging.farm.bot') | ||
mock_post.assert_called_once_with( | ||
'https://staging.farm.bot/api/tokens', | ||
headers={'content-type': 'application/json'}, | ||
json={'user': {'email': '[email protected]', 'password': 'test_pass_123'}} | ||
) | ||
self.assertIsNone(fb.token) | ||
self.assertEqual(mock_post.return_value.status_code, 422) | ||
|
||
# NEGATIVE TEST: function called with bad server address (HTTP error) | ||
@patch('requests.post') | ||
def test_get_token_bad_email(self, mock_post): | ||
mock_response = Mock() | ||
mock_response.status_code = 404 | ||
mock_post.return_value = mock_response | ||
fb = Farmbot() | ||
# Call with bad email | ||
fb.get_token('[email protected]', 'test_pass_123', 'https://bad.farm.bot') | ||
mock_post.assert_called_once_with( | ||
'https://bad.farm.bot/api/tokens', | ||
headers={'content-type': 'application/json'}, | ||
json={'user': {'email': '[email protected]', 'password': 'test_pass_123'}} | ||
) | ||
self.assertIsNone(fb.token) | ||
self.assertEqual(mock_post.return_value.status_code, 404) | ||
|
||
# POSITIVE TEST: function called with endpoint only | ||
@patch('requests.get') | ||
def test_get_info_endpoint_only(self, mock_get): | ||
mock_token = { | ||
'token': { | ||
'unencoded': {'iss': '//my.farm.bot'}, | ||
'encoded': 'encoded_token_value' | ||
} | ||
} | ||
mock_response = Mock() | ||
expected_response = {'device': 'info'} | ||
mock_response.json.return_value = expected_response | ||
mock_response.status_code = 200 | ||
mock_get.return_value = mock_response | ||
fb = Farmbot() | ||
fb.token = mock_token | ||
# Call with endpoint only | ||
response = fb.get_info('device') | ||
mock_get.assert_called_once_with( | ||
'https://my.farm.bot/api/device/', | ||
headers={ | ||
'authorization': 'encoded_token_value', | ||
'content-type': 'application/json' | ||
} | ||
) | ||
self.assertEqual(response, json.dumps(expected_response, indent=2)) | ||
self.assertEqual(mock_get.return_value.status_code, 200) | ||
|
||
# POSITIVE TEST: function called with endpoint and ID value | ||
@patch('requests.get') | ||
def test_get_info_with_id(self, mock_get): | ||
mock_token = { | ||
'token': { | ||
'unencoded': {'iss': '//my.farm.bot'}, | ||
'encoded': 'encoded_token_value' | ||
} | ||
} | ||
mock_response = Mock() | ||
expected_response = {'peripheral': 'info'} | ||
mock_response.json.return_value = expected_response | ||
mock_response.status_code = 200 | ||
mock_get.return_value = mock_response | ||
fb = Farmbot() | ||
fb.token = mock_token | ||
# Call with specific ID | ||
response = fb.get_info('peripherals', '12345') | ||
mock_get.assert_called_once_with( | ||
'https://my.farm.bot/api/peripherals/12345', | ||
headers={ | ||
'authorization': 'encoded_token_value', | ||
'content-type': 'application/json' | ||
} | ||
) | ||
self.assertEqual(response, json.dumps(expected_response, indent=2)) | ||
self.assertEqual(mock_get.return_value.status_code, 200) | ||
|
||
# class TestFarmbot_api(unittest.TestCase): | ||
|
||
def test_get_token(self): | ||
self.mock_api.get_token.return_value = 'mock_token' | ||
# def setUp(self): | ||
# self.farmbot = Farmbot() | ||
|
||
email = '[email protected]' | ||
password = 'password' | ||
server = 'https://my.farm.bot' | ||
# @patch('farmbot_util_PORT.FarmbotAPI.get_token') | ||
# def test_get_token(self, mock_get_token): | ||
# mock_get_token.return_value = 'fake_token' | ||
# self.farmbot.get_token('[email protected]', 'password123') | ||
# self.assertEqual(self.farmbot.token, 'fake_token') | ||
# mock_get_token.assert_called_once_with('[email protected]', 'password123', 'https://my.farm.bot') | ||
|
||
token = self.farmbot.get_token(email, password, server) | ||
# @patch('farmbot_util_PORT.FarmbotAPI.get_info') | ||
# def test_get_info(self, mock_get_info): | ||
# mock_get_info.return_value = {'info': 'fake_info'} | ||
# result = self.farmbot.get_info() | ||
# self.assertEqual(result, {'info': 'fake_info'}) | ||
# mock_get_info.assert_called_once() | ||
|
||
self.assertEqual(token, 'mock_token') | ||
self.assertEqual(self.farmbot.token, 'mock_token') | ||
self.assertEqual(self.farmbot.api.token, 'mock_token') | ||
self.assertEqual(self.farmbot.api.api_connect.token, 'mock_token') | ||
# @patch('farmbot_util_PORT.FarmbotAPI.set_info') | ||
# def test_set_info(self, mock_set_info): | ||
# self.farmbot.set_info('label', 'value') | ||
# mock_set_info.assert_called_once_with('label', 'value') | ||
|
||
self.mock_api.get_token.assert_called_with(email, password, server) | ||
# @patch('farmbot_util_PORT.FarmbotAPI.log') | ||
# def test_log(self, mock_log): | ||
# self.farmbot.log('message', 'info') | ||
# mock_log.assert_called_once_with('message', 'info') | ||
|
||
def test_get_info(self): | ||
self.mock_api.get_info.return_value = 'info_data' | ||
# @patch('farmbot_util_PORT.FarmbotAPI.safe_z') | ||
# def test_safe_z(self, mock_safe_z): | ||
# mock_safe_z.return_value = 10 | ||
# result = self.farmbot.safe_z() | ||
# self.assertEqual(result, 10) | ||
# mock_safe_z.assert_called_once() | ||
|
||
endpoint = 'endpoint' | ||
id = 123 | ||
# @patch('farmbot_util_PORT.FarmbotAPI.garden_size') | ||
# def test_garden_size(self, mock_garden_size): | ||
# mock_garden_size.return_value = {'x': 1000, 'y': 2000} | ||
# result = self.farmbot.garden_size() | ||
# self.assertEqual(result, {'x': 1000, 'y': 2000}) | ||
# mock_garden_size.assert_called_once() | ||
|
||
data = self.farmbot.get_info(endpoint, id) | ||
# @patch('farmbot_util_PORT.FarmbotAPI.group') | ||
# def test_group(self, mock_group): | ||
# sequences = ['seq1', 'seq2'] | ||
# mock_group.return_value = {'grouped': True} | ||
# result = self.farmbot.group(sequences) | ||
# self.assertEqual(result, {'grouped': True}) | ||
# mock_group.assert_called_once_with(sequences) | ||
|
||
self.assertEqual(data, 'info_data') | ||
self.mock_api.get_info.assert_called_with(endpoint, id) | ||
# @patch('farmbot_util_PORT.FarmbotAPI.curve') | ||
# def test_curve(self, mock_curve): | ||
# mock_curve.return_value = {'curve': True} | ||
# result = self.farmbot.curve('seq', 0, 0, 10, 10, 5, 5) | ||
# self.assertEqual(result, {'curve': True}) | ||
# mock_curve.assert_called_once_with('seq', 0, 0, 10, 10, 5, 5) | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |