update testcase for testsuite texlive-rsfs-doc

This commit is contained in:
2026-04-14 22:09:21 +08:00
parent 7b4b048e21
commit 8e19b01e52
2 changed files with 0 additions and 77 deletions

View File

@@ -10,10 +10,6 @@
"name": "test_texlive-rsfs-doc_function_install",
"desc": "Verify that the texlive-rsfs-doc package can be successfully installed using the system package manager."
},
{
"name": "test_texlive-rsfs-doc_function_check",
"desc": "Verify that the texlive-rsfs-doc package is correctly installed and its documentation files are present in the system."
},
{
"name": "test_texlive-rsfs-doc_function_usage",
"desc": "Verify that the RSFS font documentation can be accessed and contains expected content about font usage."

View File

@@ -1,73 +0,0 @@
#!/usr/bin/bash
# Copyright (c) 2024 ISCAS .ALL rights reserved.
# This program is licensed under Mulan PSL v2.
# You can use it according to the terms and conditions of the Mulan PSL v2.
# http://license.coscl.org.cn/MulanPSL2
# THIS PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
# EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
# MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
# See the Mulan PSL v2 for more details.
# #############################################
# @Author : honghua
# @Contact : honghua@iscas.ac.cn
# @Date : 2026-04-02
# @License : Mulan PSL v2
# @Desc : Verify that the texlive-rsfs-doc package is correctly installed and its documentation files are present in the system.
# ############################################
source "$OET_PATH/libs/locallibs/common_lib.sh"
function run_test() {
LOG_INFO "开始测试验证texlive-rsfs-doc软件包是否正确安装及其文档文件是否存在"
LOG_INFO "步骤1检查yum源中是否存在texlive-rsfs-doc软件包"
if ! dnf list available texlive-rsfs-doc &> /dev/null; then
LOG_ERROR "yum源中未找到texlive-rsfs-doc软件包"
exit 255
fi
LOG_INFO "步骤2检查系统是否已安装texlive-rsfs-doc"
if rpm -q texlive-rsfs-doc &> /dev/null; then
LOG_INFO "texlive-rsfs-doc已安装测试完成后将保持安装状态"
ALREADY_INSTALLED=1
else
LOG_INFO "texlive-rsfs-doc未安装将在测试中安装"
ALREADY_INSTALLED=0
fi
if [ $ALREADY_INSTALLED -eq 0 ]; then
LOG_INFO "步骤3安装texlive-rsfs-doc软件包"
dnf install -y texlive-rsfs-doc
CHECK_RESULT $? 0 0 "安装texlive-rsfs-doc失败"
fi
LOG_INFO "步骤4验证texlive-rsfs-doc软件包已安装"
rpm -q texlive-rsfs-doc
CHECK_RESULT $? 0 0 "texlive-rsfs-doc软件包未正确安装"
LOG_INFO "步骤5检查texlive-rsfs-doc文档文件是否存在"
DOC_FILES=$(rpm -ql texlive-rsfs-doc | grep -E "\.pdf$|\.html$|\.txt$" | head -5)
if [ -z "$DOC_FILES" ]; then
LOG_ERROR "未找到texlive-rsfs-doc的文档文件"
CHECK_RESULT 1 0 0 "文档文件不存在"
else
LOG_INFO "找到以下文档文件:"
echo "$DOC_FILES"
CHECK_RESULT 0 0 0 "文档文件检查成功"
fi
LOG_INFO "步骤6清理测试环境"
if [ $ALREADY_INSTALLED -eq 0 ]; then
LOG_INFO "卸载测试安装的texlive-rsfs-doc软件包"
dnf remove -y texlive-rsfs-doc
CHECK_RESULT $? 0 0 "卸载texlive-rsfs-doc失败"
else
LOG_INFO "测试前已安装texlive-rsfs-doc保持安装状态"
fi
LOG_INFO "测试完成"
}
main "$@"