|
"""
|
|
وحدة اختبار واجهة المستخدم لنظام إدارة المناقصات - Hybrid Face
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
import logging
|
|
import unittest
|
|
import tkinter as tk
|
|
import customtkinter as ctk
|
|
from pathlib import Path
|
|
|
|
|
|
logging.basicConfig(
|
|
level=logging.INFO,
|
|
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
|
|
)
|
|
logger = logging.getLogger('test_ui')
|
|
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
|
from styling.theme import AppTheme
|
|
from styling.icons import IconGenerator
|
|
from styling.charts import ChartGenerator
|
|
from config import AppConfig
|
|
|
|
class TestUIComponents(unittest.TestCase):
|
|
"""اختبار مكونات واجهة المستخدم"""
|
|
|
|
def setUp(self):
|
|
"""إعداد بيئة الاختبار"""
|
|
self.root = ctk.CTk()
|
|
self.root.withdraw()
|
|
self.theme = AppTheme()
|
|
|
|
def tearDown(self):
|
|
"""تنظيف بيئة الاختبار"""
|
|
self.root.destroy()
|
|
|
|
def test_styled_frame(self):
|
|
"""اختبار الإطار المنسق"""
|
|
frame = self.theme.create_styled_frame(self.root)
|
|
self.assertIsNotNone(frame)
|
|
self.assertEqual(frame.cget("fg_color"), self.theme.get_color("card_bg_color"))
|
|
self.assertEqual(frame.cget("corner_radius"), self.theme.get_size("border_radius"))
|
|
|
|
def test_styled_button(self):
|
|
"""اختبار الزر المنسق"""
|
|
button = self.theme.create_styled_button(self.root, "زر اختبار")
|
|
self.assertIsNotNone(button)
|
|
self.assertEqual(button.cget("text"), "زر اختبار")
|
|
self.assertEqual(button.cget("fg_color"), self.theme.get_color("button_bg_color"))
|
|
self.assertEqual(button.cget("text_color"), self.theme.get_color("button_fg_color"))
|
|
|
|
def test_styled_label(self):
|
|
"""اختبار التسمية المنسقة"""
|
|
label = self.theme.create_styled_label(self.root, "تسمية اختبار")
|
|
self.assertIsNotNone(label)
|
|
self.assertEqual(label.cget("text"), "تسمية اختبار")
|
|
self.assertEqual(label.cget("text_color"), self.theme.get_color("fg_color"))
|
|
|
|
def test_styled_entry(self):
|
|
"""اختبار حقل الإدخال المنسق"""
|
|
entry = self.theme.create_styled_entry(self.root, "نص توضيحي")
|
|
self.assertIsNotNone(entry)
|
|
self.assertEqual(entry.cget("placeholder_text"), "نص توضيحي")
|
|
self.assertEqual(entry.cget("fg_color"), self.theme.get_color("input_bg_color"))
|
|
self.assertEqual(entry.cget("text_color"), self.theme.get_color("input_fg_color"))
|
|
|
|
def test_styled_combobox(self):
|
|
"""اختبار القائمة المنسدلة المنسقة"""
|
|
values = ["الخيار الأول", "الخيار الثاني", "الخيار الثالث"]
|
|
combobox = self.theme.create_styled_combobox(self.root, values)
|
|
self.assertIsNotNone(combobox)
|
|
self.assertEqual(combobox.cget("values"), values)
|
|
self.assertEqual(combobox.cget("fg_color"), self.theme.get_color("input_bg_color"))
|
|
self.assertEqual(combobox.cget("text_color"), self.theme.get_color("input_fg_color"))
|
|
|
|
def test_styled_checkbox(self):
|
|
"""اختبار خانة الاختيار المنسقة"""
|
|
checkbox = self.theme.create_styled_checkbox(self.root, "خانة اختبار")
|
|
self.assertIsNotNone(checkbox)
|
|
self.assertEqual(checkbox.cget("text"), "خانة اختبار")
|
|
self.assertEqual(checkbox.cget("fg_color"), self.theme.get_color("button_bg_color"))
|
|
self.assertEqual(checkbox.cget("text_color"), self.theme.get_color("fg_color"))
|
|
|
|
def test_styled_radio_button(self):
|
|
"""اختبار زر الراديو المنسق"""
|
|
var = ctk.StringVar(value="1")
|
|
radio_button = self.theme.create_styled_radio_button(self.root, "زر راديو اختبار", var, "1")
|
|
self.assertIsNotNone(radio_button)
|
|
self.assertEqual(radio_button.cget("text"), "زر راديو اختبار")
|
|
self.assertEqual(radio_button.cget("fg_color"), self.theme.get_color("button_bg_color"))
|
|
self.assertEqual(radio_button.cget("text_color"), self.theme.get_color("fg_color"))
|
|
|
|
def test_styled_switch(self):
|
|
"""اختبار مفتاح التبديل المنسق"""
|
|
switch = self.theme.create_styled_switch(self.root, "مفتاح اختبار")
|
|
self.assertIsNotNone(switch)
|
|
self.assertEqual(switch.cget("text"), "مفتاح اختبار")
|
|
self.assertEqual(switch.cget("progress_color"), self.theme.get_color("button_bg_color"))
|
|
self.assertEqual(switch.cget("text_color"), self.theme.get_color("fg_color"))
|
|
|
|
def test_styled_slider(self):
|
|
"""اختبار شريط التمرير المنسق"""
|
|
slider = self.theme.create_styled_slider(self.root)
|
|
self.assertIsNotNone(slider)
|
|
self.assertEqual(slider.cget("fg_color"), self.theme.get_color("input_border_color"))
|
|
self.assertEqual(slider.cget("progress_color"), self.theme.get_color("button_bg_color"))
|
|
|
|
def test_styled_progressbar(self):
|
|
"""اختبار شريط التقدم المنسق"""
|
|
progressbar = self.theme.create_styled_progressbar(self.root)
|
|
self.assertIsNotNone(progressbar)
|
|
self.assertEqual(progressbar.cget("fg_color"), self.theme.get_color("input_border_color"))
|
|
self.assertEqual(progressbar.cget("progress_color"), self.theme.get_color("button_bg_color"))
|
|
|
|
def test_styled_tabview(self):
|
|
"""اختبار عرض التبويب المنسق"""
|
|
tabview = self.theme.create_styled_tabview(self.root)
|
|
self.assertIsNotNone(tabview)
|
|
self.assertEqual(tabview.cget("fg_color"), self.theme.get_color("card_bg_color"))
|
|
|
|
def test_styled_scrollable_frame(self):
|
|
"""اختبار الإطار القابل للتمرير المنسق"""
|
|
scrollable_frame = self.theme.create_styled_scrollable_frame(self.root)
|
|
self.assertIsNotNone(scrollable_frame)
|
|
self.assertEqual(scrollable_frame.cget("fg_color"), "transparent")
|
|
|
|
def test_styled_textbox(self):
|
|
"""اختبار مربع النص المنسق"""
|
|
textbox = self.theme.create_styled_textbox(self.root)
|
|
self.assertIsNotNone(textbox)
|
|
self.assertEqual(textbox.cget("fg_color"), self.theme.get_color("input_bg_color"))
|
|
self.assertEqual(textbox.cget("text_color"), self.theme.get_color("input_fg_color"))
|
|
|
|
def test_styled_card(self):
|
|
"""اختبار البطاقة المنسقة"""
|
|
card, content_frame = self.theme.create_styled_card(self.root, "بطاقة اختبار")
|
|
self.assertIsNotNone(card)
|
|
self.assertIsNotNone(content_frame)
|
|
self.assertEqual(card.cget("fg_color"), self.theme.get_color("card_bg_color"))
|
|
|
|
def test_styled_data_table(self):
|
|
"""اختبار جدول البيانات المنسق"""
|
|
columns = ["العمود الأول", "العمود الثاني", "العمود الثالث"]
|
|
data = [
|
|
["بيانات 1-1", "بيانات 1-2", "بيانات 1-3"],
|
|
["بيانات 2-1", "بيانات 2-2", "بيانات 2-3"]
|
|
]
|
|
table_frame, data_frame = self.theme.create_styled_data_table(self.root, columns, data)
|
|
self.assertIsNotNone(table_frame)
|
|
self.assertIsNotNone(data_frame)
|
|
self.assertEqual(table_frame.cget("fg_color"), self.theme.get_color("card_bg_color"))
|
|
|
|
def test_theme_switching(self):
|
|
"""اختبار تبديل النمط"""
|
|
|
|
self.theme.set_theme("light")
|
|
light_bg_color = self.theme.get_color("bg_color")
|
|
|
|
|
|
self.theme.set_theme("dark")
|
|
dark_bg_color = self.theme.get_color("bg_color")
|
|
|
|
|
|
self.assertNotEqual(light_bg_color, dark_bg_color)
|
|
|
|
def test_language_switching(self):
|
|
"""اختبار تبديل اللغة"""
|
|
|
|
self.theme.set_language("ar")
|
|
ar_font = self.theme.get_font("body")
|
|
|
|
|
|
self.theme.set_language("en")
|
|
en_font = self.theme.get_font("body")
|
|
|
|
|
|
self.assertNotEqual(ar_font[0], en_font[0])
|
|
|
|
|
|
class TestUILayout(unittest.TestCase):
|
|
"""اختبار تخطيط واجهة المستخدم"""
|
|
|
|
def setUp(self):
|
|
"""إعداد بيئة الاختبار"""
|
|
self.root = ctk.CTk()
|
|
self.root.withdraw()
|
|
self.theme = AppTheme()
|
|
|
|
|
|
self.main_frame = self.theme.create_styled_frame(self.root)
|
|
self.main_frame.pack(fill="both", expand=True)
|
|
|
|
|
|
self.sidebar_frame = self.theme.create_styled_frame(
|
|
self.main_frame,
|
|
fg_color=self.theme.get_color("sidebar_bg_color")
|
|
)
|
|
self.sidebar_frame.pack(side="left", fill="y", padx=0, pady=0)
|
|
|
|
|
|
self.content_frame = self.theme.create_styled_frame(
|
|
self.main_frame,
|
|
fg_color=self.theme.get_color("bg_color")
|
|
)
|
|
self.content_frame.pack(side="right", fill="both", expand=True, padx=0, pady=0)
|
|
|
|
def tearDown(self):
|
|
"""تنظيف بيئة الاختبار"""
|
|
self.root.destroy()
|
|
|
|
def test_sidebar_layout(self):
|
|
"""اختبار تخطيط الشريط الجانبي"""
|
|
|
|
logo_label = self.theme.create_styled_label(
|
|
self.sidebar_frame,
|
|
"نظام إدارة المناقصات",
|
|
font=self.theme.get_font("title"),
|
|
text_color=self.theme.get_color("sidebar_fg_color")
|
|
)
|
|
logo_label.pack(padx=20, pady=20)
|
|
|
|
|
|
sidebar_buttons = []
|
|
button_texts = [
|
|
"لوحة التحكم", "المشاريع", "المستندات", "التسعير",
|
|
"الموارد", "المخاطر", "التقارير", "الذكاء الاصطناعي"
|
|
]
|
|
|
|
for text in button_texts:
|
|
button_frame, button = self.theme.create_styled_sidebar_button(
|
|
self.sidebar_frame,
|
|
text
|
|
)
|
|
button_frame.pack(fill="x", padx=0, pady=2)
|
|
sidebar_buttons.append(button)
|
|
|
|
|
|
self.assertEqual(len(sidebar_buttons), len(button_texts))
|
|
for i, button in enumerate(sidebar_buttons):
|
|
self.assertEqual(button.cget("text"), button_texts[i])
|
|
|
|
def test_content_layout(self):
|
|
"""اختبار تخطيط المحتوى"""
|
|
|
|
header_frame = self.theme.create_styled_frame(
|
|
self.content_frame,
|
|
fg_color=self.theme.get_color("card_bg_color")
|
|
)
|
|
header_frame.pack(fill="x", padx=20, pady=20)
|
|
|
|
|
|
page_title = self.theme.create_styled_label(
|
|
header_frame,
|
|
"لوحة التحكم",
|
|
font=self.theme.get_font("title")
|
|
)
|
|
page_title.pack(side="left", padx=20, pady=20)
|
|
|
|
|
|
search_button = self.theme.create_styled_button(
|
|
header_frame,
|
|
"بحث"
|
|
)
|
|
search_button.pack(side="right", padx=20, pady=20)
|
|
|
|
|
|
cards_frame = self.theme.create_styled_frame(
|
|
self.content_frame,
|
|
fg_color="transparent"
|
|
)
|
|
cards_frame.pack(fill="both", expand=True, padx=20, pady=20)
|
|
|
|
|
|
cards = []
|
|
card_titles = [
|
|
"المشاريع النشطة", "المناقصات الجديدة", "المخاطر العالية", "التقارير المعلقة"
|
|
]
|
|
|
|
for i, title in enumerate(card_titles):
|
|
card, card_content = self.theme.create_styled_card(
|
|
cards_frame,
|
|
title
|
|
)
|
|
card.grid(row=i//2, column=i%2, padx=10, pady=10, sticky="nsew")
|
|
cards.append(card)
|
|
|
|
|
|
self.assertEqual(len(cards), len(card_titles))
|
|
|
|
|
|
cards_frame.grid_columnconfigure(0, weight=1)
|
|
cards_frame.grid_columnconfigure(1, weight=1)
|
|
cards_frame.grid_rowconfigure(0, weight=1)
|
|
cards_frame.grid_rowconfigure(1, weight=1)
|
|
|
|
def test_responsive_layout(self):
|
|
"""اختبار التخطيط المتجاوب"""
|
|
|
|
self.root.geometry("800x600")
|
|
self.root.update()
|
|
|
|
|
|
self.assertEqual(self.main_frame.winfo_width(), 800)
|
|
self.assertEqual(self.main_frame.winfo_height(), 600)
|
|
|
|
|
|
self.root.geometry("1024x768")
|
|
self.root.update()
|
|
|
|
|
|
self.assertEqual(self.main_frame.winfo_width(), 1024)
|
|
self.assertEqual(self.main_frame.winfo_height(), 768)
|
|
|
|
|
|
class TestUIArabicSupport(unittest.TestCase):
|
|
"""اختبار دعم اللغة العربية في واجهة المستخدم"""
|
|
|
|
def setUp(self):
|
|
"""إعداد بيئة الاختبار"""
|
|
self.root = ctk.CTk()
|
|
self.root.withdraw()
|
|
self.theme = AppTheme()
|
|
self.theme.set_language("ar")
|
|
|
|
def tearDown(self):
|
|
"""تنظيف بيئة الاختبار"""
|
|
self.root.destroy()
|
|
|
|
def test_arabic_text_display(self):
|
|
"""اختبار عرض النص العربي"""
|
|
|
|
arabic_text = "هذا نص عربي للاختبار"
|
|
label = self.theme.create_styled_label(self.root, arabic_text)
|
|
self.assertEqual(label.cget("text"), arabic_text)
|
|
|
|
|
|
button = self.theme.create_styled_button(self.root, "زر باللغة العربية")
|
|
self.assertEqual(button.cget("text"), "زر باللغة العربية")
|
|
|
|
|
|
entry = self.theme.create_styled_entry(self.root, "أدخل النص هنا")
|
|
self.assertEqual(entry.cget("placeholder_text"), "أدخل النص هنا")
|
|
|
|
def test_arabic_font(self):
|
|
"""اختبار الخط العربي"""
|
|
|
|
ar_font = self.theme.get_font("body")
|
|
self.assertEqual(ar_font[0], "Cairo")
|
|
|
|
def test_rtl_support(self):
|
|
"""اختبار دعم الكتابة من اليمين إلى اليسار"""
|
|
|
|
frame = self.theme.create_styled_frame(self.root)
|
|
frame.pack(fill="both", expand=True)
|
|
|
|
|
|
label = self.theme.create_styled_label(frame, "نص عربي من اليمين إلى اليسار")
|
|
label.pack(anchor="e", padx=20, pady=20)
|
|
|
|
|
|
self.assertEqual(label.cget("anchor"), "w")
|
|
|
|
|
|
def run_ui_tests():
|
|
"""تشغيل اختبارات واجهة المستخدم"""
|
|
|
|
test_dir = Path('test_results')
|
|
test_dir.mkdir(exist_ok=True)
|
|
|
|
|
|
test_results_file = test_dir / 'ui_test_results.txt'
|
|
|
|
|
|
with open(test_results_file, 'w', encoding='utf-8') as f:
|
|
runner = unittest.TextTestRunner(stream=f, verbosity=2)
|
|
suite = unittest.TestSuite()
|
|
|
|
|
|
suite.addTest(unittest.makeSuite(TestUIComponents))
|
|
|
|
|
|
suite.addTest(unittest.makeSuite(TestUILayout))
|
|
|
|
|
|
suite.addTest(unittest.makeSuite(TestUIArabicSupport))
|
|
|
|
|
|
result = runner.run(suite)
|
|
|
|
|
|
f.write("\n\n=== ملخص نتائج اختبارات واجهة المستخدم ===\n")
|
|
f.write(f"عدد الاختبارات: {result.testsRun}\n")
|
|
f.write(f"عدد النجاحات: {result.testsRun - len(result.failures) - len(result.errors)}\n")
|
|
f.write(f"عدد الإخفاقات: {len(result.failures)}\n")
|
|
f.write(f"عدد الأخطاء: {len(result.errors)}\n")
|
|
|
|
|
|
logger.info(f"تم تشغيل {result.testsRun} اختبار لواجهة المستخدم")
|
|
logger.info(f"النجاحات: {result.testsRun - len(result.failures) - len(result.errors)}")
|
|
logger.info(f"الإخفاقات: {len(result.failures)}")
|
|
logger.info(f"الأخطاء: {len(result.errors)}")
|
|
logger.info(f"تم حفظ نتائج الاختبارات في: {test_results_file}")
|
|
|
|
return result
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run_ui_tests()
|
|
|