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

zhuwenwen's avatar
zhuwenwen committed
4
import os
5
6
import json

7
8
9
10
import openai
import pytest
import pytest_asyncio

11
from vllm.multimodal.utils import encode_video_url, fetch_video
12
from vllm.platforms import current_platform
13

zhuwenwen's avatar
zhuwenwen committed
14
from ...utils import RemoteOpenAIServer, models_path_prefix, urls_port
15

zhuwenwen's avatar
zhuwenwen committed
16
MODEL_NAME = os.path.join(models_path_prefix, "llava-hf/llava-onevision-qwen2-0.5b-ov-hf")
17
18
MAXIMUM_VIDEOS = 4

zhuwenwen's avatar
zhuwenwen committed
19
20
21
22
23
24
25
# TEST_VIDEO_URLS = [
#     "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4",
#     "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4",
#     "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerBlazes.mp4",
#     "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerFun.mp4",
# ]

26
TEST_VIDEO_URLS = [
zhuwenwen's avatar
zhuwenwen committed
27
28
29
30
    f"http://localhost:{urls_port}/BigBuckBunny.mp4",
    f"http://localhost:{urls_port}/ElephantsDream.mp4",
    f"http://localhost:{urls_port}/ForBiggerBlazes.mp4",
    f"http://localhost:{urls_port}/ForBiggerFun.mp4",
31
32
33
34
35
36
]


@pytest.fixture(scope="module")
def server():
    args = [
37
        "--runner",
38
39
40
41
42
43
44
45
        "generate",
        "--max-model-len",
        "32768",
        "--max-num-seqs",
        "2",
        "--enforce-eager",
        "--trust-remote-code",
        "--limit-mm-per-prompt",
46
        json.dumps({"video": MAXIMUM_VIDEOS}),
47
48
    ]

49
50
51
52
53
54
55
56
57
58
    # ROCm: Increase timeouts to handle potential network delays and slower
    # video processing when downloading multiple videos from external sources
    env_overrides = {}
    if current_platform.is_rocm():
        env_overrides = {
            "VLLM_VIDEO_FETCH_TIMEOUT": "120",
            "VLLM_ENGINE_ITERATION_TIMEOUT_S": "300",
        }

    with RemoteOpenAIServer(MODEL_NAME, args, env_dict=env_overrides) as remote_server:
59
60
61
62
63
64
65
66
67
68
        yield remote_server


@pytest_asyncio.fixture
async def client(server):
    async with server.get_async_client() as async_client:
        yield async_client


@pytest.fixture(scope="session")
69
def url_encoded_video() -> dict[str, str]:
70
    return {
71
        video_url: encode_video_url(fetch_video(video_url)[0])
72
73
74
75
        for video_url in TEST_VIDEO_URLS
    }


76
77
78
def dummy_messages_from_video_url(
    video_urls: str | list[str],
    content_text: str = "What's in this video?",
79
):
80
81
82
83
    if isinstance(video_urls, str):
        video_urls = [video_urls]

    return [
84
85
86
        {
            "role": "user",
            "content": [
87
88
89
90
91
                *(
                    {"type": "video_url", "video_url": {"url": video_url}}
                    for video_url in video_urls
                ),
                {"type": "text", "text": content_text},
92
93
94
            ],
        }
    ]
95

96

97
98
99
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("video_url", TEST_VIDEO_URLS)
100
101
102
103
async def test_single_chat_session_video(
    client: openai.AsyncOpenAI, model_name: str, video_url: str
):
    messages = dummy_messages_from_video_url(video_url)
104
105
106
107
108
109
110

    # test single completion
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        max_completion_tokens=10,
        logprobs=True,
111
        temperature=0.0,
112
113
        top_logprobs=5,
    )
114
115
116
117
118
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
    assert chat_completion.usage == openai.types.CompletionUsage(
119
120
        completion_tokens=10, prompt_tokens=6287, total_tokens=6297
    )
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138

    message = choice.message
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 10
    assert message.role == "assistant"
    messages.append({"role": "assistant", "content": message.content})

    # test multi-turn dialogue
    messages.append({"role": "user", "content": "express your result in json"})
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        max_completion_tokens=10,
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


139
140
141
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("video_url", TEST_VIDEO_URLS)
142
143
144
145
146
147
148
149
150
151
152
153
async def test_error_on_invalid_video_url_type(
    client: openai.AsyncOpenAI, model_name: str, video_url: str
):
    messages = [
        {
            "role": "user",
            "content": [
                {"type": "video_url", "video_url": video_url},
                {"type": "text", "text": "What's in this video?"},
            ],
        }
    ]
154
155
156

    # video_url should be a dict {"url": "some url"}, not directly a string
    with pytest.raises(openai.BadRequestError):
157
158
159
160
161
162
        _ = await client.chat.completions.create(
            model=model_name,
            messages=messages,
            max_completion_tokens=10,
            temperature=0.0,
        )
