摘要: 武将 英雄 魏国推荐:曹操,张辽、典韦,荀彧 吴国推荐:周瑜,孙尚香,太史慈 蜀国推荐:关羽,张飞、刘备,诸葛亮 装备 步兵:锻造16、精炼29,锻造高4、精炼高5 弓兵:锻造16、精炼29,锻造高4、精炼高5 骑兵:锻造16、精炼29,锻造高4、精炼高5 专武 7级:曹操、典韦 5级:荀彧 3级: 阅读全文
posted @ 2026-05-22 12:37 Fēngwèi 阅读(2) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- import sqlite3 import json import os from datetime import datetime DB_PATH = os.path.join(os.path.dirname(__file__), 'test_pla 阅读全文
posted @ 2026-05-21 14:11 Fēngwèi 阅读(6) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- import os class Config: """应用配置""" # 数据库配置 DB_PATH = os.path.join(os.path.dirname(__file__), 'test_platform.db') # SSH配置 SSH_T 阅读全文
posted @ 2026-05-21 14:10 Fēngwèi 阅读(6) 评论(0) 推荐(0)
摘要: #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ 服务器兼容性测试平台 支持多测试类型顺序测试 """ # 屏蔽警告 import warnings import logging warnings.filterwarnings("ignore", 阅读全文
posted @ 2026-05-21 14:10 Fēngwèi 阅读(6) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- import paramiko import socket import time import subprocess import os from config import Config def ssh_exec(ip, port, user, p 阅读全文
posted @ 2026-05-21 14:10 Fēngwèi 阅读(8) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>服务器兼容性测试平台</title> <link rel="icon" href="{{ url_for('static', filename='favi 阅读全文
posted @ 2026-05-21 14:10 Fēngwèi 阅读(7) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- import time import logging import threading import os import sys from datetime import datetime from config import Config from 阅读全文
posted @ 2026-05-21 14:09 Fēngwèi 阅读(7) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- import os import time import subprocess import logging import paramiko from utils.ssh_utils import ssh_exec, wait_for_ssh from 阅读全文
posted @ 2026-05-21 14:09 Fēngwèi 阅读(5) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- import re from utils.ssh_utils import ssh_exec def get_pcie_address(ip, port, user, password, nvme_disk): """ 根据 NVMe 盘符获取 PCI 阅读全文
posted @ 2026-05-21 14:08 Fēngwèi 阅读(4) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- import json import logging import time import threading from paho.mqtt import client as mqtt_client # MQTT 全局配置 MQTT_CONFIG = 阅读全文
posted @ 2026-05-21 14:07 Fēngwèi 阅读(6) 评论(0) 推荐(0)