mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-14 06:27:45 +08:00
Signed-off-by: Frank Di Natale <3429989+FrankD412@users.noreply.github.com> Signed-off-by: Venky Ganesh <23023424+venkywonka@users.noreply.github.com> Co-authored-by: Frank Di Natale <3429989+FrankD412@users.noreply.github.com>
67 lines
2.4 KiB
Python
67 lines
2.4 KiB
Python
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import os
|
|
import sys
|
|
import tempfile
|
|
import unittest
|
|
|
|
# Add scripts directory to path
|
|
REPO_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "../../.."))
|
|
SCRIPTS_DIR = os.path.join(REPO_ROOT, "scripts")
|
|
sys.path.insert(0, SCRIPTS_DIR)
|
|
|
|
from generate_config_table import generate_rst # noqa: E402
|
|
|
|
|
|
class TestConfigTableSync(unittest.TestCase):
|
|
def test_config_table_sync(self):
|
|
"""Test that the config_table.rst file is synchronized with the lookup.yaml database.
|
|
|
|
Ensures that the RST file is up-to-date with the YAML database.
|
|
"""
|
|
if generate_rst is None:
|
|
self.skipTest("generate_config_table not available")
|
|
|
|
# Define paths
|
|
yaml_path = os.path.join(REPO_ROOT, "examples/configs/database/lookup.yaml")
|
|
rst_path = os.path.join(REPO_ROOT, "docs/source/deployment-guide/config_table.rst")
|
|
|
|
# Ensure files exist
|
|
self.assertTrue(os.path.exists(yaml_path), f"YAML file not found: {yaml_path}")
|
|
self.assertTrue(os.path.exists(rst_path), f"RST file not found: {rst_path}")
|
|
|
|
# Read existing RST content
|
|
with open(rst_path, "r") as f:
|
|
existing_content = f.read()
|
|
|
|
# Generate new RST content
|
|
with tempfile.NamedTemporaryFile(mode="w+", delete=True) as tmp:
|
|
generate_rst(yaml_path, output_file=tmp.name)
|
|
tmp.seek(0)
|
|
generated_content = tmp.read()
|
|
|
|
# Compare content
|
|
self.assertEqual(
|
|
existing_content.strip(),
|
|
generated_content.strip(),
|
|
"config_table.rst is not synchronized with lookup.yaml. "
|
|
"Please run 'python3 scripts/generate_config_table.py' from the repo root to update it.",
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|