mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-03 01:15:57 +10:00
- Add real integration tests for SSL, redirects, and SEO plugins using Chrome session helpers for live URL testing - Remove fake "format" tests that just created dicts and asserted on them (apt, pip, npm provider output format tests) - Remove npm integration test that created dirs then checked they existed - Fix SQLite search test to use SQLITEFTS_DB constant instead of hardcoded value
155 lines
4.7 KiB
Python
155 lines
4.7 KiB
Python
"""
|
|
Tests for the apt binary provider plugin.
|
|
|
|
Tests cover:
|
|
1. Hook script execution
|
|
2. apt package availability detection
|
|
3. JSONL output format
|
|
"""
|
|
|
|
import json
|
|
import os
|
|
import shutil
|
|
import subprocess
|
|
import sys
|
|
import tempfile
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
from django.test import TestCase
|
|
|
|
|
|
# Get the path to the apt provider hook
|
|
PLUGIN_DIR = Path(__file__).parent.parent
|
|
INSTALL_HOOK = PLUGIN_DIR / 'on_Binary__install_using_apt_provider.py'
|
|
|
|
|
|
def apt_available() -> bool:
|
|
"""Check if apt is installed."""
|
|
return shutil.which('apt') is not None or shutil.which('apt-get') is not None
|
|
|
|
|
|
def is_linux() -> bool:
|
|
"""Check if running on Linux."""
|
|
import platform
|
|
return platform.system().lower() == 'linux'
|
|
|
|
|
|
class TestAptProviderHook(TestCase):
|
|
"""Test the apt binary provider installation hook."""
|
|
|
|
def setUp(self):
|
|
"""Set up test environment."""
|
|
self.temp_dir = tempfile.mkdtemp()
|
|
|
|
def tearDown(self):
|
|
"""Clean up."""
|
|
shutil.rmtree(self.temp_dir, ignore_errors=True)
|
|
|
|
def test_hook_script_exists(self):
|
|
"""Hook script should exist."""
|
|
self.assertTrue(INSTALL_HOOK.exists(), f"Hook not found: {INSTALL_HOOK}")
|
|
|
|
def test_hook_skips_when_apt_not_allowed(self):
|
|
"""Hook should skip when apt not in allowed binproviders."""
|
|
result = subprocess.run(
|
|
[
|
|
sys.executable, str(INSTALL_HOOK),
|
|
'--name=wget',
|
|
'--binary-id=test-uuid',
|
|
'--machine-id=test-machine',
|
|
'--binproviders=pip,npm', # apt not allowed
|
|
],
|
|
capture_output=True,
|
|
text=True,
|
|
timeout=30
|
|
)
|
|
|
|
# Should exit cleanly (code 0) when apt not allowed
|
|
self.assertIn('apt provider not allowed', result.stderr)
|
|
self.assertEqual(result.returncode, 0)
|
|
|
|
@pytest.mark.skipif(not is_linux(), reason="apt only available on Linux")
|
|
@pytest.mark.skipif(not apt_available(), reason="apt not installed")
|
|
def test_hook_detects_apt(self):
|
|
"""Hook should detect apt binary when available."""
|
|
result = subprocess.run(
|
|
[
|
|
sys.executable, str(INSTALL_HOOK),
|
|
'--name=nonexistent-pkg-xyz123',
|
|
'--binary-id=test-uuid',
|
|
'--machine-id=test-machine',
|
|
],
|
|
capture_output=True,
|
|
text=True,
|
|
timeout=30
|
|
)
|
|
|
|
# Should not say apt is not available
|
|
self.assertNotIn('apt not available', result.stderr)
|
|
|
|
def test_hook_handles_overrides(self):
|
|
"""Hook should accept overrides JSON."""
|
|
overrides = json.dumps({
|
|
'apt': {'packages': ['custom-package-name']}
|
|
})
|
|
|
|
result = subprocess.run(
|
|
[
|
|
sys.executable, str(INSTALL_HOOK),
|
|
'--name=test-pkg',
|
|
'--binary-id=test-uuid',
|
|
'--machine-id=test-machine',
|
|
f'--overrides={overrides}',
|
|
],
|
|
capture_output=True,
|
|
text=True,
|
|
timeout=30
|
|
)
|
|
|
|
# Should not crash parsing overrides
|
|
self.assertNotIn('Traceback', result.stderr)
|
|
|
|
|
|
@pytest.mark.skipif(not is_linux(), reason="apt only available on Linux")
|
|
@pytest.mark.skipif(not apt_available(), reason="apt not installed")
|
|
class TestAptProviderSystemBinaries(TestCase):
|
|
"""Test apt provider with system binaries."""
|
|
|
|
def test_detect_existing_binary(self):
|
|
"""apt provider should detect already-installed system binaries."""
|
|
# Check for a binary that's almost certainly installed (like 'ls' or 'bash')
|
|
result = subprocess.run(
|
|
[
|
|
sys.executable, str(INSTALL_HOOK),
|
|
'--name=bash',
|
|
'--binary-id=test-uuid',
|
|
'--machine-id=test-machine',
|
|
],
|
|
capture_output=True,
|
|
text=True,
|
|
timeout=60
|
|
)
|
|
|
|
# Parse JSONL output
|
|
for line in result.stdout.split('\n'):
|
|
line = line.strip()
|
|
if line.startswith('{'):
|
|
try:
|
|
record = json.loads(line)
|
|
if record.get('type') == 'Binary' and record.get('name') == 'bash':
|
|
# Found bash
|
|
self.assertTrue(record.get('abspath'))
|
|
self.assertTrue(Path(record['abspath']).exists())
|
|
return
|
|
except json.JSONDecodeError:
|
|
continue
|
|
|
|
# apt may not be able to "install" bash (already installed)
|
|
# Just verify no crash
|
|
self.assertNotIn('Traceback', result.stderr)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
pytest.main([__file__, '-v'])
|