conftest.py 5.33 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3

4
5
6
import pytest


7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@pytest.fixture
def sample_prompts():
    return [
        "Hello, my name is",
        "The president of the United States is",
        "The capital of France is",
        "The future of AI is",
    ]


@pytest.fixture
def sample_token_ids():
    return [
        [0],
        [0, 1],
        [0, 2, 1],
        [0, 3, 1, 2],
    ]


27
28
@pytest.fixture
def sample_regex():
29
30
31
32
    return (
        r"((25[0-5]|(2[0-4]|1\d|[1-9]|)\d)\.){3}"
        r"(25[0-5]|(2[0-4]|1\d|[1-9]|)\d)"
    )
33
34
35
36
37
38
39


@pytest.fixture
def sample_json_schema():
    return {
        "type": "object",
        "properties": {
40
41
            "name": {"type": "string"},
            "age": {"type": "integer"},
42
43
            "skills": {
                "type": "array",
44
45
                "items": {"type": "string", "maxLength": 10},
                "minItems": 3,
46
47
48
49
50
51
            },
            "work_history": {
                "type": "array",
                "items": {
                    "type": "object",
                    "properties": {
52
53
54
                        "company": {"type": "string"},
                        "duration": {"type": "number"},
                        "position": {"type": "string"},
55
                    },
56
57
58
                    "required": ["company", "position"],
                },
            },
59
        },
60
        "required": ["name", "age", "skills", "work_history"],
61
62
63
    }


64
65
66
67
68
69
70
71
@pytest.fixture
def sample_complex_json_schema():
    return {
        "type": "object",
        "properties": {
            "score": {
                "type": "integer",
                "minimum": 0,
72
                "maximum": 100,  # Numeric range
73
74
75
            },
            "grade": {
                "type": "string",
76
                "pattern": "^[A-D]$",  # Regex pattern
77
78
79
            },
            "email": {
                "type": "string",
80
                "pattern": "^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$",
81
82
83
84
85
            },
            "tags": {
                "type": "array",
                "items": {
                    "type": "string",
86
87
                    # Combining length and pattern restrictions
                    "pattern": "^[a-z]{1,10}$",
88
89
                },
            },
90
        },
91
        "required": ["score", "grade", "email", "tags"],
92
93
94
    }


95
96
97
@pytest.fixture
def sample_definition_json_schema():
    return {
98
99
100
101
102
        "$defs": {
            "Step": {
                "properties": {
                    "explanation": {"title": "Explanation", "type": "string"},
                    "output": {"title": "Output", "type": "string"},
103
                },
104
105
106
                "required": ["explanation", "output"],
                "title": "Step",
                "type": "object",
107
108
            }
        },
109
110
111
112
113
        "properties": {
            "steps": {
                "items": {"$ref": "#/$defs/Step"},
                "title": "Steps",
                "type": "array",
114
            },
115
            "final_answer": {"title": "Final Answer", "type": "string"},
116
        },
117
118
119
        "required": ["steps", "final_answer"],
        "title": "MathReasoning",
        "type": "object",
120
121
122
    }


123
124
125
126
127
128
129
@pytest.fixture
def sample_enum_json_schema():
    return {
        "type": "object",
        "properties": {
            "status": {
                "type": "string",
130
                "enum": ["active", "inactive", "pending"],  # Literal values using enum
131
132
133
            },
            "priority": {
                "type": "string",
134
                "enum": ["low", "medium", "high", "critical"],
135
136
137
138
139
140
            },
            "category": {
                "type": "object",
                "properties": {
                    "type": {
                        "type": "string",
141
                        "enum": ["bug", "feature", "improvement"],
142
143
144
                    },
                    "severity": {
                        "type": "integer",
145
146
                        "enum": [1, 2, 3, 4, 5],  # Enum can also contain numbers
                    },
147
                },
148
                "required": ["type", "severity"],
149
150
151
152
153
            },
            "flags": {
                "type": "array",
                "items": {
                    "type": "string",
154
155
156
                    "enum": ["urgent", "blocked", "needs_review", "approved"],
                },
            },
157
        },
158
        "required": ["status", "priority", "category", "flags"],
159
160
161
    }


162
@pytest.fixture
163
def sample_structured_outputs_choices():
164
    return [
165
166
167
168
169
170
171
172
173
174
        "Python",
        "Java",
        "JavaScript",
        "C++",
        "C#",
        "PHP",
        "TypeScript",
        "Ruby",
        "Swift",
        "Kotlin",
175
176
177
178
179
    ]


@pytest.fixture
def sample_sql_statements():
180
    return """
181
182
183
184
185
186
start: select_statement
select_statement: "SELECT" column "from" table "where" condition
column: "col_1" | "col_2"
table: "table_1" | "table_2"
condition: column "=" number
number: "1" | "2"
187
"""
188
189
190


@pytest.fixture(scope="session")
191
192
def qwen3_lora_files():
    """Download Qwen3 LoRA files once per test session."""
193
    from huggingface_hub import snapshot_download
194

195
    return snapshot_download(repo_id="charent/self_cognition_Alice")
196
197
198
199
200
201


@pytest.fixture(scope="session")
def opt125_lora_files() -> str:
    """Download opt-125m LoRA files once per test session."""
    from huggingface_hub import snapshot_download
202
203

    return snapshot_download(repo_id="peft-internal-testing/opt-125m-dummy-lora")