chore: import upstream snapshot with attribution
Test Vector Database Adaptors / Test MCP Vector DB Tools (push) Has been cancelled
Tests / Code Quality (Ruff & Mypy) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.12) (push) Has been cancelled
Tests / Tests (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers CLI - Convert documentation to AI skills dockerfile:Dockerfile name:skill-seekers]) (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers MCP Server - 25 tools for AI assistants dockerfile:Dockerfile.mcp name:skill-seekers-mcp]) (push) Has been cancelled
Docker Publish / Test Docker Images (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.10) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.12) (push) Has been cancelled
Tests / Serial / Integration / E2E Tests (push) Has been cancelled
Tests / MCP Server Tests (push) Has been cancelled
Test Vector Database Adaptors / Test chroma Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test faiss Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test qdrant Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test weaviate Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test MCP Vector DB Tools (push) Has been cancelled
Tests / Code Quality (Ruff & Mypy) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.12) (push) Has been cancelled
Tests / Tests (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers CLI - Convert documentation to AI skills dockerfile:Dockerfile name:skill-seekers]) (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers MCP Server - 25 tools for AI assistants dockerfile:Dockerfile.mcp name:skill-seekers-mcp]) (push) Has been cancelled
Docker Publish / Test Docker Images (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.10) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.12) (push) Has been cancelled
Tests / Serial / Integration / E2E Tests (push) Has been cancelled
Tests / MCP Server Tests (push) Has been cancelled
Test Vector Database Adaptors / Test chroma Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test faiss Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test qdrant Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test weaviate Adaptor (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,241 @@
|
||||
"""Basic integration tests for create command.
|
||||
|
||||
Tests that the create command properly detects source types
|
||||
and routes to the correct scrapers without actually scraping.
|
||||
"""
|
||||
|
||||
import pytest
|
||||
|
||||
|
||||
class TestCreateCommandBasic:
|
||||
"""Basic integration tests for create command (dry-run mode)."""
|
||||
|
||||
def test_create_command_help(self):
|
||||
"""Test that create command help works."""
|
||||
import subprocess
|
||||
|
||||
result = subprocess.run(
|
||||
["skill-seekers", "create", "--help"], capture_output=True, text=True
|
||||
)
|
||||
assert result.returncode == 0
|
||||
assert "Auto-detects source type" in result.stdout
|
||||
assert "auto-detected" in result.stdout
|
||||
assert "--help-web" in result.stdout
|
||||
|
||||
def test_create_detects_web_url(self):
|
||||
"""Test that web URLs are detected and routed correctly."""
|
||||
from skill_seekers.cli.source_detector import SourceDetector
|
||||
|
||||
info = SourceDetector.detect("https://docs.react.dev/")
|
||||
assert info.type == "web"
|
||||
assert info.parsed["url"] == "https://docs.react.dev/"
|
||||
assert info.suggested_name # non-empty
|
||||
|
||||
# Plain domain should also be treated as web
|
||||
info2 = SourceDetector.detect("docs.example.com")
|
||||
assert info2.type == "web"
|
||||
|
||||
def test_create_detects_github_repo(self):
|
||||
"""Test that GitHub repos are detected."""
|
||||
import subprocess
|
||||
|
||||
result = subprocess.run(
|
||||
["skill-seekers", "create", "facebook/react", "--help"],
|
||||
capture_output=True,
|
||||
text=True,
|
||||
timeout=10,
|
||||
)
|
||||
# Just verify help works - actual scraping would need API token
|
||||
assert result.returncode in [0, 2] # 0 for success, 2 for argparse help
|
||||
|
||||
def test_create_detects_local_directory(self, tmp_path):
|
||||
"""Test that local directories are detected."""
|
||||
import subprocess
|
||||
|
||||
# Create a test directory
|
||||
test_dir = tmp_path / "test_project"
|
||||
test_dir.mkdir()
|
||||
|
||||
result = subprocess.run(
|
||||
["skill-seekers", "create", str(test_dir), "--help"],
|
||||
capture_output=True,
|
||||
text=True,
|
||||
timeout=10,
|
||||
)
|
||||
# Verify help works
|
||||
assert result.returncode in [0, 2]
|
||||
|
||||
def test_create_detects_pdf_file(self, tmp_path):
|
||||
"""Test that PDF files are detected."""
|
||||
import subprocess
|
||||
|
||||
# Create a dummy PDF file
|
||||
pdf_file = tmp_path / "test.pdf"
|
||||
pdf_file.touch()
|
||||
|
||||
result = subprocess.run(
|
||||
["skill-seekers", "create", str(pdf_file), "--help"],
|
||||
capture_output=True,
|
||||
text=True,
|
||||
timeout=10,
|
||||
)
|
||||
# Verify help works
|
||||
assert result.returncode in [0, 2]
|
||||
|
||||
def test_create_detects_config_file(self, tmp_path):
|
||||
"""Test that config files are detected."""
|
||||
import subprocess
|
||||
import json
|
||||
|
||||
# Create a minimal config file
|
||||
config_file = tmp_path / "test.json"
|
||||
config_data = {"name": "test", "base_url": "https://example.com/"}
|
||||
config_file.write_text(json.dumps(config_data))
|
||||
|
||||
result = subprocess.run(
|
||||
["skill-seekers", "create", str(config_file), "--help"],
|
||||
capture_output=True,
|
||||
text=True,
|
||||
timeout=10,
|
||||
)
|
||||
# Verify help works
|
||||
assert result.returncode in [0, 2]
|
||||
|
||||
|
||||
class TestCreateCommandConverterRouting:
|
||||
"""Tests that create command routes to correct converters."""
|
||||
|
||||
def test_get_converter_web(self):
|
||||
"""Test that get_converter returns DocToSkillConverter for web."""
|
||||
from skill_seekers.cli.skill_converter import get_converter
|
||||
|
||||
config = {"name": "test", "base_url": "https://example.com"}
|
||||
converter = get_converter("web", config)
|
||||
|
||||
assert converter.SOURCE_TYPE == "web"
|
||||
assert converter.name == "test"
|
||||
|
||||
def test_get_converter_github(self):
|
||||
"""Test that get_converter returns GitHubScraper for github."""
|
||||
from skill_seekers.cli.skill_converter import get_converter
|
||||
|
||||
config = {"name": "test", "repo": "owner/repo"}
|
||||
converter = get_converter("github", config)
|
||||
|
||||
assert converter.SOURCE_TYPE == "github"
|
||||
assert converter.name == "test"
|
||||
|
||||
def test_get_converter_pdf(self):
|
||||
"""Test that get_converter returns PDFToSkillConverter for pdf."""
|
||||
from skill_seekers.cli.skill_converter import get_converter
|
||||
|
||||
config = {"name": "test", "pdf_path": "/tmp/test.pdf"}
|
||||
converter = get_converter("pdf", config)
|
||||
|
||||
assert converter.SOURCE_TYPE == "pdf"
|
||||
assert converter.name == "test"
|
||||
|
||||
def test_get_converter_unknown_raises(self):
|
||||
"""Test that get_converter raises ValueError for unknown type."""
|
||||
from skill_seekers.cli.skill_converter import get_converter
|
||||
|
||||
with pytest.raises(ValueError, match="Unknown source type"):
|
||||
get_converter("unknown_type", {})
|
||||
|
||||
|
||||
class TestExecutionContextIntegration:
|
||||
"""Tests that ExecutionContext flows correctly through the system."""
|
||||
|
||||
def test_execution_context_auto_initializes(self):
|
||||
"""ExecutionContext.get() returns defaults without explicit init."""
|
||||
from skill_seekers.cli.execution_context import ExecutionContext
|
||||
|
||||
# Reset to ensure clean state
|
||||
ExecutionContext.reset()
|
||||
|
||||
# Should not raise - returns default context
|
||||
ctx = ExecutionContext.get()
|
||||
assert ctx is not None
|
||||
assert ctx.output.name is None # Default value
|
||||
|
||||
ExecutionContext.reset()
|
||||
|
||||
def test_execution_context_values_preserved(self):
|
||||
"""Values set in context are preserved and accessible."""
|
||||
from skill_seekers.cli.execution_context import ExecutionContext
|
||||
import argparse
|
||||
|
||||
ExecutionContext.reset()
|
||||
|
||||
args = argparse.Namespace(
|
||||
source="https://example.com",
|
||||
name="test_skill",
|
||||
enhance_level=3,
|
||||
dry_run=True,
|
||||
)
|
||||
|
||||
ctx = ExecutionContext.initialize(args=args)
|
||||
assert ctx.output.name == "test_skill"
|
||||
assert ctx.enhancement.level == 3
|
||||
assert ctx.output.dry_run is True
|
||||
|
||||
# Getting context again returns same values
|
||||
ctx2 = ExecutionContext.get()
|
||||
assert ctx2.output.name == "test_skill"
|
||||
|
||||
ExecutionContext.reset()
|
||||
|
||||
|
||||
class TestUnifiedCommands:
|
||||
"""Test that unified commands still work."""
|
||||
|
||||
def test_main_help_shows_available_commands(self):
|
||||
"""Main help should show available commands."""
|
||||
import subprocess
|
||||
|
||||
result = subprocess.run(
|
||||
["skill-seekers", "--help"], capture_output=True, text=True, timeout=10
|
||||
)
|
||||
assert result.returncode == 0
|
||||
# Should show create command
|
||||
assert "create" in result.stdout
|
||||
# Should show enhance command
|
||||
assert "enhance" in result.stdout
|
||||
|
||||
def test_workflows_command_still_works(self):
|
||||
"""The workflows subcommand is accessible via the main CLI."""
|
||||
import subprocess
|
||||
|
||||
result = subprocess.run(
|
||||
["skill-seekers", "workflows", "--help"],
|
||||
capture_output=True,
|
||||
text=True,
|
||||
timeout=10,
|
||||
)
|
||||
assert result.returncode == 0
|
||||
|
||||
|
||||
class TestRemovedCommands:
|
||||
"""Test that old individual scraper commands are properly removed."""
|
||||
|
||||
def test_scrape_command_removed(self):
|
||||
"""Old scrape command should not exist."""
|
||||
import subprocess
|
||||
|
||||
result = subprocess.run(
|
||||
["skill-seekers", "scrape", "--help"], capture_output=True, text=True, timeout=10
|
||||
)
|
||||
# Should fail - command removed
|
||||
assert result.returncode == 2
|
||||
assert "invalid choice" in result.stderr
|
||||
|
||||
def test_github_command_removed(self):
|
||||
"""Old github command should not exist."""
|
||||
import subprocess
|
||||
|
||||
result = subprocess.run(
|
||||
["skill-seekers", "github", "--help"], capture_output=True, text=True, timeout=10
|
||||
)
|
||||
# Should fail - command removed
|
||||
assert result.returncode == 2
|
||||
assert "invalid choice" in result.stderr
|
||||
Reference in New Issue
Block a user