File size: 11,082 Bytes
7c6ffa6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"""
Tests for OpenRouter JSON parsing reliability and model-chain retry logic.

All tests run against mock provider by default.  Tests that exercise
OpenRouterAIProvider internals monkey-patch the HTTP client so no real
API calls are made.
"""

from __future__ import annotations

import json
import os
import sys
from pathlib import Path
from unittest.mock import MagicMock, patch

import pytest

BACKEND_DIR = Path(__file__).resolve().parents[1]
if str(BACKEND_DIR) not in sys.path:
    sys.path.insert(0, str(BACKEND_DIR))

os.environ.setdefault("AI_PROVIDER", "mock")
os.environ.setdefault("AUTH_ENABLED", "false")

from app.core.config import get_settings

get_settings.cache_clear()

from app.services.ai_provider import (
    AIProviderError,
    _FatalAPIError,
    _http_status_code,
    _parse_json_text,
    _validate_or_pass,
    MockAIProvider,
    OpenRouterAIProvider,
    SimpleExplanationAIOutput,
)


# ---------------------------------------------------------------------------
# _parse_json_text unit tests
# ---------------------------------------------------------------------------


def test_parse_plain_json():
    payload = {"simple_meaning": "test", "exam_answer": "ok"}
    assert _parse_json_text(json.dumps(payload)) == payload


def test_parse_markdown_fenced_json():
    payload = {"simple_meaning": "photosynthesis"}
    raw = f"```json\n{json.dumps(payload)}\n```"
    assert _parse_json_text(raw) == payload


def test_parse_fenced_json_no_language_tag():
    payload = {"title": "notes"}
    raw = f"```\n{json.dumps(payload)}\n```"
    assert _parse_json_text(raw) == payload


def test_parse_json_with_prose_prefix():
    """Model outputs extra text before the JSON object."""
    payload = {"simple_meaning": "hello"}
    raw = f"Sure! Here is the result:\n{json.dumps(payload)}\nHope that helps."
    result = _parse_json_text(raw)
    assert result == payload


def test_parse_json_with_prose_both_sides():
    payload = {"title": "EM Induction"}
    raw = f"Here you go:\n{json.dumps(payload)}\n\nLet me know if you need more."
    assert _parse_json_text(raw) == payload


def test_parse_invalid_json_raises():
    with pytest.raises(AIProviderError):
        _parse_json_text("This is not JSON at all")


def test_parse_json_array_raises():
    """JSON array is not an object β€” should raise."""
    with pytest.raises(AIProviderError):
        _parse_json_text(json.dumps([1, 2, 3]))


def test_parse_empty_string_raises():
    with pytest.raises(AIProviderError):
        _parse_json_text("")


# ---------------------------------------------------------------------------
# _validate_or_pass unit tests
# ---------------------------------------------------------------------------


def test_validate_good_data_returns_model_dump():
    data = {
        "simple_meaning": "Plants make food",
        "explain_like_15_year_old": "Like a kitchen for sunlight",
        "real_life_example": "Solar panels",
        "memory_trick": "SUN = SUNtain",
        "exam_answer": "Photosynthesis: green plants...",
    }
    result = _validate_or_pass(data, SimpleExplanationAIOutput)
    assert result["simple_meaning"] == "Plants make food"
    # Pydantic should fill in missing list fields with defaults
    assert isinstance(result["step_by_step"], list)


def test_validate_bad_data_returns_raw():
    """Validation failure should return raw dict, not crash."""
    raw = {"garbage_field": 999}
    result = _validate_or_pass(raw, SimpleExplanationAIOutput)
    # Should return something (either validated defaults or raw data)
    assert isinstance(result, dict)


# ---------------------------------------------------------------------------
# _http_status_code helper
# ---------------------------------------------------------------------------


def test_http_status_code_from_status_attribute():
    exc = Exception("bad")
    exc.status_code = 429  # type: ignore[attr-defined]
    assert _http_status_code(exc) == 429


def test_http_status_code_missing_returns_none():
    assert _http_status_code(ValueError("no code")) is None


# ---------------------------------------------------------------------------
# OpenRouterAIProvider model-chain retry logic (mocked)
# ---------------------------------------------------------------------------


def _make_provider(api_key: str = "test-key") -> OpenRouterAIProvider:
    """Create an OpenRouterAIProvider without calling __init__.

    Uses __new__ to bypass __init__ (which would try to import openai and
    create a real HTTP client).  All attributes are set manually so the
    provider is fully functional for unit tests that only touch logic.
    """
    os.environ["OPENROUTER_API_KEY"] = api_key
    get_settings.cache_clear()
    # __new__ skips __init__ β€” no real OpenAI client is created.
    provider = OpenRouterAIProvider.__new__(OpenRouterAIProvider)
    provider._settings = get_settings()
    provider._fallback = MockAIProvider()
    provider._models = {
        "main": "deepseek/deepseek-v4-flash:free",
        "llama": "meta-llama/llama-3.3-70b-instruct:free",
        "gpt_oss": "openai/gpt-oss-120b:free",
        "nemotron": "nvidia/nemotron-3-nano-30b-a3b:free",
    }
    provider._client = MagicMock()
    provider.model_name = "openrouter:deepseek/deepseek-v4-flash:free"
    provider.is_fallback = False
    provider.fallback_reason = None
    provider.last_error_code = None
    return provider


