-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #912 from ScrapeGraphAI/codebeaver/pre/beta-904
codebeaver/pre/beta-904 - Unit Tests
- Loading branch information
Showing
3 changed files
with
117 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
from unittest.mock import patch, MagicMock | ||
from scrapegraphai.graphs.depth_search_graph import DepthSearchGraph | ||
from scrapegraphai.graphs.abstract_graph import AbstractGraph | ||
import pytest | ||
|
||
|
||
class TestDepthSearchGraph: | ||
"""Test suite for DepthSearchGraph class""" | ||
|
||
@pytest.mark.parametrize( | ||
"source, expected_input_key", | ||
[ | ||
("https://example.com", "url"), | ||
("/path/to/local/directory", "local_dir"), | ||
], | ||
) | ||
def test_depth_search_graph_initialization(self, source, expected_input_key): | ||
""" | ||
Test that DepthSearchGraph initializes correctly with different source types. | ||
This test verifies that the input_key is set to 'url' for web sources and | ||
'local_dir' for local directory sources. | ||
""" | ||
prompt = "Test prompt" | ||
config = {"llm": {"model": "mock_model"}} | ||
|
||
# Mock both BaseGraph and _create_llm method | ||
with patch("scrapegraphai.graphs.depth_search_graph.BaseGraph"), \ | ||
patch.object(AbstractGraph, '_create_llm', return_value=MagicMock()): | ||
graph = DepthSearchGraph(prompt, source, config) | ||
|
||
assert graph.prompt == prompt | ||
assert graph.source == source | ||
assert graph.config == config | ||
assert graph.input_key == expected_input_key |
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
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