mirror of
https://github.com/aaPanel/aaPanel.git
synced 2026-08-17 21:25:47 +02:00
Since version 7.7.0, we recommend yours update python to 3.12. [+] Using nginx technology to load static files improves access speed [+] Refactor homepage, website, FTP, and database using vue3 [+] Table loading changed to skeleton screen [+] Add Website statistics-v2 professional plug-in [+] Add Home page - top 5 resource occupancy [+] Add protection for Files management (requires Tamper-proof for Enterprise 3.7) [+] Website, FTP, Databases page add program status [+] Add FTP log analysis (only supports Centos) [+] Add password-free login to phpMyAdmin [+] Add Proxy Project in Website (Supported when web service uses Nginx) [+] Add WP Toolkit (Pro version only) [+] Redesigned Docker module [+] Add WP Toolkit Protection [+] Add WP Toolkit Backup and Restore [+] Add WP Toolkit Migrated [+] Add WP Toolkit Clone site (supports new domain and subdomain) [+] Add WP Toolkit Create site from backup of other panel [+] Add WP Toolkit support for Cron automatic backup (only save Local disk) [+] Add WP Toolkit operation log [+] Add Integrity check for WP Toolkit [+] Add WP Toolkit plug-in management and themes management [*] Optimize phpMyAdmin formula access method [*] Optimize Home page PHP display problem [*] Optimize jump to the login interface after the login expires [*] Optimize automatic renewal of SSL at some times [*] Optimize Let's Encrypt to increase application success rate [-] Fix Logs Audit cannot be opened [-] Fix apache URL rewrite issue [-] Fix phpmyadmin installation problem [-] Fix the problem that some servers cannot install software [-] Fix upload file error [-] Fix left menu hiding problem [-] Fix aaPanel Mobile QR code display problem [-] Fix problem that third-party plug-ins are not displayed in the App Store [-] Fix issue where the menu bar is blank when opening new tabs [-] Fixed panel not being accessible in some cases [-] Fix the issue where Curl warning caused the inability to apply for SSL [-] Fix Quota issues for Website, FTP, Databases [-] Fix file interface display problem on mobile terminal
96 lines
3.5 KiB
Python
96 lines
3.5 KiB
Python
import os
|
|
import sys
|
|
|
|
if "/www/server/panel" not in sys.path:
|
|
sys.path.insert(0, "/www/server/panel")
|
|
|
|
from mod.test.test_web_conf import WebBaseTestcase, PREFIX, SITE_PATH, SUB_SITE_PATH
|
|
from mod.base.web_conf import DirTool
|
|
from mod.base.web_conf.util import DB, write_file
|
|
|
|
|
|
class TestDirTool(WebBaseTestcase):
|
|
dir_tool = DirTool(PREFIX)
|
|
|
|
def reset_site_config(self) -> None:
|
|
super(TestDirTool, self).reset_site_config()
|
|
|
|
if "/www/server/panel/class" not in sys.path:
|
|
sys.path.insert(0, "/www/server/panel/class")
|
|
import public
|
|
|
|
if os.path.exists(SUB_SITE_PATH + "/.user.ini"):
|
|
public.ExecShell("chattr -i " + SUB_SITE_PATH + "/.user.ini")
|
|
os.remove(SUB_SITE_PATH + "/.user.ini")
|
|
|
|
if not os.path.exists(SITE_PATH + "/.user.ini"):
|
|
write_file(SITE_PATH + "/.user.ini", "open_basedir=/www/wwwroot/aaa.test.com/:/tmp/")
|
|
|
|
site_info = DB("sites").where("name=?", (self.site_name,)).find()
|
|
DB("sites").where("id=?", (site_info["id"],)).setField('path', SITE_PATH)
|
|
|
|
def test_modify_site_path(self):
|
|
res = self.dir_tool.modify_site_path(self.site_name, SITE_PATH, SUB_SITE_PATH)
|
|
self.assertIsNone(res, "修改路径失败")
|
|
self.assertTrue(os.path.exists(SUB_SITE_PATH + "/.user.ini"), ".user.ini错误")
|
|
self.assertEqual(DB("sites").where("name=?", (self.site_name,)).find()["path"], SUB_SITE_PATH, "数据库错误")
|
|
self.reset_site_config()
|
|
|
|
def test_modify_site_run_path(self):
|
|
self.dir_tool.modify_site_run_path(self.site_name, SITE_PATH, "/test_run")
|
|
self.assertEqual(self.dir_tool.get_site_run_path(self.site_name), SUB_SITE_PATH, "修改运行目录失败")
|
|
self.assertTrue(os.path.exists(SUB_SITE_PATH + "/.user.ini"), ".user.ini错误")
|
|
self.reset_site_config()
|
|
|
|
def test_index_conf(self):
|
|
self.assertCountEqual(self.dir_tool.get_index_conf(self.site_name),
|
|
["index.php", "index.html", "index.htm", "default.php", "default.html", "default.htm"],
|
|
"获取index信息错误")
|
|
self.dir_tool.set_index_conf(self.site_name, "index.php", "default.php", "default.html", "default.htm")
|
|
self.assertCountEqual(self.dir_tool.get_index_conf(self.site_name),
|
|
["index.php", "default.php", "default.html", "default.htm"],
|
|
"设置index信息错误")
|
|
|
|
self.reset_site_config()
|
|
|
|
def setUp(self) -> None:
|
|
self.reset_site_config()
|
|
|
|
def runTest(self):
|
|
# 测试改变path
|
|
# self.change_env_to_nginx()
|
|
# self.test_modify_site_path()
|
|
# self.check_web_server_config()
|
|
#
|
|
# self.change_env_to_apache()
|
|
# self.test_modify_site_path()
|
|
# self.check_web_server_config()
|
|
|
|
# 测试改变run_path
|
|
# self.change_env_to_nginx()
|
|
# self.test_modify_site_run_path()
|
|
# self.check_web_server_config()
|
|
#
|
|
# self.change_env_to_apache()
|
|
# self.test_modify_site_run_path()
|
|
# self.check_web_server_config()
|
|
|
|
self.change_env_to_nginx()
|
|
self.test_index_conf()
|
|
self.check_web_server_config()
|
|
|
|
self.change_env_to_apache()
|
|
self.test_index_conf()
|
|
self.check_web_server_config()
|
|
|
|
def tearDown(self):
|
|
self.reset_site_config()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
import unittest
|
|
|
|
s = unittest.TestSuite()
|
|
s.addTest(TestDirTool())
|
|
unittest.TextTestRunner().run(s)
|