Files
wehub-resource-sync fbfefa28d3
CodeQL / Analyze (python) (push) Failing after 0s
Release / Build (push) Failing after 1s
Release / Release (push) Waiting to run
Test Suite / Unit Tests (push) Failing after 0s
chore: import upstream snapshot with attribution
2026-07-13 12:18:10 +08:00

55 lines
1.2 KiB
Python

"""
Module for testing th smart scraper class
"""
import pytest
from scrapegraphai.graphs import SmartScraperGraph
@pytest.fixture
def graph_config():
"""
Configuration of the graph
"""
return {
"llm": {
"model": "ernie-bot-turbo",
"ernie_client_id": "<ernie_client_id>",
"ernie_client_secret": "<ernie_client_secret>",
"temperature": 0.1,
}
}
def test_scraping_pipeline(graph_config: dict):
"""
Start of the scraping pipeline
"""
smart_scraper_graph = SmartScraperGraph(
prompt="List me all the news with their description.",
source="https://perinim.github.io/projects",
config=graph_config,
)
result = smart_scraper_graph.run()
assert result is not None
def test_get_execution_info(graph_config: dict):
"""
Get the execution info
"""
smart_scraper_graph = SmartScraperGraph(
prompt="List me all the news with their description.",
source="https://perinim.github.io/projects",
config=graph_config,
)
smart_scraper_graph.run()
graph_exec_info = smart_scraper_graph.get_execution_info()
assert graph_exec_info is not None