summaryrefslogtreecommitdiff
path: root/bin/insanity-gtk
blob: dfb72cf0b7ab52cb90965e12464cf21cd77d91b0 (plain)
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
#!/usr/bin/env python
#
# Copyright (c) 2008 Nokia Corporation
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, write to the
# Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
# Boston, MA 02110-1301, USA.
#
# Authors: Rene Stadler <rene.stadler@nokia.com>
#

import sys
import os
import os.path
import time
import ConfigParser

import pygtk
pygtk.require("2.0")
del pygtk

import gobject
import gtk

import insanity
import insanity.utils

from insanity.client import TesterClient
from insanity.testrun import TestRun

class GtkTesterClient(TesterClient):

    __software_name__ = "GTK client"

    def __init__(self, runner):

        TesterClient.__init__(self, singlerun = True)

        self.runner = runner

    def test_run_start(self, testrun):

        testrun.connect("single-test-start", self.handle_single_test_start)
        testrun.connect("single-test-done", self.handle_single_test_done)

    def test_run_done(self, testrun):

        self.runner.handle_testrun_done(testrun)

    def handle_single_test_start(self, testrun, test, iteration):

        self.runner.handle_test_started(test)
        if iteration == 1:
            test.connect("check", self.handle_test_check)

    def handle_single_test_done(self, testrun, test):

        self.runner.handle_test_complete(test)

    def handle_test_check(self, test, checkitem, validated):

        self.runner.handle_test_check(test, checkitem, validated)

class GtkTestRunner(object):

    def __init__(self, window):

        self.window = window

        self.client = GtkTesterClient(self)
        self.run = None

        self.test_class = None
        self.test_arguments = {}

    def get_test_names(self):

        return [t.__test_name__ for t in insanity.utils.list_available_tests()]

    def get_scenario_names(self):

        return [s.__test_name__ for s in insanity.utils.list_available_scenarios()]

    def set_storage(self, storage):

        self.client.setStorage(storage)

    def set_test(self, test_name):

        self.test_class = insanity.utils.get_test_metadata(test_name)

    def set_arguments(self, test_args):

        self.test_arguments = test_args.copy()

    def set_folder(self, path):

        self.path = path

    def get_n_tests(self):

        n = 1
        test_args = self.test_arguments
        for arg_name, generator in test_args.iteritems():
             n *= len(generator.generate())

        return n

    def setup_test_run(self):

        run = TestRun(maxnbtests = 1)

        run.addTest(self.test_class, arguments = self.test_arguments)

        return run

    def start(self):

        assert not self.run
        assert self.test_class

        self.run = self.setup_test_run()
        self.client.addTestRun(self.run)
        self.client.run()

    def stop(self):

        self.run = None
        self.client.quit()

    def handle_testrun_done(self, testrun):

        self.stop()
        self.window.handle_testrun_done(testrun)

    def handle_test_started(self, test):

        self.window.handle_test_started(test)

    def handle_test_check(self, test, checkitem, validated):

        self.window.handle_test_check(test, checkitem, validated)

    def handle_test_complete(self, test):

        self.window.handle_test_complete(test)

class TestStatusWidget(gtk.Frame):

    def __init__(self):

        gtk.Frame.__init__(self)

        self.labels = {}
        self.box = gtk.HBox(True, 2)
        self.add(self.box)

        self.box.show()

    @staticmethod
    def _check_shortname(n):
        parts = n.split("-")
        return "".join([p[:1] for p in parts]).upper()

    def set_checklist(self, checks):

        for label in self.labels.itervalues():
            label.destroy()
        self.labels.clear()

        for check in checks.keys():
            label_text = self._check_shortname(check)
            label = gtk.Label()
            label.props.use_markup = True
            label.props.label = label_text # FIXME escape
            self.labels[check] = label
            self.box.pack_start(label)
            label.show()

    def reset_status(self):

        for check, label in self.labels.iteritems():
            label_text = self._check_shortname(check)
            label.props.label = label_text # FIXME: escape

    def update_status(self, check, status):

        label = self.labels[check]
        if status:
            color = "green"
        else:
            color = "red"

        label_text = self._check_shortname(check)
        label.props.label = "<span background='%s'>%s</span>" % (color, label_text,) # FIXME: escape

