forked from alejandroautalan/pygubu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_pathchooserinput.py
87 lines (65 loc) · 2.31 KB
/
test_pathchooserinput.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
# encoding: utf8
import os
import sys
import unittest
try:
import tkinter as tk
import tkinter.ttk as ttk
except:
import Tkinter as tk
import ttk
pygubu_basedir = os.path.abspath(os.path.dirname(
os.path.dirname(os.path.realpath(sys.argv[0]))))
if pygubu_basedir not in sys.path:
sys.path.insert(0, pygubu_basedir)
import pygubu
import support
from pygubu.widgets.pathchooserinput import PathChooserInput
class TestPathChooserInput(unittest.TestCase):
def setUp(self):
support.root_deiconify()
xmldata = 'test_pathchooserinput.ui'
self.builder = builder = pygubu.Builder()
builder.add_from_file(xmldata)
self.mainwindow = builder.get_object('mainwindow')
self.widget = builder.get_object('pathchooserinput1')
def tearDown(self):
support.root_withdraw()
def test_class(self):
self.assertIsInstance(self.widget, PathChooserInput)
self.widget.destroy()
def test_path_changed_event(self):
success = []
def on_path_changed(event=None):
success.append(1)
bag = { 'on_path_changed': on_path_changed }
self.builder.connect_callbacks(bag)
self.widget.configure(path='/new/path')
self.assertTrue(success)
self.widget.destroy()
def test_type(self):
itype = str(self.widget.cget('type'))
self.assertEqual('file', itype)
self.widget.destroy()
def test_path(self):
path = str(self.widget.cget('path'))
self.assertEqual('/home/user', path)
self.widget.destroy()
def test_path_dictionary_like(self):
path = str(self.widget['path'])
self.assertEqual('/home/user', path)
self.widget.destroy()
def test_state(self):
# allowed states normal/disabled/readonly
# normal
state = str(self.widget.cget('state'))
self.assertEqual('normal', state)
# disabled
self.widget.config(state='disabled')
state = str(self.widget.cget('state'))
self.assertEqual('disabled', state)
# readonly
self.widget.config(state='readonly')
state = str(self.widget.cget('state'))
self.assertEqual('readonly', state)
self.widget.destroy()