-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtester.py
181 lines (131 loc) · 6.44 KB
/
tester.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import os
import re
import sys
import subprocess
from PyQt5 import QtCore, QtGui, QtWidgets, uic
from src.test_vector_gen import generate_test_vector
qtcreator_file = "src/mainwindow.ui"
Ui_MainWindow, QtBaseClass = uic.loadUiType(qtcreator_file)
class MyWindow(QtWidgets.QMainWindow, Ui_MainWindow):
def __init__(self):
QtWidgets.QMainWindow.__init__(self)
Ui_MainWindow.__init__(self)
self.setupUi(self)
self.truth_table_generated = False
self.circ_path_input.setText("")
self.test_file_input.setText("")
self.console_logs_tb.setText("")
self.truth_table_model = QtGui.QStandardItemModel(self)
self.truth_table_tab.setModel(self.truth_table_model)
self.run_tests_btn.clicked.connect(self.run_tests)
self.circ_select_btn.clicked.connect(self.select_circ_file)
self.test_select_btn.clicked.connect(self.select_test_config_file)
self.clear_tester_btn.clicked.connect(self.clear_test_config)
self.clear_logs_btn.clicked.connect(self.clear_logs)
self.save_tt_btn.clicked.connect(self.save_truth_table)
self.statusbar.showMessage("TestBench is ready.")
def run_tests(self):
self.statusbar.showMessage("Running tests...")
if self.circ_path_input.text() == "":
error_dialog = QtWidgets.QErrorMessage()
error_dialog.showMessage('Please select a circuit file!')
error_dialog.exec_()
self.statusbar.showMessage("TestBench is ready.")
return
if self.test_file_input.text() == "":
error_dialog = QtWidgets.QErrorMessage()
error_dialog.showMessage('Please select a test config file!')
error_dialog.exec_()
self.statusbar.showMessage("TestBench is ready.")
return
p = subprocess.Popen(
f"java -jar src/logisim-ceng.jar -nosplash -grader _tt.txt.properties {self.circ_path_input.text()}",
shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
self.clear_logs()
process_stdout = p.stdout.read().decode()
process_stderr = p.stderr.read().decode()
if process_stderr != "":
self.console_logs_tb.setText("=" * 10 + " ERROR LOG " + "=" * 10 + "\n\n Error:" + process_stderr)
error_dialog = QtWidgets.QErrorMessage()
error_dialog.setWindowTitle("Unexpected tester error")
error_dialog.showMessage(process_stderr)
error_dialog.exec_()
return
self.console_logs_tb.setText(process_stdout)
tester_fails = len(re.findall("\[\!\!\] TEST RUN ERROR\\n", process_stdout))
with open("_tt.txt.properties", "r") as fp:
try:
tester_total = int(re.findall(r"number_of_runs=(\d+)", fp.read())[0])
except Exception as e:
error_dialog = QtWidgets.QErrorMessage()
error_dialog.showMessage('Exception: ' + str(e))
error_dialog.exec_()
return
info_dialog = QtWidgets.QMessageBox()
info_dialog.setIcon(QtWidgets.QMessageBox.Information)
info_dialog.setText(f"Passed: {tester_total - tester_fails}\nFailed: {tester_fails}")
info_dialog.setInformativeText("Detailed output can be found in console output section.")
info_dialog.setWindowTitle("Tester output")
info_dialog.setStandardButtons(QtWidgets.QMessageBox.Ok)
info_dialog.exec_()
self.statusbar.showMessage("TestBench is ready.")
def select_circ_file(self):
options = QtWidgets.QFileDialog.Options()
options |= QtWidgets.QFileDialog.DontUseNativeDialog
fileName, _ = QtWidgets.QFileDialog.getOpenFileName(self, "Select circuit file",
"","Logisim Circuit Files (*.circ);;All Files (*)", options=options)
if fileName:
self.circ_path_input.setText(fileName)
self.statusbar.showMessage("Selected circuit file.")
def select_test_config_file(self):
options = QtWidgets.QFileDialog.Options()
options |= QtWidgets.QFileDialog.DontUseNativeDialog
fileName, _ = QtWidgets.QFileDialog.getOpenFileName(self, "Select test configuration file",
"","JSON Files (*.json);;All Files (*)", options=options)
if fileName:
self.test_file_input.setText(fileName)
self.statusbar.showMessage("Selected test configuration file.")
self.generate_truth_table(fileName)
def generate_truth_table(self, fileName):
self.statusbar.showMessage("Generating truth table...")
generate_test_vector(fileName, output_file="_tt.txt")
try:
with open("_tt.txt", "r") as fp:
self.truth_table_model.setRowCount(0)
for line in fp.readlines():
row = [QtGui.QStandardItem(x) for x in line.replace("\n", "").split(" ")]
self.truth_table_model.appendRow(row)
except Exception as e:
error_dialog = QtWidgets.QErrorMessage()
error_dialog.showMessage('Error reading test vector: ' + str(e))
error_dialog.exec_()
return
self.truth_table_tab.resizeColumnsToContents()
self.statusbar.showMessage("Truth table is OK.")
self.truth_table_generated = True
def clear_test_config(self):
self.test_file_input.setText("")
self.truth_table_model.setRowCount(0)
self.statusbar.showMessage("Cleared test configurations.")
def clear_logs(self):
self.console_logs_tb.setText("")
self.statusbar.showMessage("Cleared logisim console logs.")
def save_truth_table(self):
if not self.truth_table_generated:
error_dialog = QtWidgets.QErrorMessage()
error_dialog.showMessage('Please select a test config file!')
error_dialog.exec_()
self.statusbar.showMessage("TestBench is ready.")
return
with open('_tt.txt') as fp:
name = QtWidgets.QFileDialog.getSaveFileName(self, 'Save File')
file = open(name[0], 'w')
file.write(fp.read())
file.close()
self.statusbar.showMessage("TestBench is ready.")
if __name__ == "__main__":
app = QtWidgets.QApplication(sys.argv)
window = MyWindow()
window.show()
window.setWindowTitle("Sazak's Logisim Circuit TestBench")
sys.exit(app.exec_())