class TestStatusWidget(gtk.Frame):

    def __init__(self):

        gtk.Frame.__init__(self)

        self.labels = {}
        self.box = gtk.HBox(True, 2)
        self.add(self.box)

        self.box.show()

    @staticmethod
    def _check_shortname(n):
        parts = n.split("-")
        return "".join([p[:1] for p in parts]).upper()

    def set_checklist(self, checks):

        for label in self.labels.itervalues():
            label.destroy()
        self.labels.clear()

        for check in checks.keys():
            label_text = self._check_shortname(check)
            label = gtk.Label()
            label.props.use_markup = True
            label.props.label = label_text # FIXME escape
            self.labels[check] = label
            self.box.pack_start(label)
            label.show()

    def reset_status(self):

        for check, label in self.labels.iteritems():
            label_text = self._check_shortname(check)
            label.props.label = label_text # FIXME: escape

    def update_status(self, check, status):

        label = self.labels[check]
        if status:
            color = "green"
        else:
            color = "red"

        label_text = self._check_shortname(check)
        label.props.label = "<span background='%s'>%s</span>" % (color, label_text,) # FIXME: escape

class StateValue(object):

    """Descriptor for binding to the State class."""

    def __init__(self, name, default = None):

        self.name = name
        self.default = default

    def __get__(self, state, state_class = None):

        if state is None:
            return self

        try:
            return state.parser.get("state", self.name)
        except ConfigParser.NoOptionError:
            return self.default

    def __set__(self, state, value):

        state.parser.set("state", self.name, value)

class State(object):

    storage = StateValue("storage")
    sqlite_path = StateValue("storage-sqlite-path")
    test_name = StateValue("test-name")
    uri_gen = StateValue("uri-generator", "folder")
    uri_folder = StateValue("uri-folder")
    uri_file = StateValue("uri-file")
    uri_playlist = StateValue("uri-playlist")

    @classmethod
    def get_filename(cls):

        return os.path.expanduser("~/.config/insanity-gtk")

    def __init__(self):

        self.parser = ConfigParser.RawConfigParser()

        self.parser.read([self.get_filename()])

        try:
            self.parser.add_section("state")
        except ConfigParser.DuplicateSectionError:
            pass

    def save(self):

        tmpname = "%s.tmp" % (self.get_filename(),)

        dirname = os.path.dirname(tmpname)
        try:
            os.makedirs(dirname)
        except OSError:
            pass

        fp = None
        try:
            fp = file(tmpname, "wt")
            self.parser.write(fp)
        finally:
            if fp:
                fp.close()
                os.rename(tmpname, self.get_filename())