163
164


165
166
167
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("video_url", TEST_VIDEO_URLS)
168
169
170
async def test_single_chat_session_video_beamsearch(
    client: openai.AsyncOpenAI, model_name: str, video_url: str
):
171
    messages = dummy_messages_from_video_url(video_url)
172
173
174
175
176
177
178
179

    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        n=2,
        max_completion_tokens=10,
        logprobs=True,
        top_logprobs=5,
180
181
        extra_body=dict(use_beam_search=True),
    )
182
    assert len(chat_completion.choices) == 2
183
184
185
186
    assert (
        chat_completion.choices[0].message.content
        != chat_completion.choices[1].message.content
    )
187
188
189
190
191
192


@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("video_url", TEST_VIDEO_URLS)
async def test_single_chat_session_video_base64encoded(
193
194
195
    client: openai.AsyncOpenAI,
    model_name: str,
    video_url: str,
196
    url_encoded_video: dict[str, str],
197
):
198
    messages = dummy_messages_from_video_url(url_encoded_video[video_url])
199
200
201
202
203
204
205

    # test single completion
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        max_completion_tokens=10,
        logprobs=True,
206
        temperature=0.0,
207
208
        top_logprobs=5,
    )
209
210
211
212
213
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
    assert chat_completion.usage == openai.types.CompletionUsage(
214
215
        completion_tokens=10, prompt_tokens=6287, total_tokens=6297
    )
216
217
218
219
220
221
222
223
224
225
226
227
228

    message = choice.message
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 10
    assert message.role == "assistant"
    messages.append({"role": "assistant", "content": message.content})

    # test multi-turn dialogue
    messages.append({"role": "user", "content": "express your result in json"})
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        max_completion_tokens=10,
229
        temperature=0.0,
230
231
232
233
234
235
236
237
238
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("video_url", TEST_VIDEO_URLS)
async def test_single_chat_session_video_base64encoded_beamsearch(
239
240
241
    client: openai.AsyncOpenAI,
    model_name: str,
    video_url: str,
242
    url_encoded_video: dict[str, str],
243
):
244
    messages = dummy_messages_from_video_url(url_encoded_video[video_url])
245

246
247
248
249
250
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        n=2,
        max_completion_tokens=10,
251
252
        extra_body=dict(use_beam_search=True),
    )
253
    assert len(chat_completion.choices) == 2
254
255
256
257
    assert (
        chat_completion.choices[0].message.content
        != chat_completion.choices[1].message.content
    )
258
259
260
261
262


@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("video_url", TEST_VIDEO_URLS)
263
264
265
async def test_chat_streaming_video(
    client: openai.AsyncOpenAI, model_name: str, video_url: str
):
266
    messages = dummy_messages_from_video_url(video_url)
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285

    # test single completion
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        max_completion_tokens=10,
        temperature=0.0,
    )
    output = chat_completion.choices[0].message.content
    stop_reason = chat_completion.choices[0].finish_reason

    # test streaming
    stream = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        max_completion_tokens=10,
        temperature=0.0,
        stream=True,
    )
286
    chunks: list[str] = []
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
    finish_reason_count = 0
    async for chunk in stream:
        delta = chunk.choices[0].delta
        if delta.role:
            assert delta.role == "assistant"
        if delta.content:
            chunks.append(delta.content)
        if chunk.choices[0].finish_reason is not None:
            finish_reason_count += 1
    # finish reason should only return in last block
    assert finish_reason_count == 1
    assert chunk.choices[0].finish_reason == stop_reason
    assert delta.content
    assert "".join(chunks) == output


@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize(
306
307
    "video_urls", [TEST_VIDEO_URLS[:i] for i in range(2, len(TEST_VIDEO_URLS))]
)
308
309
310
311
312
@pytest.mark.flaky(
    reruns=2,
    reruns_delay=5,
    condition=current_platform.is_rocm(),
)
313
314
315
async def test_multi_video_input(
    client: openai.AsyncOpenAI, model_name: str, video_urls: list[str]
):
316
    messages = dummy_messages_from_video_url(video_urls)
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

    if len(video_urls) > MAXIMUM_VIDEOS:
        with pytest.raises(openai.BadRequestError):  # test multi-video input
            await client.chat.completions.create(
                model=model_name,
                messages=messages,
                max_completion_tokens=10,
                temperature=0.0,
            )

        # the server should still work afterwards
        completion = await client.completions.create(
            model=model_name,
            prompt=[0, 0, 0, 0, 0],
            max_tokens=5,
            temperature=0.0,
        )
        completion = completion.choices[0].text
        assert completion is not None and len(completion) >= 0
    else:
        chat_completion = await client.chat.completions.create(
            model=model_name,
            messages=messages,
            max_completion_tokens=10,
            temperature=0.0,
        )
        message = chat_completion.choices[0].message
        assert message.content is not None and len(message.content) >= 0