File size: 11,414 Bytes
b560e7a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3addb72
 
 
b560e7a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356d8ba
b560e7a
 
 
 
 
 
 
 
 
 
 
356d8ba
b560e7a
356d8ba
b560e7a
 
 
 
 
 
 
 
 
356d8ba
b560e7a
356d8ba
b560e7a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
"""Tests for HTML extraction evaluation.

These tests verify that the HTML extraction preserves information
that LLMs need to answer questions about web content.

Run with actual LLM calls:
    pytest tests/test_evals/test_html_extraction_eval.py -v -s

Skip LLM calls (just test infrastructure):
    pytest tests/test_evals/test_html_extraction_eval.py -v -k "not llm"
"""

import os

import pytest

# Skip entire module if trafilatura not installed
pytest.importorskip("trafilatura")

from headroom.evals.html_extraction import (
    HTMLEvalCase,
    HTMLEvalResult,
    HTMLEvalSuiteResult,
    HTMLExtractionEvaluator,
    get_sample_eval_cases,
)
from headroom.transforms.html_extractor import HTMLExtractor


class TestHTMLEvalInfrastructure:
    """Tests for evaluation infrastructure (no LLM calls)."""

    def test_sample_cases_available(self):
        """Verify sample evaluation cases are available."""
        cases = get_sample_eval_cases()
        assert len(cases) >= 4
        assert all(isinstance(c, HTMLEvalCase) for c in cases)

    def test_case_categories(self):
        """Verify cases cover different categories."""
        cases = get_sample_eval_cases()
        categories = {c.category for c in cases}
        assert "news" in categories
        assert "docs" in categories
        assert "blog" in categories

    def test_eval_result_properties(self):
        """Test HTMLEvalResult computed properties."""
        result = HTMLEvalResult(
            case_id="test",
            category="news",
            original_html_length=1000,
            extracted_length=300,
            compression_ratio=0.3,
            answer_from_original="Answer A",
            answer_from_extracted="Answer B",
            extracted_score=4.5,
            extracted_reasoning="Good extraction",
        )

        assert result.information_preserved is True  # score >= 4
        assert result.extraction_wins is None  # no baseline

    def test_eval_result_with_baseline(self):
        """Test HTMLEvalResult with baseline comparison."""
        result = HTMLEvalResult(
            case_id="test",
            category="news",
            original_html_length=1000,
            extracted_length=300,
            compression_ratio=0.3,
            answer_from_original="Answer A",
            answer_from_extracted="Answer B",
            answer_from_baseline="Answer C",
            extracted_score=4.5,
            extracted_reasoning="Good extraction",
            baseline_score=3.0,
            baseline_reasoning="Partial extraction",
        )

        assert result.information_preserved is True
        assert result.extraction_wins is True  # 4.5 > 3.0

    def test_suite_result_aggregation(self):
        """Test HTMLEvalSuiteResult aggregation."""
        results = [
            HTMLEvalResult(
                case_id="1",
                category="news",
                original_html_length=1000,
                extracted_length=300,
                compression_ratio=0.3,
                answer_from_original="A",
                answer_from_extracted="B",
                extracted_score=5.0,
                extracted_reasoning="Perfect",
            ),
            HTMLEvalResult(
                case_id="2",
                category="docs",
                original_html_length=800,
                extracted_length=200,
                compression_ratio=0.25,
                answer_from_original="A",
                answer_from_extracted="B",
                extracted_score=4.0,
                extracted_reasoning="Good",
            ),
            HTMLEvalResult(
                case_id="3",
                category="news",
                original_html_length=1200,
                extracted_length=400,
                compression_ratio=0.33,
                answer_from_original="A",
                answer_from_extracted="B",
                extracted_score=3.0,
                extracted_reasoning="Partial",
            ),
        ]

        suite = HTMLEvalSuiteResult(total_cases=3, results=results)

        assert suite.avg_extraction_score == 4.0  # (5+4+3)/3
        assert suite.information_preservation_rate == pytest.approx(66.67, rel=0.1)  # 2/3
        assert suite.avg_compression_ratio == pytest.approx(0.293, rel=0.1)

        summary = suite.summary()
        assert summary["total_cases"] == 3
        assert "by_category" in summary
        assert "news" in summary["by_category"]
        assert "docs" in summary["by_category"]


class TestHTMLExtractionQuality:
    """Tests that verify extraction quality without LLM calls."""

    @pytest.fixture
    def extractor(self):
        return HTMLExtractor()

    def test_extracts_article_content(self, extractor):
        """Test that article content is extracted from sample cases."""
        cases = get_sample_eval_cases()

        for case in cases:
            result = extractor.extract(case.html, url=case.url)

            # Extraction should produce non-empty content
            assert len(result.extracted) > 0

            # Should achieve significant compression
            assert result.compression_ratio < 0.7  # At least 30% reduction

    def test_removes_noise(self, extractor):
        """Test that scripts, styles, nav are removed."""
        cases = get_sample_eval_cases()

        for case in cases:
            result = extractor.extract(case.html, url=case.url)
            extracted = result.extracted.lower()

            # Should not contain JavaScript code patterns
            assert "trackconversion" not in extracted
            assert "var analytics" not in extracted
            assert "function()" not in extracted
            assert "console.log" not in extracted

            # Should not contain CSS
            assert "font-family" not in extracted
            assert "display: block" not in extracted
            assert "font-family: arial" not in extracted

    def test_preserves_key_information(self, extractor):
        """Test that key facts from questions are preserved in extraction."""
        cases = get_sample_eval_cases()

        # Check specific facts that should be preserved
        fact_checks = {
            "news_article_1": ["aria", "march 2024", "$29.99"],
            "documentation_1": ["1000", "api key", "authorization"],
            "blog_post_1": ["200", "customers", "3 years"],
            "product_page_1": ["$1,299.99", "12 hours", "1.4 kg"],
        }

        for case in cases:
            if case.id in fact_checks:
                result = extractor.extract(case.html, url=case.url)
                extracted_lower = result.extracted.lower()

                for fact in fact_checks[case.id]:
                    assert fact.lower() in extracted_lower, (
                        f"Fact '{fact}' missing from {case.id} extraction"
                    )


