forked from yusufkaraaslan/Skill_Seekers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_unified.py
More file actions
572 lines (464 loc) · 15.8 KB
/
test_unified.py
File metadata and controls
572 lines (464 loc) · 15.8 KB
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
#!/usr/bin/env python3
"""
Tests for Unified Multi-Source Scraper
Covers:
- Config validation (unified vs legacy)
- Conflict detection
- Rule-based merging
- Skill building
"""
import json
import os
import tempfile
from pathlib import Path
import pytest
from skill_seekers.cli.config_validator import ConfigValidator, validate_config
from skill_seekers.cli.conflict_detector import Conflict, ConflictDetector
from skill_seekers.cli.merge_sources import RuleBasedMerger
from skill_seekers.cli.unified_skill_builder import UnifiedSkillBuilder
# ===========================
# Config Validation Tests
# ===========================
def test_detect_unified_format():
"""Test unified format detection"""
import json
import tempfile
unified_config = {
"name": "test",
"description": "Test skill",
"sources": [{"type": "documentation", "base_url": "https://example.com"}],
}
legacy_config = {"name": "test", "description": "Test skill", "base_url": "https://example.com"}
# Test unified detection
with tempfile.NamedTemporaryFile(mode="w", suffix=".json", delete=False) as f:
json.dump(unified_config, f)
config_path = f.name
try:
validator = ConfigValidator(config_path)
assert validator.is_unified
finally:
os.unlink(config_path)
# Test legacy detection
with tempfile.NamedTemporaryFile(mode="w", suffix=".json", delete=False) as f:
json.dump(legacy_config, f)
config_path = f.name
try:
validator = ConfigValidator(config_path)
assert not validator.is_unified
finally:
os.unlink(config_path)
def test_validate_unified_sources():
"""Test source type validation"""
config = {
"name": "test",
"description": "Test",
"sources": [
{"type": "documentation", "base_url": "https://example.com"},
{"type": "github", "repo": "user/repo"},
{"type": "pdf", "path": "/path/to.pdf"},
],
}
validator = ConfigValidator(config)
validator.validate()
assert len(validator.config["sources"]) == 3
def test_validate_invalid_source_type():
"""Test invalid source type raises error"""
config = {
"name": "test",
"description": "Test",
"sources": [{"type": "invalid_type", "url": "https://example.com"}],
}
validator = ConfigValidator(config)
with pytest.raises(ValueError, match="Invalid type"):
validator.validate()
def test_needs_api_merge():
"""Test API merge detection"""
# Config with both docs and GitHub code
config_needs_merge = {
"name": "test",
"description": "Test",
"sources": [
{"type": "documentation", "base_url": "https://example.com", "extract_api": True},
{"type": "github", "repo": "user/repo", "include_code": True},
],
}
validator = ConfigValidator(config_needs_merge)
assert validator.needs_api_merge()
# Config with only docs
config_no_merge = {
"name": "test",
"description": "Test",
"sources": [{"type": "documentation", "base_url": "https://example.com"}],
}
validator = ConfigValidator(config_no_merge)
assert not validator.needs_api_merge()
def test_backward_compatibility():
"""Test legacy config conversion"""
legacy_config = {
"name": "test",
"description": "Test skill",
"base_url": "https://example.com",
"selectors": {"main_content": "article"},
"max_pages": 100,
}
validator = ConfigValidator(legacy_config)
unified = validator.convert_legacy_to_unified()
assert "sources" in unified
assert len(unified["sources"]) == 1
assert unified["sources"][0]["type"] == "documentation"
assert unified["sources"][0]["base_url"] == "https://example.com"
# ===========================
# Conflict Detection Tests
# ===========================
def test_detect_missing_in_docs():
"""Test detection of APIs missing in documentation"""
docs_data = {
"pages": [
{
"url": "https://example.com/api",
"apis": [
{
"name": "documented_func",
"parameters": [{"name": "x", "type": "int"}],
"return_type": "str",
}
],
}
]
}
github_data = {
"code_analysis": {
"analyzed_files": [
{
"functions": [
{
"name": "undocumented_func",
"parameters": [{"name": "y", "type_hint": "float"}],
"return_type": "bool",
}
]
}
]
}
}
detector = ConflictDetector(docs_data, github_data)
conflicts = detector._find_missing_in_docs()
assert len(conflicts) > 0
assert any(c.type == "missing_in_docs" for c in conflicts)
assert any(c.api_name == "undocumented_func" for c in conflicts)
def test_detect_missing_in_code():
"""Test detection of APIs missing in code"""
docs_data = {
"pages": [
{
"url": "https://example.com/api",
"apis": [
{
"name": "obsolete_func",
"parameters": [{"name": "x", "type": "int"}],
"return_type": "str",
}
],
}
]
}
github_data = {"code_analysis": {"analyzed_files": []}}
detector = ConflictDetector(docs_data, github_data)
conflicts = detector._find_missing_in_code()
assert len(conflicts) > 0
assert any(c.type == "missing_in_code" for c in conflicts)
assert any(c.api_name == "obsolete_func" for c in conflicts)
def test_detect_signature_mismatch():
"""Test detection of signature mismatches"""
docs_data = {
"pages": [
{
"url": "https://example.com/api",
"apis": [
{
"name": "func",
"parameters": [{"name": "x", "type": "int"}],
"return_type": "str",
}
],
}
]
}
github_data = {
"code_analysis": {
"analyzed_files": [
{
"functions": [
{
"name": "func",
"parameters": [
{"name": "x", "type_hint": "int"},
{"name": "y", "type_hint": "bool", "default": "False"},
],
"return_type": "str",
}
]
}
]
}
}
detector = ConflictDetector(docs_data, github_data)
conflicts = detector._find_signature_mismatches()
assert len(conflicts) > 0
assert any(c.type == "signature_mismatch" for c in conflicts)
assert any(c.api_name == "func" for c in conflicts)
def test_conflict_severity():
"""Test conflict severity assignment"""
# High severity: missing_in_code
conflict_high = Conflict(
type="missing_in_code",
severity="high",
api_name="test",
docs_info={"name": "test"},
code_info=None,
difference="API documented but not in code",
)
assert conflict_high.severity == "high"
# Medium severity: missing_in_docs
conflict_medium = Conflict(
type="missing_in_docs",
severity="medium",
api_name="test",
docs_info=None,
code_info={"name": "test"},
difference="API in code but not documented",
)
assert conflict_medium.severity == "medium"
# ===========================
# Merge Tests
# ===========================
def test_rule_based_merge_docs_only():
"""Test rule-based merge for docs-only APIs"""
docs_data = {
"pages": [
{
"url": "https://example.com/api",
"apis": [
{
"name": "docs_only_api",
"parameters": [{"name": "x", "type": "int"}],
"return_type": "str",
}
],
}
]
}
github_data = {"code_analysis": {"analyzed_files": []}}
detector = ConflictDetector(docs_data, github_data)
conflicts = detector.detect_all_conflicts()
merger = RuleBasedMerger(docs_data, github_data, conflicts)
merged = merger.merge_all()
assert "apis" in merged
assert "docs_only_api" in merged["apis"]
assert merged["apis"]["docs_only_api"]["status"] == "docs_only"
def test_rule_based_merge_code_only():
"""Test rule-based merge for code-only APIs"""
docs_data = {"pages": []}
github_data = {
"code_analysis": {
"analyzed_files": [
{
"functions": [
{
"name": "code_only_api",
"parameters": [{"name": "y", "type_hint": "float"}],
"return_type": "bool",
}
]
}
]
}
}
detector = ConflictDetector(docs_data, github_data)
conflicts = detector.detect_all_conflicts()
merger = RuleBasedMerger(docs_data, github_data, conflicts)
merged = merger.merge_all()
assert "apis" in merged
assert "code_only_api" in merged["apis"]
assert merged["apis"]["code_only_api"]["status"] == "code_only"
def test_rule_based_merge_matched():
"""Test rule-based merge for matched APIs"""
docs_data = {
"pages": [
{
"url": "https://example.com/api",
"apis": [
{
"name": "matched_api",
"parameters": [{"name": "x", "type": "int"}],
"return_type": "str",
}
],
}
]
}
github_data = {
"code_analysis": {
"analyzed_files": [
{
"functions": [
{
"name": "matched_api",
"parameters": [{"name": "x", "type_hint": "int"}],
"return_type": "str",
}
]
}
]
}
}
detector = ConflictDetector(docs_data, github_data)
conflicts = detector.detect_all_conflicts()
merger = RuleBasedMerger(docs_data, github_data, conflicts)
merged = merger.merge_all()
assert "apis" in merged
assert "matched_api" in merged["apis"]
assert merged["apis"]["matched_api"]["status"] == "matched"
def test_merge_summary():
"""Test merge summary statistics"""
docs_data = {
"pages": [
{
"url": "https://example.com/api",
"apis": [
{"name": "api1", "parameters": [], "return_type": "str"},
{"name": "api2", "parameters": [], "return_type": "int"},
],
}
]
}
github_data = {
"code_analysis": {
"analyzed_files": [
{"functions": [{"name": "api3", "parameters": [], "return_type": "bool"}]}
]
}
}
detector = ConflictDetector(docs_data, github_data)
conflicts = detector.detect_all_conflicts()
merger = RuleBasedMerger(docs_data, github_data, conflicts)
merged = merger.merge_all()
assert "summary" in merged
assert merged["summary"]["total_apis"] == 3
assert merged["summary"]["docs_only"] == 2
assert merged["summary"]["code_only"] == 1
# ===========================
# Skill Builder Tests
# ===========================
def test_skill_builder_basic():
"""Test basic skill building"""
config = {
"name": "test_skill",
"description": "Test skill description",
"sources": [{"type": "documentation", "base_url": "https://example.com"}],
}
scraped_data = {"documentation": {"pages": [], "data_file": "/tmp/test.json"}}
with tempfile.TemporaryDirectory() as tmpdir:
# Override output directory
builder = UnifiedSkillBuilder(config, scraped_data)
builder.skill_dir = tmpdir
builder._generate_skill_md()
# Check SKILL.md was created
skill_md = Path(tmpdir) / "SKILL.md"
assert skill_md.exists()
content = skill_md.read_text()
assert "test_skill" in content.lower()
assert "Test skill description" in content
def test_skill_builder_with_conflicts():
"""Test skill building with conflicts"""
config = {
"name": "test_skill",
"description": "Test",
"sources": [
{"type": "documentation", "base_url": "https://example.com"},
{"type": "github", "repo": "user/repo"},
],
}
scraped_data = {}
conflicts = [
Conflict(
type="missing_in_code",
severity="high",
api_name="test_api",
docs_info={"name": "test_api"},
code_info=None,
difference="Test difference",
)
]
with tempfile.TemporaryDirectory() as tmpdir:
builder = UnifiedSkillBuilder(config, scraped_data, conflicts=conflicts)
builder.skill_dir = tmpdir
builder._generate_skill_md()
skill_md = Path(tmpdir) / "SKILL.md"
content = skill_md.read_text()
assert "1 conflicts detected" in content
assert "missing_in_code" in content
def test_skill_builder_merged_apis():
"""Test skill building with merged APIs"""
config = {"name": "test", "description": "Test", "sources": []}
scraped_data = {}
merged_data = {
"apis": {
"test_api": {
"name": "test_api",
"status": "matched",
"merged_signature": "test_api(x: int) -> str",
"merged_description": "Test API",
"source": "both",
}
}
}
with tempfile.TemporaryDirectory() as tmpdir:
builder = UnifiedSkillBuilder(config, scraped_data, merged_data=merged_data)
builder.skill_dir = tmpdir
content = builder._format_merged_apis()
assert "✅ Verified APIs" in content
assert "test_api" in content
# ===========================
# Integration Tests
# ===========================
def test_full_workflow_unified_config():
"""Test complete workflow with unified config"""
# Create test config
config = {
"name": "test_unified",
"description": "Test unified workflow",
"merge_mode": "rule-based",
"sources": [
{"type": "documentation", "base_url": "https://example.com", "extract_api": True},
{
"type": "github",
"repo": "user/repo",
"include_code": True,
"code_analysis_depth": "surface",
},
],
}
# Validate config
validator = ConfigValidator(config)
validator.validate()
assert validator.is_unified
assert validator.needs_api_merge()
def test_config_file_validation():
"""Test validation from config file"""
with tempfile.NamedTemporaryFile(mode="w", suffix=".json", delete=False) as f:
config = {
"name": "test",
"description": "Test",
"sources": [{"type": "documentation", "base_url": "https://example.com"}],
}
json.dump(config, f)
config_path = f.name
try:
validator = validate_config(config_path)
assert validator.is_unified
finally:
os.unlink(config_path)
# Run tests
if __name__ == "__main__":
pytest.main([__file__, "-v"])