Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: rashidakanchwala <[email protected]>
  • Loading branch information
rashidakanchwala committed Nov 26, 2024
1 parent 242f35b commit a9aca8a
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 26 deletions.
21 changes: 21 additions & 0 deletions package/tests/test_launchers/test_cli/test_run.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from pathlib import Path
from unittest.mock import call

import pytest
Expand Down Expand Up @@ -411,3 +412,23 @@ def test_find_available_port_with_occupied_ports(self, mocker):
assert (
available_port == 4143
), "Expected port 4143 to be returned as the available port"


def test_invalid_load_file_directory(mocker):
"""
Test that Kedro-Viz raises a ValueError when an invalid filepath
is provided to the `--load-file` argument.
"""
runner = CliRunner()

# Mock the existence of the file path to always return False (invalid path)
mocker.patch.object(Path, "exists", return_value=False)

# Invoke the CLI with an invalid `--load-file` path
result = runner.invoke(
main.viz_cli, ["viz", "run", "--load-file", "nonexistent_path.json"]
)

assert "The provided filepath 'nonexistent_path.json' does not exist." == str(
result.exception
)
35 changes: 9 additions & 26 deletions package/tests/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,32 +121,15 @@ def test_specific_pipeline(
{"data_science": example_pipelines["data_science"]}
)

@pytest.mark.parametrize(
"file_path, expected_exception",
[
("test.json", ValueError), # File does not exist, expect ValueError
("test.json", None), # File exists, expect no ValueError
],
)
def test_load_file(
self, file_path, expected_exception, patched_create_api_app_from_file, tmp_path
):
if expected_exception is not None:
with pytest.raises(expected_exception) as exc_info:
run_server(load_file=file_path)

# Check if the error message contains the expected message
assert "The provided filepath" in str(exc_info.value)
assert "does not exist." in str(exc_info.value)
else:
json_file_path = tmp_path / file_path

# File exists, no exception expected
with json_file_path.open("w") as file:
json.dump({"name": "John", "age": 30}, file)

run_server(load_file=json_file_path)
patched_create_api_app_from_file.assert_called_once()
def test_load_file(self, patched_create_api_app_from_file, tmp_path):
file_path = "test.json"
json_file_path = tmp_path / file_path

with json_file_path.open("w") as file:
json.dump({"name": "John", "age": 30}, file)

run_server(load_file=json_file_path)
patched_create_api_app_from_file.assert_called_once()

def test_save_file(self, tmp_path, mocker):
mock_filesystem = mocker.patch("fsspec.filesystem")
Expand Down

0 comments on commit a9aca8a

Please sign in to comment.