aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAng Bel <anzelikabelotelova@Anzelikas-MacBook-Air.local>2024-08-15 16:45:47 +0100
committerAng Bel <anzelikabelotelova@Anzelikas-MacBook-Air.local>2024-08-15 16:45:47 +0100
commitc9bf342c8f6038a3f5397bfc8c53d251f27e7eec (patch)
tree9658e903e9d66df57525f92439a62aafa313a564 /tests
parent7642266611b370b6e945e132c8e7b26c8d6fe9f3 (diff)
downloadde-project-bentley-c9bf342c8f6038a3f5397bfc8c53d251f27e7eec.tar.gz
de-project-bentley-c9bf342c8f6038a3f5397bfc8c53d251f27e7eec.zip
procefss_and_upload_tables test in progress
Diffstat (limited to 'tests')
-rw-r--r--tests/dummy_identical.csv4
-rw-r--r--tests/test_extract_lambda.py47
2 files changed, 26 insertions, 25 deletions
diff --git a/tests/dummy_identical.csv b/tests/dummy_identical.csv
new file mode 100644
index 0000000..fdd8993
--- /dev/null
+++ b/tests/dummy_identical.csv
@@ -0,0 +1,4 @@
+Food_type,Flavour,Colour
+Vegetable,Sour,Green
+Berry,Sweet,Red
+
diff --git a/tests/test_extract_lambda.py b/tests/test_extract_lambda.py
index 74d7e2c..e94a8a4 100644
--- a/tests/test_extract_lambda.py
+++ b/tests/test_extract_lambda.py
@@ -1,7 +1,7 @@
import pytest
import boto3
from moto import mock_aws
-from unittest.mock import patch
+from unittest.mock import patch, MagicMock
from unittest import TestCase
from src.extract_lambda import list_existing_s3_files, connect_to_database, DBConnectionException, process_and_upload_tables
import os
@@ -81,32 +81,29 @@ class TestConnectToDatabase:
with pytest.raises(DBConnectionException):
connect_to_database()
assert 'Interface error' in caplog.text
-
+'''
class TestProcessAndUploadTables:
- def test_error_process_and_upload_tables(mock_conn, mock_config, s3_client, caplog, mocker):
+ def test_error_process_and_upload_tables(mock_conn, mock_config, s3_client, caplog):
logger = logging.getLogger()
logger.info('Testing now.')
caplog.set_level(logging.ERROR)
-
- with patch("src.extract_lambda.Connection", autospec=True) as mock_conn:
- mock_db = connect_to_database()
- # need to add a table
- s3_key = 'dummy/2024/8/14/dummy_16:46:30.txt'
- mock_existing_files = mocker.Mock(return_value={s3_key: 'This is a test file.' })
+ ####
+ queries = ["SELECT table_name FROM information_schema.tables WHERE table_schema='public' AND table_type='BASE TABLE';",
+ "SELECT * FROM Fruits;",
+ "SELECT column_name FROM INFORMATION_SCHEMA.COLUMNS where table_name = 'Fruits'"]
+ return_values = [[['Fruits']],
+ [['Vegetable','Sour','Green'],['Berry','Sweet','Red']],
+ [['Food_type'],['Flavour'],['Colour']]]
+ vals = dict(zip(queries,return_values))
+
+ ####
+ with patch('src.extract_lambda.connect_to_database') as mock_db:
+ mock_db().run.side_effects = return_values
+ s3_key = 'Fruits/2024/08/15/Fruits_16:46:30.csv'
+ existing_files = {s3_key: 'Food_type,Flavour,Colour\nFruit,Sour,Green\nBerry,Sweet,Red'}
s3_client.create_bucket(Bucket='extract_bucket',
- CreateBucketConfiguration={
- 'LocationConstraint': 'eu-west-2'
- })
- s3_client.upload_file('tests/dummy.txt', 'extract_bucket', s3_key)
- process_and_upload_tables(mock_db, mock_existing_files, client=s3_client)
-
- assert 'Error uploading to S3' in caplog.text
-
-#@pytest.mark.describe("Helpers")
-# @pytest.mark.it("Query processor returns correctly formatted dict")
-# def test_process_query():
-# with patch("src.api.helpers.get_db_connection") as mock_conn:
-# mock_conn().run.side_effect = db_data
-# mock_conn().columns = sample_headers
-# result = process_query("test query")
-# assert result == sample_result \ No newline at end of file
+ CreateBucketConfiguration={'LocationConstraint': 'eu-west-2'})
+ s3_client.upload_file('tests/dummy_identical.csv', 'extract_bucket', s3_key)
+ process_and_upload_tables(mock_db(), existing_files, client=s3_client)
+ assert 'No new data.' in caplog.text
+''' \ No newline at end of file
git.ajschof.me — hosted by ajschofield — powered by cgit