/usr/share/pyshared/guidata/guitest.py is in python-guidata 1.6.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # -*- coding: utf-8 -*-
#
# Copyright © 2009-2010 CEA
# Pierre Raybaut
# Licensed under the terms of the CECILL License
# (see guidata/__init__.py for details)
"""
GUI-based test launcher
"""
import sys
import os
import os.path as osp
import subprocess
from spyderlib.widgets.sourcecode.codeeditor import CodeEditor
# Local imports
from guidata.qt.QtGui import (QWidget, QVBoxLayout, QSplitter, QFont,
QListWidget, QPushButton, QLabel, QGroupBox,
QHBoxLayout, QShortcut, QKeySequence)
from guidata.qt.QtCore import SIGNAL, Qt, QSize
from guidata.config import _
from guidata.configtools import get_icon, get_family, MONOSPACE
from guidata.qthelpers import get_std_icon
def get_tests(test_package):
tests = []
test_path = osp.dirname(osp.realpath(test_package.__file__))
for fname in sorted(os.listdir(test_path)):
module_name, ext = osp.splitext(fname)
if ext not in ('.py', '.pyw'):
continue
if not module_name.startswith('_'):
_temp = __import__(test_package.__name__, fromlist=[module_name])
test_module = getattr(_temp, module_name)
test = TestModule(test_module)
if test.is_visible():
tests.append(test)
return tests
class TestModule(object):
def __init__(self, test_module):
self.module = test_module
self.filename = osp.splitext(osp.abspath(test_module.__file__))[0]+'.py'
if not osp.isfile(self.filename):
self.filename += 'w'
def is_visible(self):
return hasattr(self.module, 'SHOW') and self.module.SHOW
def get_description(self):
doc = self.module.__doc__
if doc is None or not doc.strip():
return _("No description available")
else:
lines = doc.strip().splitlines()
format = '<span style=\'color: #2222FF\'><b>%s</b></span>'
lines[0] = format % lines[0]
return '<br>'.join(lines)
def run(self, args=''):
# Keep the same sys.path environment in child process:
# (useful when the program is executed from Spyder, for example)
os.environ['PYTHONPATH'] = os.pathsep.join(sys.path)
command = [sys.executable, '"'+self.filename+'"']
if args:
command.append(args)
subprocess.Popen(" ".join(command), shell=True)
class TestPropertiesWidget(QWidget):
def __init__(self, parent):
QWidget.__init__(self, parent)
font = QFont(get_family(MONOSPACE), 10, QFont.Normal)
info_icon = QLabel()
icon = get_std_icon('MessageBoxInformation').pixmap(24, 24)
info_icon.setPixmap(icon)
info_icon.setFixedWidth(32)
info_icon.setAlignment(Qt.AlignTop)
self.desc_label = QLabel()
self.desc_label.setWordWrap(True)
self.desc_label.setAlignment(Qt.AlignTop)
self.desc_label.setFont(font)
group_desc = QGroupBox(_("Description"), self)
layout = QHBoxLayout()
layout.addWidget(info_icon)
layout.addWidget(self.desc_label)
group_desc.setLayout(layout)
self.editor = CodeEditor(self)
self.editor.setup_editor(linenumbers=True, font=font)
self.editor.setReadOnly(True)
group_code = QGroupBox(_("Source code"), self)
layout = QVBoxLayout()
layout.addWidget(self.editor)
group_code.setLayout(layout)
self.run_button = QPushButton(get_icon("apply.png"),
_("Run this script"), self)
self.quit_button = QPushButton(get_icon("exit.png"), _("Quit"), self)
hlayout = QHBoxLayout()
hlayout.addWidget(self.run_button)
hlayout.addStretch()
hlayout.addWidget(self.quit_button)
vlayout = QVBoxLayout()
vlayout.addWidget(group_desc)
vlayout.addWidget(group_code)
vlayout.addLayout(hlayout)
self.setLayout(vlayout)
def set_item(self, test):
self.desc_label.setText(test.get_description())
self.editor.set_text_from_file(test.filename)
class TestLauncherWindow(QSplitter):
def __init__(self, package, parent=None):
QSplitter.__init__(self, parent)
self.setWindowTitle(_("Tests - %s module") % package.__name__)
self.setWindowIcon(get_icon("%s.svg" % package.__name__, "guidata.svg"))
test_package_name = '%s.tests' % package.__name__
_temp = __import__(test_package_name)
test_package = sys.modules[test_package_name]
tests = get_tests(test_package)
listwidget = QListWidget(self)
listwidget.addItems([osp.basename(test.filename) for test in tests])
self.properties = TestPropertiesWidget(self)
self.addWidget(listwidget)
self.addWidget(self.properties)
self.connect(self.properties.run_button, SIGNAL("clicked()"),
lambda: tests[listwidget.currentRow()].run())
self.connect(self.properties.quit_button, SIGNAL("clicked()"),
self.close)
self.connect(listwidget, SIGNAL('currentRowChanged(int)'),
lambda row: self.properties.set_item(tests[row]))
self.connect(listwidget, SIGNAL('itemActivated(QListWidgetItem*)'),
lambda: tests[listwidget.currentRow()].run())
listwidget.setCurrentRow(0)
QShortcut(QKeySequence("Escape"), self, self.close)
self.setSizes([150, 1])
self.setStretchFactor(1, 1)
self.resize(QSize(950, 600))
self.properties.set_item(tests[0])
def run_testlauncher(package):
"""Run test launcher"""
from guidata.qt.QtGui import QApplication
app = QApplication([])
win = TestLauncherWindow(package)
win.show()
app.exec_()
|