test_trtllm_unit.py 2.49 KB
Newer Older
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
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

"""Unit tests for TRTLLM backend components."""

import re
import sys
from pathlib import Path

import pytest

from dynamo.trtllm.utils.trtllm_utils import cmd_line_args

# Get path relative to this test file
TEST_DIR = Path(__file__).parent.parent
JINJA_TEMPLATE_PATH = str(TEST_DIR / "serve" / "fixtures" / "custom_template.jinja")


pytestmark = [
    pytest.mark.unit,
    pytest.mark.trtllm_marker,
    pytest.mark.gpu_1,
]


def test_custom_jinja_template_invalid_path(monkeypatch):
    """Test that invalid file path raises FileNotFoundError."""
    invalid_path = "/nonexistent/path/to/template.jinja"
    monkeypatch.setattr(
        sys,
        "argv",
        [
            "dynamo.trtllm",
            "--model-path",
            "Qwen/Qwen3-0.6B",
            "--custom-jinja-template",
            invalid_path,
        ],
    )

    with pytest.raises(
        FileNotFoundError,
        match=re.escape(f"Custom Jinja template file not found: {invalid_path}"),
    ):
        cmd_line_args()


def test_custom_jinja_template_valid_path(monkeypatch):
    """Test that valid absolute path is stored correctly."""
    monkeypatch.setattr(
        sys,
        "argv",
        [
            "dynamo.trtllm",
            "--model-path",
            "Qwen/Qwen3-0.6B",
            "--custom-jinja-template",
            JINJA_TEMPLATE_PATH,
        ],
    )

    config = cmd_line_args()

    assert config.custom_jinja_template == JINJA_TEMPLATE_PATH, (
        f"Expected custom_jinja_template value to be {JINJA_TEMPLATE_PATH}, "
        f"got {config.custom_jinja_template}"
    )


def test_custom_jinja_template_env_var_expansion(monkeypatch):
    """Test that environment variables in paths are expanded by Python code."""
    jinja_dir = str(TEST_DIR / "serve" / "fixtures")
    monkeypatch.setenv("JINJA_DIR", jinja_dir)

    cli_path = "$JINJA_DIR/custom_template.jinja"
    monkeypatch.setattr(
        sys,
        "argv",
        [
            "dynamo.trtllm",
            "--model-path",
            "Qwen/Qwen3-0.6B",
            "--custom-jinja-template",
            cli_path,
        ],
    )

    config = cmd_line_args()

    assert "$JINJA_DIR" not in config.custom_jinja_template
    assert config.custom_jinja_template == JINJA_TEMPLATE_PATH, (
        f"Expected custom_jinja_template value to be {JINJA_TEMPLATE_PATH}, "
        f"got {config.custom_jinja_template}"
    )