diff --git a/nodeloc_vps_autotest_speed.sh b/nodeloc_vps_autotest_speed.sh new file mode 100644 index 0000000..ea941d8 --- /dev/null +++ b/nodeloc_vps_autotest_speed.sh @@ -0,0 +1,180 @@ +#!/bin/bash + +# 定义版本 +VERSION="1.0.0" + +# 定义颜色 +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +NC='\033[0m' # No Color + +# 检查 root 权限并获取 sudo 权限 +if [ "$(id -u)" != "0" ]; then + echo "此脚本需要 root 权限运行。" + if ! sudo -v; then + echo "无法获取 sudo 权限,退出脚本。" + exit 1 + fi + echo "已获取 sudo 权限。" +fi + +# 检查并安装依赖 +install_dependencies() { + echo -e "${YELLOW}正在检查并安装必要的依赖项...${NC}" + + # 更新包列表 + if ! sudo apt-get update; then + echo -e "${RED}无法更新包列表。请检查您的网络连接和系统设置。${NC}" + exit 1 + fi + + # 安装依赖 + local dependencies=( + "curl" + "wget" + "xclip" + "iperf3" + "mtr" + "traceroute" + "speedtest-cli" + ) + + for dep in "${dependencies[@]}"; do + if ! command -v "$dep" &> /dev/null; then + echo -e "${YELLOW}正在安装 $dep...${NC}" + if ! sudo apt-get install -y "$dep"; then + echo -e "${RED}无法安装 $dep。请手动安装此依赖项。${NC}" + fi + else + echo -e "${GREEN}$dep 已安装。${NC}" + fi + done + + echo -e "${GREEN}依赖项检查和安装完成。${NC}" + clear +} + +# 统计使用次数 +sum_run_times() { + local COUNT + COUNT=$(wget --no-check-certificate -qO- --tries=2 --timeout=2 "https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https://github.com/everett7623/nodeloc_vps_test/blob/main/nodeloc_vps_autotest.sh" 2>&1 | grep -m1 -oE "[0-9]+[ ]+/[ ]+[0-9]+") + if [[ -n "$COUNT" ]]; then + daily_count=$(cut -d " " -f1 <<< "$COUNT") + total_count=$(cut -d " " -f3 <<< "$COUNT") + else + echo "Failed to fetch usage counts." + daily_count=0 + total_count=0 + fi +} + +# 调用函数获取统计数据 +sum_run_times + +# 输出欢迎信息 +show_welcome() { + echo "" + echo -e "${RED}---------------------------------By'Jensfrank---------------------------------${NC}" + echo "" + echo "Nodeloc_VPS_自动脚本测试 $VERSION" + echo "GitHub地址: https://github.com/everett7623/nodeloc_vps_test" + echo "VPS选购: https://www.nodeloc.com/vps" + echo "" + echo -e "${YELLOW}# # ##### #### ###### # #### #### # # #### ####${NC}" + echo -e "${YELLOW}## # # # # # # # # # # # # # # # # #${NC}" + echo -e "${YELLOW}# # # # # # # ##### # # # # # # #### ####${NC}" + echo -e "${YELLOW}# # # # # # # # # # # # # # # #${NC}" + echo -e "${YELLOW}# # # # # # # # # # # # # # # # # #${NC}" + echo -e "${YELLOW}# ## ##### #### ###### ###### #### #### #### # ####${NC}" + echo "" + echo "支持Ubuntu/Debian" + echo "" + echo -e "今日运行次数: ${RED}$daily_count${NC} 次,累计运行次数: ${RED}$total_count${NC} 次" + echo "" + echo -e "${RED}---------------------------------By'Jensfrank---------------------------------${NC}" + echo "" + echo "一键脚本将测试以下项目:" + echo "1. Yabs" + echo "2. 融合怪" + echo "3. IP质量" + echo "4. 流媒体解锁" + echo "5. 响应测试" + echo "6. 多线程测试" + echo "7. 单线程测试" + echo "8. 回程路由" + echo "" + echo -e "${RED}按任意键开始测试...${NC}" + read -n 1 -s + clear +} + +# 定义一个数组来存储每个命令的输出 +declare -a test_results + +# 去除三网测速板块板块ANSI转义码 +speedtest_process_output() { + local input="$1" + # 使用更全面的 sed 命令去除所有 ANSI 转义码 + echo "$input" | sed -E 's/\x1b\[[0-9;]*[a-zA-Z]//g' +} + +# 在每个命令执行后保存结果 +run_and_capture() { + local command_output + command_output=$(eval "$1" 2>&1) + test_results+=("$command_output") + echo "$command_output" +} + +# 运行所有测试 +run_all_tests() { + echo -e "${RED}开始测试,测试时间较长,请耐心等待...${NC}" + + # 三网测速 + echo -e "运行${YELLOW}三网测速(多线程/单线程)...${NC}" + speedtest_multi_result=$(run_and_capture "echo '1' | bash <(curl -sL bash.icu/speedtest)") + speedtest_single_result=$(run_and_capture "echo '2' | bash <(curl -sL bash.icu/speedtest)") + + # 格式化结果 + echo -e "${YELLOW}此报告由Nodeloc_VPS_自动脚本测试生成...${NC}" + format_results +} + +# 格式化结果为 Markdown +format_results() { + # 处理三网测速结果 + local processed_speedtest_multi_result + local processed_speedtest_single_result + processed_speedtest_multi_result=$(speedtest_process_output "$speedtest_multi_result") + processed_speedtest_single_result=$(speedtest_process_output "$speedtest_single_result") + + result="[tabs] +[tab=\"多线程测速\"] +\`\`\` +$processed_speedtest_multi_result +\`\`\` +[/tab] +[tab=\"单线程测速\"] +\`\`\` +$processed_speedtest_single_result +\`\`\` +[/tab] +[/tabs]" + + echo "$result" > results.md + echo -e "${GREEN}结果已保存到 results.md 文件中。${NC}" +} + +# 主函数 +main() { + install_dependencies + show_welcome + run_all_tests + echo -e "${GREEN}所有测试完成。点击屏幕任意位置复制结果。${NC}" + read -n 1 -s + echo "最终结果文件内容:" >&2 + cat results.md >&2 +} + +main diff --git a/nodeloc_vps_autotest_trace.sh b/nodeloc_vps_autotest_trace.sh new file mode 100644 index 0000000..214cd36 --- /dev/null +++ b/nodeloc_vps_autotest_trace.sh @@ -0,0 +1,172 @@ +#!/bin/bash + +# 定义版本 +VERSION="1.0.0" + +# 定义颜色 +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +NC='\033[0m' # No Color + +# 检查 root 权限并获取 sudo 权限 +if [ "$(id -u)" != "0" ]; then + echo "此脚本需要 root 权限运行。" + if ! sudo -v; then + echo "无法获取 sudo 权限,退出脚本。" + exit 1 + fi + echo "已获取 sudo 权限。" +fi + +# 检查并安装依赖 +install_dependencies() { + echo -e "${YELLOW}正在检查并安装必要的依赖项...${NC}" + + # 更新包列表 + if ! sudo apt-get update; then + echo -e "${RED}无法更新包列表。请检查您的网络连接和系统设置。${NC}" + exit 1 + fi + + # 安装依赖 + local dependencies=( + "curl" + "wget" + "xclip" + "iperf3" + "mtr" + "traceroute" + "speedtest-cli" + ) + + for dep in "${dependencies[@]}"; do + if ! command -v "$dep" &> /dev/null; then + echo -e "${YELLOW}正在安装 $dep...${NC}" + if ! sudo apt-get install -y "$dep"; then + echo -e "${RED}无法安装 $dep。请手动安装此依赖项。${NC}" + fi + else + echo -e "${GREEN}$dep 已安装。${NC}" + fi + done + + echo -e "${GREEN}依赖项检查和安装完成。${NC}" + clear +} + +# 统计使用次数 +sum_run_times() { + local COUNT + COUNT=$(wget --no-check-certificate -qO- --tries=2 --timeout=2 "https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https://github.com/everett7623/nodeloc_vps_test/blob/main/nodeloc_vps_autotest.sh" 2>&1 | grep -m1 -oE "[0-9]+[ ]+/[ ]+[0-9]+") + if [[ -n "$COUNT" ]]; then + daily_count=$(cut -d " " -f1 <<< "$COUNT") + total_count=$(cut -d " " -f3 <<< "$COUNT") + else + echo "Failed to fetch usage counts." + daily_count=0 + total_count=0 + fi +} + +# 调用函数获取统计数据 +sum_run_times + +# 输出欢迎信息 +show_welcome() { + echo "" + echo -e "${RED}---------------------------------By'Jensfrank---------------------------------${NC}" + echo "" + echo "Nodeloc_VPS_自动脚本测试 $VERSION" + echo "GitHub地址: https://github.com/everett7623/nodeloc_vps_test" + echo "VPS选购: https://www.nodeloc.com/vps" + echo "" + echo -e "${YELLOW}# # ##### #### ###### # #### #### # # #### ####${NC}" + echo -e "${YELLOW}## # # # # # # # # # # # # # # # # #${NC}" + echo -e "${YELLOW}# # # # # # # ##### # # # # # # #### ####${NC}" + echo -e "${YELLOW}# # # # # # # # # # # # # # # #${NC}" + echo -e "${YELLOW}# # # # # # # # # # # # # # # # # #${NC}" + echo -e "${YELLOW}# ## ##### #### ###### ###### #### #### #### # ####${NC}" + echo "" + echo "支持Ubuntu/Debian" + echo "" + echo -e "今日运行次数: ${RED}$daily_count${NC} 次,累计运行次数: ${RED}$total_count${NC} 次" + echo "" + echo -e "${RED}---------------------------------By'Jensfrank---------------------------------${NC}" + echo "" + echo "一键脚本将测试以下项目:" + echo "1. Yabs" + echo "2. 融合怪" + echo "3. IP质量" + echo "4. 流媒体解锁" + echo "5. 响应测试" + echo "6. 多线程测试" + echo "7. 单线程测试" + echo "8. 回程路由" + echo "" + echo -e "${RED}按任意键开始测试...${NC}" + read -n 1 -s + clear +} + +# 定义一个数组来存储每个命令的输出 +declare -a test_results + +# 去除融合怪板块板块ANSI转义码 +autotrace_process_output() { + local input="$1" + # 使用更全面的 sed 命令去除所有 ANSI 转义码 + echo "$input" | sed -E 's/\x1b\[[0-9;]*[a-zA-Z]//g' +} + +# 在每个命令执行后保存结果 +run_and_capture() { + local command_output + command_output=$(eval "$1" 2>&1) + test_results+=("$command_output") + echo "$command_output" +} + +# 运行所有测试 +run_all_tests() { + echo -e "${RED}开始测试,测试时间较长,请耐心等待...${NC}" + + # AutoTrace三网回程路由 + echo -e "运行${YELLOW}AutoTrace三网回程路由...${NC}" + autotrace_result=$(run_and_capture "wget -N --no-check-certificate https://raw.githubusercontent.com/Chennhaoo/Shell_Bash/master/AutoTrace.sh && chmod +x AutoTrace.sh && bash AutoTrace.sh") + + # 格式化结果 + echo -e "${YELLOW}此报告由Nodeloc_VPS_自动脚本测试生成...${NC}" + format_results +} + +# 格式化结果为 Markdown +format_results() { + # 处理回程路由结果 + local processed_autotrace_result + processed_autotrace_result=$(autotrace_process_output "$autotrace_result") + + result="[tabs] +[tab=\"回程路由\"] +\`\`\` +$processed_autotrace_result +\`\`\` +[/tab] +[/tabs]" + + echo "$result" > results.md + echo -e "${GREEN}结果已保存到 results.md 文件中。${NC}" +} + +# 主函数 +main() { + install_dependencies + show_welcome + run_all_tests + echo -e "${GREEN}所有测试完成。点击屏幕任意位置复制结果。${NC}" + read -n 1 -s + echo "最终结果文件内容:" >&2 + cat results.md >&2 +} + +main