Skip to content

Commit

Permalink
address comments left by @MarkEdmondson1234 on #16 ([Ellipsis] Agent …
Browse files Browse the repository at this point in the history
…tests);
  • Loading branch information
ellipsis-dev[bot] committed Mar 10, 2024
1 parent b10cb1d commit fb03b21
Showing 1 changed file with 55 additions and 59 deletions.
114 changes: 55 additions & 59 deletions sunholo/tests/test_config.py
@@ -1,71 +1,67 @@
import unittest
import pytest
from unittest.mock import patch, mock_open
from utils import config

class TestConfig(unittest.TestCase):

pass
@patch('google.cloud.storage.Client')
def test_fetch_config(mock_client):
# Create a mock bucket and blob
mock_bucket = Mock()
mock_blob = Mock()
mock_client.get_bucket.return_value = mock_bucket
mock_bucket.get_blob.return_value = mock_blob

@patch('google.cloud.storage.Client')
def test_fetch_config(self, mock_client):
# Create a mock bucket and blob
mock_bucket = Mock()
mock_blob = Mock()
mock_client.get_bucket.return_value = mock_bucket
mock_bucket.get_blob.return_value = mock_blob
# Test that the function correctly fetches the blob and returns the updated time
mock_blob.updated = '2022-01-01T00:00:00Z'
result = config.fetch_config('bucket_name', 'blob_name')
assert result == '2022-01-01T00:00:00Z'

# Test that the function correctly fetches the blob and returns the updated time
mock_blob.updated = '2022-01-01T00:00:00Z'
result = config.fetch_config('bucket_name', 'blob_name')
self.assertEqual(result, '2022-01-01T00:00:00Z')
# Test the case where the blob does not exist and the function should return None
mock_bucket.get_blob.return_value = None
result = config.fetch_config('bucket_name', 'blob_name')
assert result == None

# Test the case where the blob does not exist and the function should return None
mock_bucket.get_blob.return_value = None
result = config.fetch_config('bucket_name', 'blob_name')
self.assertEqual(result, None)
@patch('os.path.isfile')
def test_get_module_filepath(mock_isfile):
# Test that the function correctly returns the full file path of the mock file
mock_isfile.return_value = True
result = config.get_module_filepath('mock_file')
assert result == '/path/to/mock_file'

@patch('os.path.isfile')
def test_get_module_filepath(self, mock_isfile):
# Test that the function correctly returns the full file path of the mock file
mock_isfile.return_value = True
result = config.get_module_filepath('mock_file')
self.assertEqual(result, '/path/to/mock_file')
# Test the case where the file does not exist and the function should raise an error
mock_isfile.return_value = False
with pytest.raises(FileNotFoundError):
config.get_module_filepath('non_existent_file')

# Test the case where the file does not exist and the function should raise an error
mock_isfile.return_value = False
with self.assertRaises(FileNotFoundError):
config.get_module_filepath('non_existent_file')
@patch('os.path.isfile')
@patch('os.environ')
@patch('builtins.open', new_callable=mock_open, read_data='mock_file_content')
def test_load_config(mock_open, mock_environ, mock_isfile):
# Test that the function correctly loads the mock configuration file
mock_isfile.return_value = True
mock_environ.get.return_value = 'mock_file_path'
result = config.load_config('mock_file_path')
assert result == 'mock_file_content'

@patch('os.path.isfile')
@patch('os.environ')
@patch('builtins.open', new_callable=mock_open, read_data='mock_file_content')
def test_load_config(self, mock_open, mock_environ, mock_isfile):
# Test that the function correctly loads the mock configuration file
mock_isfile.return_value = True
mock_environ.get.return_value = 'mock_file_path'
result = config.load_config('mock_file_path')
self.assertEqual(result, 'mock_file_content')
# Test the case where the file does not exist and the function should raise an error
mock_isfile.return_value = False
with pytest.raises(FileNotFoundError):
config.load_config('non_existent_file')

# Test the case where the file does not exist and the function should raise an error
mock_isfile.return_value = False
with self.assertRaises(FileNotFoundError):
config.load_config('non_existent_file')
# Test the case where the environment variable is not set and the function should raise an error
mock_environ.get.return_value = None
with pytest.raises(EnvironmentError):
config.load_config('mock_file_path')

# Test the case where the environment variable is not set and the function should raise an error
mock_environ.get.return_value = None
with self.assertRaises(EnvironmentError):
config.load_config('mock_file_path')
@patch('os.path.isfile')
@patch('os.environ')
@patch('builtins.open', new_callable=mock_open, read_data='mock_file_content')
def test_load_config_key(mock_open, mock_environ, mock_isfile):
# Test that the function correctly loads a specific key from the mock configuration file
mock_isfile.return_value = True
mock_environ.get.return_value = 'mock_file_path'
result = config.load_config_key('mock_file_path', 'mock_key')
assert result == 'mock_key_value'

@patch('os.path.isfile')
@patch('os.environ')
@patch('builtins.open', new_callable=mock_open, read_data='mock_file_content')
def test_load_config_key(self, mock_open, mock_environ, mock_isfile):
# Test that the function correctly loads a specific key from the mock configuration file
mock_isfile.return_value = True
mock_environ.get.return_value = 'mock_file_path'
result = config.load_config_key('mock_file_path', 'mock_key')
self.assertEqual(result, 'mock_key_value')

# Test the case where the key does not exist in the configuration file and the function should raise an error
with self.assertRaises(KeyError):
config.load_config_key('mock_file_path', 'non_existent_key')
# Test the case where the key does not exist in the configuration file and the function should raise an error
with pytest.raises(KeyError):
config.load_config_key('mock_file_path', 'non_existent_key')

0 comments on commit fb03b21

Please sign in to comment.