@pytest.mark.skipif(not os.environ.get("OPENAI_API_KEY"), reason="OPENAI_API_KEY not set")
class TestHTMLExtractionWithLLM:
    """Tests that use actual LLM calls for evaluation.

    These tests verify that the extracted content allows LLMs to
    answer questions correctly.
    """

    @pytest.fixture
    def evaluator(self):
        """Create evaluator with OpenAI."""
        return HTMLExtractionEvaluator(
            answer_model="gpt-4o-mini",
            judge_model="gpt-4o-mini",  # Use mini for faster/cheaper tests
            compare_baseline=False,  # Skip baseline for speed
            provider="openai",
        )

    def test_single_case_evaluation(self, evaluator):
        """Test evaluation of a single case."""
        case = get_sample_eval_cases()[0]  # News article

        result = evaluator.evaluate_case(case)

        # Should get a valid score
        assert 1.0 <= result.extracted_score <= 5.0
        assert result.extracted_reasoning != ""

        # Should achieve compression
        assert result.compression_ratio < 0.5

        # Print for manual inspection
        print(f"\nCase: {result.case_id}")
        print(f"Score: {result.extracted_score}/5")
        print(f"Reasoning: {result.extracted_reasoning}")
        print(f"Compression: {(1 - result.compression_ratio) * 100:.1f}%")

    def test_full_suite_evaluation(self, evaluator):
        """Test evaluation of all sample cases."""
        cases = get_sample_eval_cases()

        results = evaluator.evaluate(cases)

        # Should evaluate all cases
        assert results.total_cases == len(cases)
        assert len(results.results) == len(cases)

        # Print summary
        summary = results.summary()
        print(f"\n{'=' * 50}")
        print("HTML Extraction Evaluation Results")
        print(f"{'=' * 50}")
        print(f"Total cases: {summary['total_cases']}")
        print(f"Avg extraction score: {summary['avg_extraction_score']}/5")
        print(f"Information preservation rate: {summary['information_preservation_rate']}%")
        print(f"Avg compression ratio: {summary['avg_compression_ratio']:.1%}")
        print("\nBy category:")
        for cat, stats in summary["by_category"].items():
            print(f"  {cat}: {stats['avg_score']}/5 ({stats['count']} cases)")

        # Should preserve information in most cases
        assert results.information_preservation_rate >= 75.0, (
            f"Information preservation rate too low: {results.information_preservation_rate}%"
        )


@pytest.mark.skipif(not os.environ.get("OPENAI_API_KEY"), reason="OPENAI_API_KEY not set")
class TestHTMLvsBaseline:
    """Tests comparing HTMLExtractor vs Kompress baseline."""

    @pytest.fixture
    def evaluator_with_baseline(self):
        """Create evaluator that compares against baseline."""
        return HTMLExtractionEvaluator(
            answer_model="gpt-4o-mini",
            judge_model="gpt-4o-mini",
            compare_baseline=True,
            provider="openai",
        )

    @pytest.mark.skipif(True, reason="Kompress requires GPU, skip in CI")
    def test_extraction_beats_baseline(self, evaluator_with_baseline):
        """Test that HTMLExtractor outperforms Kompress on HTML."""
        cases = get_sample_eval_cases()[:2]  # Just test 2 for speed

        results = evaluator_with_baseline.evaluate(cases)

        if results.extraction_win_rate is not None:
            print(f"\nExtraction win rate: {results.extraction_win_rate}%")
            print(f"Avg extraction score: {results.avg_extraction_score}/5")
            print(f"Avg baseline score: {results.avg_baseline_score}/5")

            # HTMLExtractor should beat Kompress on HTML content
            assert results.avg_extraction_score >= results.avg_baseline_score, (
                "HTMLExtractor should perform at least as well as Kompress on HTML"
            )


class TestEvaluatorConfiguration:
    """Tests for evaluator configuration."""

    def test_lazy_loading(self):
        """Test that components are lazy loaded."""
        evaluator = HTMLExtractionEvaluator()

        # Components should not be loaded yet
        assert evaluator._extractor is None
        assert evaluator._judge_fn is None

    def test_different_providers(self):
        """Test that different providers can be configured."""
        # These should not fail (just create the evaluator)
        HTMLExtractionEvaluator(provider="openai")
        HTMLExtractionEvaluator(provider="anthropic")
        HTMLExtractionEvaluator(provider="litellm")