2cab53bc94
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
260 lines
9.4 KiB
Python
260 lines
9.4 KiB
Python
#!/usr/bin/env python3
|
|
"""
|
|
Tests for cli/package_skill.py functionality
|
|
"""
|
|
|
|
import tempfile
|
|
import unittest
|
|
import zipfile
|
|
from pathlib import Path
|
|
|
|
from skill_seekers.cli.package_skill import package_skill
|
|
|
|
|
|
class TestPackageSkill(unittest.TestCase):
|
|
"""Test package_skill function"""
|
|
|
|
def create_test_skill_directory(self, tmpdir):
|
|
"""Helper to create a test skill directory structure"""
|
|
skill_dir = Path(tmpdir) / "test-skill"
|
|
skill_dir.mkdir()
|
|
|
|
# Create SKILL.md
|
|
(skill_dir / "SKILL.md").write_text("---\nname: test-skill\n---\n# Test Skill")
|
|
|
|
# Create references directory
|
|
refs_dir = skill_dir / "references"
|
|
refs_dir.mkdir()
|
|
(refs_dir / "index.md").write_text("# Index")
|
|
(refs_dir / "getting_started.md").write_text("# Getting Started")
|
|
|
|
# Create scripts directory (empty)
|
|
(skill_dir / "scripts").mkdir()
|
|
|
|
# Create assets directory (empty)
|
|
(skill_dir / "assets").mkdir()
|
|
|
|
return skill_dir
|
|
|
|
def test_package_valid_skill_directory(self):
|
|
"""Test packaging a valid skill directory"""
|
|
with tempfile.TemporaryDirectory() as tmpdir:
|
|
skill_dir = self.create_test_skill_directory(tmpdir)
|
|
|
|
success, zip_path = package_skill(
|
|
skill_dir, open_folder_after=False, skip_quality_check=True
|
|
)
|
|
|
|
self.assertTrue(success)
|
|
self.assertIsNotNone(zip_path)
|
|
self.assertTrue(zip_path.exists())
|
|
self.assertEqual(zip_path.suffix, ".zip")
|
|
self.assertTrue(zipfile.is_zipfile(zip_path))
|
|
|
|
def test_package_creates_correct_zip_structure(self):
|
|
"""Test that packaged zip contains correct files"""
|
|
with tempfile.TemporaryDirectory() as tmpdir:
|
|
skill_dir = self.create_test_skill_directory(tmpdir)
|
|
|
|
success, zip_path = package_skill(
|
|
skill_dir, open_folder_after=False, skip_quality_check=True
|
|
)
|
|
|
|
self.assertTrue(success)
|
|
|
|
# Check zip contents
|
|
with zipfile.ZipFile(zip_path, "r") as zf:
|
|
names = zf.namelist()
|
|
|
|
# Should contain SKILL.md
|
|
self.assertTrue(any("SKILL.md" in name for name in names))
|
|
|
|
# Should contain references
|
|
self.assertTrue(any("references/index.md" in name for name in names))
|
|
self.assertTrue(any("references/getting_started.md" in name for name in names))
|
|
|
|
def test_package_model_override_recorded_in_metadata(self):
|
|
"""`package --target minimax --model X` records X in the package metadata."""
|
|
import json
|
|
|
|
with tempfile.TemporaryDirectory() as tmpdir:
|
|
skill_dir = self.create_test_skill_directory(tmpdir)
|
|
|
|
success, zip_path = package_skill(
|
|
skill_dir,
|
|
open_folder_after=False,
|
|
skip_quality_check=True,
|
|
target="minimax",
|
|
model="MiniMax-M2.7",
|
|
)
|
|
|
|
self.assertTrue(success)
|
|
with zipfile.ZipFile(zip_path, "r") as zf:
|
|
metadata = json.loads(zf.read("minimax_metadata.json").decode("utf-8"))
|
|
self.assertEqual(metadata["model"], "MiniMax-M2.7")
|
|
|
|
def test_package_default_model_when_no_override(self):
|
|
"""Without --model, the package metadata keeps the platform default."""
|
|
import json
|
|
|
|
with tempfile.TemporaryDirectory() as tmpdir:
|
|
skill_dir = self.create_test_skill_directory(tmpdir)
|
|
|
|
success, zip_path = package_skill(
|
|
skill_dir,
|
|
open_folder_after=False,
|
|
skip_quality_check=True,
|
|
target="minimax",
|
|
)
|
|
|
|
self.assertTrue(success)
|
|
with zipfile.ZipFile(zip_path, "r") as zf:
|
|
metadata = json.loads(zf.read("minimax_metadata.json").decode("utf-8"))
|
|
self.assertEqual(metadata["model"], "MiniMax-M3")
|
|
|
|
def test_package_arguments_accept_model_flag(self):
|
|
"""The package CLI parser exposes --model."""
|
|
import argparse
|
|
from skill_seekers.cli.arguments.package import add_package_arguments
|
|
|
|
parser = argparse.ArgumentParser()
|
|
add_package_arguments(parser)
|
|
args = parser.parse_args(["output/react", "--target", "minimax", "--model", "MiniMax-M2.7"])
|
|
self.assertEqual(args.model, "MiniMax-M2.7")
|
|
|
|
def test_package_excludes_backup_files(self):
|
|
"""Test that .backup files are excluded from zip"""
|
|
with tempfile.TemporaryDirectory() as tmpdir:
|
|
skill_dir = self.create_test_skill_directory(tmpdir)
|
|
|
|
# Add a backup file
|
|
(skill_dir / "SKILL.md.backup").write_text("# Backup")
|
|
|
|
success, zip_path = package_skill(
|
|
skill_dir, open_folder_after=False, skip_quality_check=True
|
|
)
|
|
|
|
self.assertTrue(success)
|
|
|
|
# Check that backup is NOT in zip
|
|
with zipfile.ZipFile(zip_path, "r") as zf:
|
|
names = zf.namelist()
|
|
self.assertFalse(any(".backup" in name for name in names))
|
|
|
|
def test_package_nonexistent_directory(self):
|
|
"""Test packaging a nonexistent directory"""
|
|
success, zip_path = package_skill(
|
|
"/nonexistent/path", open_folder_after=False, skip_quality_check=True
|
|
)
|
|
|
|
self.assertFalse(success)
|
|
self.assertIsNone(zip_path)
|
|
|
|
def test_package_directory_without_skill_md(self):
|
|
"""Test packaging directory without SKILL.md"""
|
|
with tempfile.TemporaryDirectory() as tmpdir:
|
|
skill_dir = Path(tmpdir) / "invalid-skill"
|
|
skill_dir.mkdir()
|
|
|
|
success, zip_path = package_skill(
|
|
skill_dir, open_folder_after=False, skip_quality_check=True
|
|
)
|
|
|
|
self.assertFalse(success)
|
|
self.assertIsNone(zip_path)
|
|
|
|
def test_package_creates_zip_in_correct_location(self):
|
|
"""Test that zip is created in output/ directory"""
|
|
with tempfile.TemporaryDirectory() as tmpdir:
|
|
# Create skill in output-like structure
|
|
output_dir = Path(tmpdir) / "output"
|
|
output_dir.mkdir()
|
|
|
|
skill_dir = output_dir / "test-skill"
|
|
skill_dir.mkdir()
|
|
(skill_dir / "SKILL.md").write_text("# Test")
|
|
(skill_dir / "references").mkdir()
|
|
(skill_dir / "scripts").mkdir()
|
|
(skill_dir / "assets").mkdir()
|
|
|
|
success, zip_path = package_skill(
|
|
skill_dir, open_folder_after=False, skip_quality_check=True
|
|
)
|
|
|
|
self.assertTrue(success)
|
|
# Zip should be in output directory, not inside skill directory
|
|
self.assertEqual(zip_path.parent, output_dir)
|
|
self.assertEqual(zip_path.name, "test-skill.zip")
|
|
|
|
def test_package_zip_name_matches_skill_name(self):
|
|
"""Test that zip filename matches skill directory name"""
|
|
with tempfile.TemporaryDirectory() as tmpdir:
|
|
skill_dir = Path(tmpdir) / "my-awesome-skill"
|
|
skill_dir.mkdir()
|
|
(skill_dir / "SKILL.md").write_text("# Test")
|
|
(skill_dir / "references").mkdir()
|
|
(skill_dir / "scripts").mkdir()
|
|
(skill_dir / "assets").mkdir()
|
|
|
|
success, zip_path = package_skill(
|
|
skill_dir, open_folder_after=False, skip_quality_check=True
|
|
)
|
|
|
|
self.assertTrue(success)
|
|
self.assertEqual(zip_path.name, "my-awesome-skill.zip")
|
|
|
|
def test_package_ibm_bob_creates_bob_directory(self):
|
|
"""Test IBM Bob packaging creates a Bob-ready directory layout."""
|
|
with tempfile.TemporaryDirectory() as tmpdir:
|
|
skill_dir = self.create_test_skill_directory(tmpdir)
|
|
|
|
success, package_path = package_skill(
|
|
skill_dir,
|
|
open_folder_after=False,
|
|
skip_quality_check=True,
|
|
target="ibm-bob",
|
|
)
|
|
|
|
self.assertTrue(success)
|
|
self.assertIsNotNone(package_path)
|
|
self.assertTrue(package_path.is_dir())
|
|
self.assertTrue((package_path / ".bob" / "skills" / "test-skill" / "SKILL.md").exists())
|
|
|
|
|
|
class TestPackageSkillCLI(unittest.TestCase):
|
|
"""Test package_skill.py command-line interface"""
|
|
|
|
def test_cli_help_output(self):
|
|
"""Test that skill-seekers package --help works"""
|
|
import subprocess
|
|
|
|
try:
|
|
result = subprocess.run(
|
|
["skill-seekers", "package", "--help"], capture_output=True, text=True, timeout=5
|
|
)
|
|
|
|
# argparse may return 0 or 2 for --help
|
|
self.assertIn(result.returncode, [0, 2])
|
|
output = result.stdout + result.stderr
|
|
self.assertTrue("usage:" in output.lower() or "package" in output.lower())
|
|
except FileNotFoundError:
|
|
self.skipTest("skill-seekers command not installed")
|
|
|
|
def test_cli_executes_without_errors(self):
|
|
"""Test that skill-seekers-package entry point works"""
|
|
import subprocess
|
|
|
|
try:
|
|
result = subprocess.run(
|
|
["skill-seekers-package", "--help"], capture_output=True, text=True, timeout=5
|
|
)
|
|
|
|
# argparse may return 0 or 2 for --help
|
|
self.assertIn(result.returncode, [0, 2])
|
|
except FileNotFoundError:
|
|
self.skipTest("skill-seekers-package command not installed")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|