ver Dec29thv2
re-organized functions w.r.t. comparing xlsx with a golden one
This commit is contained in:
@@ -1,2 +1,2 @@
|
|||||||
from .table import compare_table, compare_with_sparklines, compare_with_charts
|
from .table import compare_table
|
||||||
from .table import check_sheet_list, check_xlsx_freeze
|
from .table import check_sheet_list, check_xlsx_freeze
|
||||||
|
|||||||
@@ -9,71 +9,62 @@ from typing import Dict, List
|
|||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
|
|
||||||
def compare_table(actual, expected):
|
def compare_table(actual: str, expected: str, **options) -> float:
|
||||||
df1 = pd.read_excel(expected)
|
|
||||||
df2 = pd.read_excel(actual)
|
|
||||||
|
|
||||||
# Compare the DataFrames
|
|
||||||
return 1 if df1.equals(df2) else 0
|
|
||||||
|
|
||||||
|
|
||||||
def compare_with_sparklines(actual: str, expected: str) -> float:
|
|
||||||
df1 = pd.read_excel(actual)
|
|
||||||
df2 = pd.read_excel(expected)
|
|
||||||
normal_content_metric: bool = df1.equals(df2)
|
|
||||||
print("Normal Contents Metric: {:}".format(normal_content_metric))
|
|
||||||
|
|
||||||
sp1 = load_sparklines(actual)
|
|
||||||
sp2 = load_sparklines(expected)
|
|
||||||
sparkline_metric: bool = sp1 == sp2
|
|
||||||
print("Sparkline Metric: {:}".format(sparkline_metric))
|
|
||||||
|
|
||||||
return float(normal_content_metric and sparkline_metric)
|
|
||||||
|
|
||||||
|
|
||||||
def compare_with_charts(actual: str, expected: str, **options) -> float:
|
|
||||||
"""
|
"""
|
||||||
Args:
|
Args:
|
||||||
actual (str): path to result xlsx
|
actual (str): path to result xlsx
|
||||||
expected (str): path to gold xlsx
|
expected (str): path to gold xlsx
|
||||||
options (Dict[str, List[str]]): dict like {"chart_props": list of str}
|
options (Dict[str, List[str]]): dict like
|
||||||
giving the concerned chart properties
|
{
|
||||||
|
"features": list of str for other features, supports:
|
||||||
|
* sparkline
|
||||||
|
* chart
|
||||||
|
* number_format
|
||||||
|
"chart_props": list of str, giving the converned chart properties
|
||||||
|
}
|
||||||
|
|
||||||
|
Return:
|
||||||
|
float: the score
|
||||||
"""
|
"""
|
||||||
|
|
||||||
df1 = pd.read_excel(actual)
|
df1 = pd.read_excel(expected)
|
||||||
df2 = pd.read_excel(expected)
|
df2 = pd.read_excel(actual)
|
||||||
normal_content_metric: bool = df1.equals(df2)
|
metric: bool = df1.equals(df2)
|
||||||
print("Normal Contents Metric: {:}".format(normal_content_metric))
|
print("Normal Contents Metric: {:}".format(metric))
|
||||||
|
|
||||||
charts1 = load_charts(actual, **options)
|
features: List[str] = options.get("features", [])
|
||||||
charts2 = load_charts(expected, **options)
|
for ftr in features:
|
||||||
chart_metric: bool = charts1 == charts2
|
workbook1: Workbook = openpyxl.load_workbook(actual)
|
||||||
print("Chart Metric: {:}".format(chart_metric))
|
workbook2: Workbook = openpyxl.load_workbook(expected)
|
||||||
|
|
||||||
return float(normal_content_metric and chart_metric)
|
if ftr=="sparkline":
|
||||||
|
sp1 = load_sparklines(actual)
|
||||||
|
sp2 = load_sparklines(expected)
|
||||||
|
new_metric: bool = sp1 == sp2
|
||||||
|
print("Sparkline Metric: {:}".format(new_metric))
|
||||||
|
elif ftr=="chart":
|
||||||
|
charts1 = load_charts(workbook1, **options)
|
||||||
|
charts2 = load_charts(workbook2, **options)
|
||||||
|
new_metric: bool = charts1 == charts2
|
||||||
|
print("Chart Metric: {:}".format(new_metric))
|
||||||
|
elif ftr=="number_format":
|
||||||
|
number_formats1: List[str] = [ c.number_format.lower()\
|
||||||
|
for col in workbook1.active.iter_cols()\
|
||||||
|
for c in col\
|
||||||
|
if c.data_type=="n"
|
||||||
|
]
|
||||||
|
number_formats2: List[str] = [ c.number_format.lower()\
|
||||||
|
for col in workbook2.active.iter_cols()\
|
||||||
|
for c in col\
|
||||||
|
if c.data_type=="n"
|
||||||
|
]
|
||||||
|
new_metric: bool = number_formats1==number_formats2
|
||||||
|
print("Number Format Metric: {:}".format(new_metric))
|
||||||
|
else:
|
||||||
|
raise NotImplementedError("Unsupported xlsx feature: {:}".format(ftr))
|
||||||
|
metric = metric and new_metric
|
||||||
|
|
||||||
def compare_with_formats(actual: str, expected: str) -> float:
|
return float(metric)
|
||||||
df1 = pd.read_excel(actual)
|
|
||||||
df2 = pd.read_excel(expected)
|
|
||||||
normal_content_metric: bool = df1.equals(df2)
|
|
||||||
print("Normal Contents Metric: {:}".format(normal_content_metric))
|
|
||||||
|
|
||||||
workbook1: Workbook = openpyxl.load_workbook(actual)
|
|
||||||
number_formats1: List[str] = [ c.number_format.lower()\
|
|
||||||
for col in workbook1.active.iter_cols()\
|
|
||||||
for c in col\
|
|
||||||
if c.data_type=="n"
|
|
||||||
]
|
|
||||||
workbook2: Workbook = openpyxl.load_workbook(expected)
|
|
||||||
number_formats2: List[str] = [ c.number_format.lower()\
|
|
||||||
for col in workbook2.active.iter_cols()\
|
|
||||||
for c in col\
|
|
||||||
if c.data_type=="n"
|
|
||||||
]
|
|
||||||
number_format_metric: bool = number_formats1==number_formats2
|
|
||||||
print("Number Format Metric: {:}".format(number_format_metric))
|
|
||||||
|
|
||||||
return float(normal_content_metric & number_format_metric)
|
|
||||||
|
|
||||||
def check_sheet_list(result: str, rules: List[Dict[str, Any]]) -> float:
|
def check_sheet_list(result: str, rules: List[Dict[str, Any]]) -> float:
|
||||||
# workbook: Workbook = openpyxl.load_workbook(filename=result)
|
# workbook: Workbook = openpyxl.load_workbook(filename=result)
|
||||||
@@ -155,9 +146,9 @@ if __name__ == '__main__':
|
|||||||
# ]
|
# ]
|
||||||
# print(check_sheet_list(path1, rule))
|
# print(check_sheet_list(path1, rule))
|
||||||
|
|
||||||
#path1 = "../../../../../任务数据/LibreOffice Calc/Create_column_charts_using_statistics_gold.xlsx"
|
path1 = "../../任务数据/LibreOffice Calc/Create_column_charts_using_statistics_gold.xlsx"
|
||||||
#path2 = "../../../../../任务数据/LibreOffice Calc/Create_column_charts_using_statistics_gold2.xlsx"
|
path2 = "../../任务数据/LibreOffice Calc/Create_column_charts_using_statistics_gold2.xlsx"
|
||||||
#print(compare_with_charts(path1, path2, chart_props=["type", "direction"]))
|
print(compare_table(path1, path2, features=["chart"], chart_props=["type", "direction"]))
|
||||||
|
|
||||||
path1 = "../../任务数据/LibreOffice Calc/Represent_in_millions_billions_gold.xlsx"
|
path1 = "../../任务数据/LibreOffice Calc/Represent_in_millions_billions_gold.xlsx"
|
||||||
path2 = "../../任务数据/LibreOffice Calc/Represent_in_millions_billions_gold3.xlsx"
|
path2 = "../../任务数据/LibreOffice Calc/Represent_in_millions_billions_gold3.xlsx"
|
||||||
@@ -172,4 +163,4 @@ if __name__ == '__main__':
|
|||||||
#print(worksheet1[position])
|
#print(worksheet1[position])
|
||||||
#print(worksheet1[position].value)
|
#print(worksheet1[position].value)
|
||||||
#print(worksheet1[position].number_format)
|
#print(worksheet1[position].number_format)
|
||||||
print(compare_with_formats(path1, path2))
|
print(compare_table(path1, path2, features=["number_format"]))
|
||||||
|
|||||||
@@ -56,10 +56,10 @@ def load_sparklines(xlsx_file: str) -> Dict[str, str]:
|
|||||||
# type: "scatterChart" | "lineChart" | "barChart"
|
# type: "scatterChart" | "lineChart" | "barChart"
|
||||||
# direction: "bar" (hori) | "col" (vert)
|
# direction: "bar" (hori) | "col" (vert)
|
||||||
# xtitle, ytitle, ztitle: str
|
# xtitle, ytitle, ztitle: str
|
||||||
def load_charts(xlsx_file: str, **options) -> Dict[str, Any]:
|
def load_charts(xlsx_file: Workbook, **options) -> Dict[str, Any]:
|
||||||
"""
|
"""
|
||||||
Args:
|
Args:
|
||||||
xlsx_file (str): path to xlsx
|
xlsx_file (Workbook): concerned excel book
|
||||||
options (Dict[str, List[str]]): dict like {"chart_props": list of str}
|
options (Dict[str, List[str]]): dict like {"chart_props": list of str}
|
||||||
giving the concerned chart properties
|
giving the concerned chart properties
|
||||||
|
|
||||||
@@ -67,8 +67,8 @@ def load_charts(xlsx_file: str, **options) -> Dict[str, Any]:
|
|||||||
Dict[str, Any]: information of charts
|
Dict[str, Any]: information of charts
|
||||||
"""
|
"""
|
||||||
|
|
||||||
workbook: Workbook = openpyxl.load_workbook(filename=xlsx_file)
|
#workbook: Workbook = openpyxl.load_workbook(filename=xlsx_file)
|
||||||
worksheet: Worksheet = workbook.active
|
worksheet: Worksheet = xlsx_file.active
|
||||||
charts: List[ChartBase] = worksheet._charts
|
charts: List[ChartBase] = worksheet._charts
|
||||||
|
|
||||||
chart_set: Dict[str, Any] = {}
|
chart_set: Dict[str, Any] = {}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
"libreoffice_calc"
|
"libreoffice_calc"
|
||||||
],
|
],
|
||||||
"evaluator": {
|
"evaluator": {
|
||||||
"func": "compare_with_formats",
|
"func": "compare_table",
|
||||||
"result": {
|
"result": {
|
||||||
"type": "vm_file",
|
"type": "vm_file",
|
||||||
"path": "/home/david/Represent_in_millions_billions.xlsx",
|
"path": "/home/david/Represent_in_millions_billions.xlsx",
|
||||||
@@ -37,6 +37,11 @@
|
|||||||
"type": "cloud_file",
|
"type": "cloud_file",
|
||||||
"path": "",
|
"path": "",
|
||||||
"dest": "Represent_in_millions_billions_gold.xlsx"
|
"dest": "Represent_in_millions_billions_gold.xlsx"
|
||||||
|
},
|
||||||
|
"options": {
|
||||||
|
"features": [
|
||||||
|
"number_format"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
"libreoffice calc"
|
"libreoffice calc"
|
||||||
],
|
],
|
||||||
"evaluator": {
|
"evaluator": {
|
||||||
"func": "compare_with_sparklines",
|
"func": "compare_table",
|
||||||
"expected": {
|
"expected": {
|
||||||
"type": "cloud_file",
|
"type": "cloud_file",
|
||||||
"path": "https://drive.usercontent.google.com/download?id=1KQJJLVPGtTL_7ArEWvwwbFbJSiA3cgSE&export=download&authuser=0&confirm=t&uuid=6b11c721-caad-439a-b369-4c13c7a485df&at=APZUnTV5-1isKrDKSHV9NeJ6TDeS:1703509054094",
|
"path": "https://drive.usercontent.google.com/download?id=1KQJJLVPGtTL_7ArEWvwwbFbJSiA3cgSE&export=download&authuser=0&confirm=t&uuid=6b11c721-caad-439a-b369-4c13c7a485df&at=APZUnTV5-1isKrDKSHV9NeJ6TDeS:1703509054094",
|
||||||
@@ -36,6 +36,10 @@
|
|||||||
"type": "vm_file",
|
"type": "vm_file",
|
||||||
"path": "/home/david/OrderId_Month_Chart.xlsx",
|
"path": "/home/david/OrderId_Month_Chart.xlsx",
|
||||||
"dest": "OrderId_Month_Chart.xlsx"
|
"dest": "OrderId_Month_Chart.xlsx"
|
||||||
}
|
},
|
||||||
|
"options": {
|
||||||
|
"features": [
|
||||||
|
"sparkline"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
"libreoffice_calc"
|
"libreoffice_calc"
|
||||||
],
|
],
|
||||||
"evaluator": {
|
"evaluator": {
|
||||||
"func": "compare_with_charts",
|
"func": "compare_table",
|
||||||
"result": {
|
"result": {
|
||||||
"type": "vm_file",
|
"type": "vm_file",
|
||||||
"path": "/home/david/Create_column_charts_using_statistics.xlsx",
|
"path": "/home/david/Create_column_charts_using_statistics.xlsx",
|
||||||
@@ -39,6 +39,9 @@
|
|||||||
"dest": "Create_column_charts_using_statistics_gold.xlsx"
|
"dest": "Create_column_charts_using_statistics_gold.xlsx"
|
||||||
},
|
},
|
||||||
"options": {
|
"options": {
|
||||||
|
"features": [
|
||||||
|
"chart"
|
||||||
|
],
|
||||||
"chart_props": [
|
"chart_props": [
|
||||||
"type",
|
"type",
|
||||||
"direction"
|
"direction"
|
||||||
|
|||||||
Reference in New Issue
Block a user