class Window(object):

    def __init__ (self):

        self.state = State()

        self.started = False
        self.update_id = None
        self.runner = GtkTestRunner(self)

        insanity.utils.scan_for_tests()
        tests = self.runner.get_test_names() + self.runner.get_scenario_names()

        self.gtk_window = gtk.Window()
        self.gtk_window.connect("delete-event", self.handle_gtk_window_delete_event)
        self.gtk_window.props.title = "Insanity"
        self.gtk_window.show()

        self.uri_generator_widgets = {}
        self.uri_generator_all_widgets = []

        window_box = gtk.VBox()
        window_box.props.border_width = 6

        table = gtk.Table(8, 4, False)
        size_group1 = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL)
        size_group2 = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL)
        size_group3 = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL)

        label = gtk.Label("Storage:")
        label.props.xalign = 0.
        table.attach(label, 0, 1, 1, 2, gtk.FILL, (), 0, 0)

        box = gtk.HBox()

        combo = gtk.combo_box_new_text()
        combo.append_text("SQLite")
        combo.set_active(0)
        # TODO: Support more storage backends.
        self.state.storage = "sqlite"
        box.pack_start(combo, False, False)
        size_group3.add_widget(combo)
        self.storage_combo = combo

        button = gtk.FileChooserButton("Select database location")
        button.props.action = gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER
        if self.state.sqlite_path:
            button.set_current_folder(self.state.sqlite_path)
        elif os.access(os.getcwd(), os.W_OK):
            button.set_current_folder(os.getcwd())
        else:
            button.set_current_folder(os.path.expanduser("~"))
        box.pack_start(button, True, True)
        self.storage_path_chooser = button
        button.connect("current-folder-changed", self.handle_storage_chooser_changed)

        table.attach(box, 1, 2, 1, 2, gtk.FILL, (), 3, 0)

        label = gtk.Label("Test:")
        label.props.xalign = 0.
        size_group1.add_widget(label)
        table.attach(label, 0, 1, 2, 3, gtk.FILL, (), 0, 0)

        combo = gtk.combo_box_new_text()
        for test in tests:
            combo.append_text(test)
        size_group2.add_widget(combo)
        combo.connect("changed", self.handle_test_combo_changed)
        table.attach(combo, 1, 2, 2, 3, gtk.FILL, (), 3, 0)
        self.test_combo = combo

        label = gtk.Label("URI:")
        label.props.xalign = 0.
        size_group1.add_widget(label)
        table.attach(label, 0, 1, 3, 4, gtk.FILL, (), 0, 0)
        self.uri_generator_all_widgets.append(label)

        hbox = gtk.HBox()

        combo = gtk.combo_box_new_text()
        combo.append_text("Folder")
        combo.append_text("File")
        combo.append_text("Playlist")
        hbox.pack_start(combo, False, False)
        size_group3.add_widget(combo)
        self.uri_generator_combo = combo
        self.uri_generator_all_widgets.append(combo)

        notebook = gtk.Notebook()
        notebook.props.show_tabs = False
        notebook.props.show_border = False
        hbox.pack_start(notebook, True, True)
        self.uri_generator_notebook = notebook

        button = gtk.FileChooserButton("Select directory")
        button.props.action = gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER
        button.connect("current-folder-changed", self.handle_uri_folder_button_changed)
        self.uri_generator_widgets["Folder"] = button
        self.uri_generator_all_widgets.append(button)
        notebook.append_page(button, None)
        if self.state.uri_folder:
            button.set_current_folder_uri(self.state.uri_folder)

        button = gtk.FileChooserButton("Select file")
        button.props.action = gtk.FILE_CHOOSER_ACTION_OPEN
        button.connect("current-folder-changed", self.handle_uri_file_button_changed)
        self.uri_generator_widgets["File"] = button
        self.uri_generator_all_widgets.append(button)
        notebook.append_page(button, None)
        if self.state.uri_file:
            button.set_uri(self.state.uri_file)

        button = gtk.FileChooserButton("Select playlist")
        button.props.action = gtk.FILE_CHOOSER_ACTION_OPEN
        button.connect("current-folder-changed", self.handle_uri_playlist_button_changed)
        self.uri_generator_widgets["Playlist"] = button
        self.uri_generator_all_widgets.append(button)
        notebook.append_page(button, None)
        if self.state.uri_playlist:
            button.set_uri(self.state.uri_playlist)

        size_group2.add_widget(hbox)
        table.attach(hbox, 1, 2, 3, 4, (), gtk.FILL, 3, 0)
        combo.connect("changed", self.handle_uri_generator_combo_changed)

        button = gtk.Button("Start testrun")
        button.connect("clicked", self.handle_start_testrun_button_clicked)
        table.attach(button, 2, 3, 3, 4, (), gtk.FILL, 3, 0)
        self.start_testrun_button = button

        label = gtk.Label("Run time:")
        label.props.xalign = 0.
        size_group1.add_widget(label)
        table.attach(label, 0, 1, 4, 5, gtk.FILL, (), 0, 0)

        label = gtk.Label("")
        label.props.xalign = 0.
        size_group1.add_widget(label)
        table.attach(label, 1, 2, 4, 5, gtk.FILL, (), 3, 0)
        self.run_time_label = label

        label = gtk.Label("Progress:")
        label.props.xalign = 0.
        size_group1.add_widget(label)
        table.attach(label, 0, 1, 5, 6, gtk.FILL, (), 0, 0)

        progress = gtk.ProgressBar()
        table.attach(progress, 1, 2, 5, 6, gtk.FILL, (), 3, 0)
        self.progress = progress

        label = gtk.Label("")
        label.props.xalign = 0.
        #table.attach(label, 0, 4, 6, 7, gtk.FILL, (), 3, 3)
        window_box.pack_end(label)
        self.current_uri_label = label

        progress = gtk.ProgressBar()
        window_box.pack_end(progress)
        self.test_progress = progress

        status = TestStatusWidget()
        window_box.pack_end(status)
        self.test_status = status

        window_box.pack_start(table, True, True, 0)
        self.gtk_window.add(window_box)
        self.gtk_window.show_all()

        self.size_groups = [size_group1, size_group2, size_group3]

        default_test_name = self.state.test_name
        if default_test_name in tests:
            self.test_combo.props.active = tests.index(default_test_name)
        else:
            self.test_combo.props.active = 0

        default_uri_gen = self.state.uri_gen
        uri_gen_list = ["folder", "file", "playlist"]
        if not default_uri_gen in uri_gen_list:
            combo.set_active(0)
        else:
            combo.set_active(uri_gen_list.index(default_uri_gen))

    def handle_gtk_window_delete_event(self, gtk_window, event):

        self.stop_test()

        gtk.main_quit()

    def handle_start_testrun_button_clicked(self, button):

        if self.started:
            self.stop_test()
        else:
            self.start_test()

    def handle_test_combo_changed(self, combo):

        test = self.test_combo.get_active_text()
        self.runner.set_test(test)
        test_class = self.runner.test_class
        self.test_status.set_checklist(test_class.getFullCheckList())

        test_args = test_class.getFullArgumentList()
        if "uri" in test_args:
            uri_arg = True
        else:
            uri_arg = False
        for widget in self.uri_generator_all_widgets:
            widget.props.sensitive = uri_arg

        self.state.test_name = test
        self.state.save()

    def handle_storage_chooser_changed(self, chooser_button):

        path = chooser_button.get_current_folder()
        if path:
            self.state.sqlite_path = path
            self.state.save()

    def handle_uri_generator_combo_changed(self, combo):

        notebook = self.uri_generator_notebook

        text = combo.get_active_text()
        widget = self.uri_generator_widgets[text]
        page_num = notebook.page_num(widget)
        notebook.props.page = page_num

        self.state.uri_gen = text.lower()
        self.state.save()

    def handle_uri_folder_button_changed(self, chooser_button):

        uri = chooser_button.get_current_folder_uri()
        if uri:
            self.state.uri_folder = uri
            self.state.save()

    def handle_uri_file_button_changed(self, chooser_button):

        uri = chooser_button.get_uri()
        if uri:
            self.state.uri_file = uri
            self.state.save()

    def handle_uri_playlist_button_changed(self, chooser_button):

        uri = chooser_button.get_uri()
        if uri:
            self.state.uri_playlist = uri
            self.state.save()

    def build_test_arguments(self):

        test_args = {}

        if self.uri_generator_combo.props.sensitive:
            uri_gen = self.uri_generator_combo.get_active_text()
            uri_widget = self.uri_generator_widgets[uri_gen]
            if uri_gen == "Folder":
                from insanity.generators.filesystem import URIFileSystemGenerator
                folder = uri_widget.get_filename()
                test_args["uri"] = URIFileSystemGenerator(paths=[folder], recursive=True)
            elif uri_gen == "File":
                from insanity.generators.filesystem import URIFileSystemGenerator
                filename = uri_widget.get_filename()
                test_args["uri"] = URIFileSystemGenerator(paths=[filename], recursive=False)
            elif uri_gen == "Playlist":
                from insanity.generators.playlist import PlaylistGenerator
                filename = uri_widget.get_filename()
                test_args["uri"] = PlaylistGenerator(location=filename)
            else:
                assert False

        return test_args

    def start_test(self):

        self.started = True
        self.start_testrun_button.props.label = "Stop test"

        if not os.access(os.getcwd(), os.W_OK):
            print >> sys.stderr, "insanity-gtk: Current directory %s not writable, changing to ~" % (os.getcwd(),)
            os.chdir(os.path.expanduser("~"))

        storage = None
        storage_name = self.storage_combo.get_active_text().lower()
        if storage_name == "sqlite":
            storage_path = os.path.join(self.storage_path_chooser.get_filename(), "testrun.db")
            from insanity.storage.sqlite import SQLiteStorage
            storage = SQLiteStorage(path=storage_path)
        if storage:
            self.runner.set_storage(storage)

        test_args = self.build_test_arguments()
        self.runner.set_arguments(test_args)

        self.start_time = time.time()
        self.n_tests = self.runner.get_n_tests()
        self.n_completed = 0

        def update():
            self.update_run_time()
            return True
        self.update_id = gobject.timeout_add(1000, update)

        self.runner.start()

    def stop_test(self):

        if not self.started:
            return

        if self.update_id is not None:
            gobject.source_remove(self.update_id)
            self.update_id = None

        self.started = False
        self.start_testrun_button.props.label = "Start test"

        self.runner.stop()

    def update_run_time(self):

        def time_args (secs):
            return "%02i:%02i:%02i" % (secs // 60**2,
                                       secs // 60 % 60,
                                       secs % 60,)

        run_time = time.time() - self.start_time
        self.run_time_label.props.label = time_args(run_time)

    def handle_test_started(self, test):

        uri = test.arguments.get("uri")

        if uri:
            text = uri
        else:
            text = ""

        self.current_uri_label.props.label = text

    def handle_test_check(self, test, checkitem, validated):

        ## self.current_check.props.label = checkitem
        self.test_progress.props.fraction = test.getSuccessPercentage() / 100.
        if validated:
            status_text = "validated"
        else:
            status_text = "failed"
        self.test_progress.props.text = "%s %s" % (checkitem, status_text,)
        self.test_status.update_status(checkitem, validated)

    def handle_test_complete(self, test):

        self.n_completed += 1

        self.progress.props.fraction = float(self.n_completed) / float(self.n_tests)
        self.test_status.reset_status()

    def handle_testrun_done(self, testrun):

        self.stop_test()

def main():

    w = Window()
    gtk.main()

if __name__ == "__main__":
    main()