def _good_completion(content: str) -> MagicMock:
    choice = MagicMock()
    choice.message.content = content
    resp = MagicMock()
    resp.choices = [choice]
    return resp


def test_model_chain_retries_on_bad_json():
    """First model returns garbage JSON β†’ second model succeeds."""
    provider = _make_provider()
    good_payload = json.dumps({
        "simple_meaning": "Plants make food using sunlight",
        "explain_like_15_year_old": "Like a food factory",
        "real_life_example": "Solar energy",
        "memory_trick": "SUN",
        "exam_answer": "Photosynthesis is...",
    })
    provider._client.chat.completions.create.side_effect = [
        _good_completion("NOT JSON AT ALL !!!"),  # first model fails json parse
        _good_completion(good_payload),           # second model succeeds
    ]
    result = provider._generate_json(
        task="explain",
        context="photosynthesis",
        language="English",
        metadata=None,
        response_schema=SimpleExplanationAIOutput,
        route=("main", "llama"),
    )
    assert "simple_meaning" in result
    assert provider.model_name.startswith("openrouter:")


def test_all_models_fail_raises_ai_provider_error():
    """All models in chain fail β†’ AIProviderError raised."""
    provider = _make_provider()
    provider._client.chat.completions.create.side_effect = RuntimeError("connection error")
    with pytest.raises(AIProviderError):
        provider._generate_json(
            task="explain",
            context="test",
            language="English",
            metadata=None,
            response_schema=SimpleExplanationAIOutput,
            route=("main",),
        )


def test_fatal_401_skips_retry():
    """401 error β†’ _FatalAPIError raised, no retry attempted."""
    provider = _make_provider()
    auth_exc = Exception("Unauthorized")
    auth_exc.status_code = 401  # type: ignore[attr-defined]
    provider._client.chat.completions.create.side_effect = auth_exc

    with pytest.raises((AIProviderError, _FatalAPIError)):
        provider._generate_json(
            task="explain",
            context="test",
            language="English",
            metadata=None,
            response_schema=SimpleExplanationAIOutput,
            route=("main", "llama"),
        )
    # Only one call made β€” retry skipped after fatal error
    assert provider._client.chat.completions.create.call_count == 1


def test_fallback_to_mock_on_generation_failure():
    """When ai_fallback_to_mock=True, failed generation falls back to mock."""
    provider = _make_provider()
    provider._settings = MagicMock()
    provider._settings.ai_fallback_to_mock = True
    provider._settings.ai_timeout_seconds = 30
    provider._settings.openrouter_site_url = "https://docdoe.ai"
    provider._settings.openrouter_app_name = "DocDoe AI"
    provider._client.chat.completions.create.side_effect = RuntimeError("503 service unavailable")

    result = provider.generate_simple_explanation(
        context="photosynthesis is the process of making food",
        language="English",
    )
    assert provider.is_fallback is True
    assert "simple_meaning" in result  # mock provider always has this key


def test_no_fallback_raises_on_failure():
    """When ai_fallback_to_mock=False, failed generation raises AIProviderError."""
    provider = _make_provider()
    provider._settings = MagicMock()
    provider._settings.ai_fallback_to_mock = False
    provider._settings.ai_timeout_seconds = 30
    provider._settings.openrouter_site_url = "https://docdoe.ai"
    provider._settings.openrouter_app_name = "DocDoe AI"
    provider._client.chat.completions.create.side_effect = RuntimeError("model error")

    with pytest.raises(AIProviderError):
        provider.generate_simple_explanation(
            context="photosynthesis",
            language="English",
        )
    assert provider.is_fallback is False


def test_model_chain_notes_route():
    """Notes route has at least 2 models (benchmark-corrected: gpt_oss/nemotron removed
    because they return HTTP 404 on the current OpenRouter account data-policy setting).
    Restore to 4 once openrouter.ai/settings/privacy is configured.
    """
    provider = _make_provider()
    chain = provider._model_chain(provider._ROUTE_NOTES)
    assert len(chain) >= 2
    assert len(set(chain)) == len(chain)  # no duplicates


def test_model_chain_flashcards_starts_with_main():
    """Flashcards route starts with main model (benchmark-corrected: nemotron
    was previously primary but returns HTTP 404 β€” removed until data policy is set).
    """
    provider = _make_provider()
    chain = provider._model_chain(provider._ROUTE_FLASHCARDS)
    assert chain[0] == provider._models["main"]


def test_model_chain_pyq_starts_with_main():
    """PYQ route starts with main model (benchmark-corrected: gpt_oss
    was previously primary but returns HTTP 404 β€” removed until data policy is set).
    """
    provider = _make_provider()
    chain = provider._model_chain(provider._ROUTE_PYQ)
    assert chain[0] == provider._models["main"]


def test_model_chain_no_empty_routes():
    """Every route resolves to at least one model."""
    provider = _make_provider()
    routes = [
        provider._ROUTE_NOTES,
        provider._ROUTE_SIMPLE,
        provider._ROUTE_QUIZ,
        provider._ROUTE_FLASHCARDS,
        provider._ROUTE_EXAM,
        provider._ROUTE_PYQ,
        provider._ROUTE_VIDEO,
        provider._ROUTE_EXTRACT,
    ]
    for route in routes:
        chain = provider._model_chain(route)
        assert len(chain) >= 1, f"Route {route} resolved to empty chain"