Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
e3b5a765
Kaydet (Commit)
e3b5a765
authored
Kas 16, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19602: Use specific asserts in tkinter tests.
üst
78ee0784
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
26 deletions
+26
-26
test_extensions.py
Lib/tkinter/test/test_ttk/test_extensions.py
+5
-5
test_style.py
Lib/tkinter/test/test_ttk/test_style.py
+3
-3
test_widgets.py
Lib/tkinter/test/test_ttk/test_widgets.py
+18
-18
No files found.
Lib/tkinter/test/test_ttk/test_extensions.py
Dosyayı görüntüle @
e3b5a765
...
...
@@ -45,7 +45,7 @@ class LabeledScaleTest(unittest.TestCase):
# it tries calling instance attributes not yet defined.
ttk
.
LabeledScale
(
variable
=
myvar
)
if
hasattr
(
sys
,
'last_type'
):
self
.
assert
False
(
sys
.
last_type
==
tkinter
.
TclError
)
self
.
assert
NotEqual
(
sys
.
last_type
,
tkinter
.
TclError
)
def
test_initialization
(
self
):
...
...
@@ -120,14 +120,14 @@ class LabeledScaleTest(unittest.TestCase):
# at the same time this shouldn't affect test outcome
lscale
.
update
()
curr_xcoord
=
lscale
.
scale
.
coords
()[
0
]
self
.
assert
True
(
prev_xcoord
!=
curr_xcoord
)
self
.
assert
NotEqual
(
prev_xcoord
,
curr_xcoord
)
# the label widget should have been repositioned too
linfo_2
=
lscale
.
label
.
place_info
()
self
.
assertEqual
(
lscale
.
label
[
'text'
],
0
)
self
.
assertEqual
(
curr_xcoord
,
int
(
linfo_2
[
'x'
]))
# change the range back
lscale
.
scale
.
configure
(
from_
=
0
,
to
=
10
)
self
.
assert
True
(
prev_xcoord
!=
curr_xcoord
)
self
.
assert
NotEqual
(
prev_xcoord
,
curr_xcoord
)
self
.
assertEqual
(
prev_xcoord
,
int
(
linfo_1
[
'x'
]))
lscale
.
destroy
()
...
...
@@ -146,7 +146,7 @@ class LabeledScaleTest(unittest.TestCase):
# at the same time this shouldn't affect test outcome
x
.
update
()
self
.
assertEqual
(
x
.
label
[
'text'
],
newval
)
self
.
assert
True
(
x
.
scale
.
coords
()[
0
]
>
curr_xcoord
)
self
.
assert
Greater
(
x
.
scale
.
coords
()[
0
],
curr_xcoord
)
self
.
assertEqual
(
x
.
scale
.
coords
()[
0
],
int
(
x
.
label
.
place_info
()[
'x'
]))
...
...
@@ -238,7 +238,7 @@ class OptionMenuTest(unittest.TestCase):
if
last
==
curr
:
# no more menu entries
break
self
.
assert
False
(
curr
==
default
)
self
.
assert
NotEqual
(
curr
,
default
)
i
+=
1
self
.
assertEqual
(
i
,
len
(
items
))
...
...
Lib/tkinter/test/test_ttk/test_style.py
Dosyayı görüntüle @
e3b5a765
...
...
@@ -18,7 +18,7 @@ class StyleTest(unittest.TestCase):
style
.
configure
(
'TButton'
,
background
=
'yellow'
)
self
.
assertEqual
(
style
.
configure
(
'TButton'
,
'background'
),
'yellow'
)
self
.
assert
True
(
isinstance
(
style
.
configure
(
'TButton'
),
dict
)
)
self
.
assert
IsInstance
(
style
.
configure
(
'TButton'
),
dict
)
def
test_map
(
self
):
...
...
@@ -26,7 +26,7 @@ class StyleTest(unittest.TestCase):
style
.
map
(
'TButton'
,
background
=
[(
'active'
,
'background'
,
'blue'
)])
self
.
assertEqual
(
style
.
map
(
'TButton'
,
'background'
),
[(
'active'
,
'background'
,
'blue'
)])
self
.
assert
True
(
isinstance
(
style
.
map
(
'TButton'
),
dict
)
)
self
.
assert
IsInstance
(
style
.
map
(
'TButton'
),
dict
)
def
test_lookup
(
self
):
...
...
@@ -57,7 +57,7 @@ class StyleTest(unittest.TestCase):
self
.
assertEqual
(
style
.
layout
(
'Treeview'
),
tv_style
)
# should return a list
self
.
assert
True
(
isinstance
(
style
.
layout
(
'TButton'
),
list
)
)
self
.
assert
IsInstance
(
style
.
layout
(
'TButton'
),
list
)
# correct layout, but "option" doesn't exist as option
self
.
assertRaises
(
tkinter
.
TclError
,
style
.
layout
,
'Treeview'
,
...
...
Lib/tkinter/test/test_ttk/test_widgets.py
Dosyayı görüntüle @
e3b5a765
...
...
@@ -273,7 +273,7 @@ class CheckbuttonTest(AbstractLabelTest, unittest.TestCase):
cbtn
[
'command'
]
=
''
res
=
cbtn
.
invoke
()
self
.
assertFalse
(
str
(
res
))
self
.
assert
False
(
len
(
success
)
>
1
)
self
.
assert
LessEqual
(
len
(
success
),
1
)
self
.
assertEqual
(
cbtn
[
'offvalue'
],
cbtn
.
tk
.
globalgetvar
(
cbtn
[
'variable'
]))
...
...
@@ -454,7 +454,7 @@ class EntryTest(AbstractWidgetTest, unittest.TestCase):
def
test_bbox
(
self
):
self
.
assertEqual
(
len
(
self
.
entry
.
bbox
(
0
)),
4
)
for
item
in
self
.
entry
.
bbox
(
0
):
self
.
assert
True
(
isinstance
(
item
,
int
)
)
self
.
assert
IsInstance
(
item
,
int
)
self
.
assertRaises
(
tkinter
.
TclError
,
self
.
entry
.
bbox
,
'noindex'
)
self
.
assertRaises
(
tkinter
.
TclError
,
self
.
entry
.
bbox
,
None
)
...
...
@@ -652,7 +652,7 @@ class PanedWindowTest(AbstractWidgetTest, unittest.TestCase):
child
=
ttk
.
Label
()
self
.
paned
.
add
(
child
)
self
.
assert
True
(
isinstance
(
self
.
paned
.
pane
(
0
),
dict
)
)
self
.
assert
IsInstance
(
self
.
paned
.
pane
(
0
),
dict
)
self
.
assertEqual
(
self
.
paned
.
pane
(
0
,
weight
=
None
),
0
)
# newer form for querying a single option
self
.
assertEqual
(
self
.
paned
.
pane
(
0
,
'weight'
),
0
)
...
...
@@ -679,8 +679,8 @@ class PanedWindowTest(AbstractWidgetTest, unittest.TestCase):
curr_pos
=
self
.
paned
.
sashpos
(
0
)
self
.
paned
.
sashpos
(
0
,
1000
)
self
.
assert
True
(
curr_pos
!=
self
.
paned
.
sashpos
(
0
))
self
.
assert
True
(
isinstance
(
self
.
paned
.
sashpos
(
0
),
int
)
)
self
.
assert
NotEqual
(
curr_pos
,
self
.
paned
.
sashpos
(
0
))
self
.
assert
IsInstance
(
self
.
paned
.
sashpos
(
0
),
int
)
@add_standard_options
(
StandardTtkOptionsTests
)
...
...
@@ -720,7 +720,7 @@ class RadiobuttonTest(AbstractLabelTest, unittest.TestCase):
cbtn2
[
'command'
]
=
''
res
=
cbtn2
.
invoke
()
self
.
assertEqual
(
str
(
res
),
''
)
self
.
assert
False
(
len
(
success
)
>
1
)
self
.
assert
LessEqual
(
len
(
success
),
1
)
self
.
assertEqual
(
cbtn2
[
'value'
],
myvar
.
get
())
self
.
assertEqual
(
myvar
.
get
(),
cbtn
.
tk
.
globalgetvar
(
cbtn
[
'variable'
]))
...
...
@@ -982,7 +982,7 @@ class NotebookTest(AbstractWidgetTest, unittest.TestCase):
self
.
nb
.
add
(
self
.
child2
)
self
.
assertEqual
(
self
.
nb
.
tabs
(),
tabs
)
self
.
assertEqual
(
self
.
nb
.
index
(
self
.
child2
),
child2_index
)
self
.
assert
True
(
str
(
self
.
child2
)
==
self
.
nb
.
tabs
()[
child2_index
])
self
.
assert
Equal
(
str
(
self
.
child2
),
self
.
nb
.
tabs
()[
child2_index
])
# but the tab next to it (not hidden) is the one selected now
self
.
assertEqual
(
self
.
nb
.
index
(
'current'
),
curr
+
1
)
...
...
@@ -995,19 +995,19 @@ class NotebookTest(AbstractWidgetTest, unittest.TestCase):
tabs
=
self
.
nb
.
tabs
()
child1_index
=
self
.
nb
.
index
(
self
.
child1
)
self
.
nb
.
forget
(
self
.
child1
)
self
.
assert
False
(
str
(
self
.
child1
)
in
self
.
nb
.
tabs
())
self
.
assert
NotIn
(
str
(
self
.
child1
),
self
.
nb
.
tabs
())
self
.
assertEqual
(
len
(
tabs
)
-
1
,
len
(
self
.
nb
.
tabs
()))
self
.
nb
.
add
(
self
.
child1
)
self
.
assertEqual
(
self
.
nb
.
index
(
self
.
child1
),
1
)
self
.
assert
False
(
child1_index
==
self
.
nb
.
index
(
self
.
child1
))
self
.
assert
NotEqual
(
child1_index
,
self
.
nb
.
index
(
self
.
child1
))
def
test_index
(
self
):
self
.
assertRaises
(
tkinter
.
TclError
,
self
.
nb
.
index
,
-
1
)
self
.
assertRaises
(
tkinter
.
TclError
,
self
.
nb
.
index
,
None
)
self
.
assert
True
(
isinstance
(
self
.
nb
.
index
(
'end'
),
int
)
)
self
.
assert
IsInstance
(
self
.
nb
.
index
(
'end'
),
int
)
self
.
assertEqual
(
self
.
nb
.
index
(
self
.
child1
),
0
)
self
.
assertEqual
(
self
.
nb
.
index
(
self
.
child2
),
1
)
self
.
assertEqual
(
self
.
nb
.
index
(
'end'
),
2
)
...
...
@@ -1071,7 +1071,7 @@ class NotebookTest(AbstractWidgetTest, unittest.TestCase):
self
.
assertRaises
(
tkinter
.
TclError
,
self
.
nb
.
tab
,
'notab'
)
self
.
assertRaises
(
tkinter
.
TclError
,
self
.
nb
.
tab
,
None
)
self
.
assert
True
(
isinstance
(
self
.
nb
.
tab
(
self
.
child1
),
dict
)
)
self
.
assert
IsInstance
(
self
.
nb
.
tab
(
self
.
child1
),
dict
)
self
.
assertEqual
(
self
.
nb
.
tab
(
self
.
child1
,
text
=
None
),
'a'
)
# newer form for querying a single option
self
.
assertEqual
(
self
.
nb
.
tab
(
self
.
child1
,
'text'
),
'a'
)
...
...
@@ -1192,7 +1192,7 @@ class TreeviewTest(AbstractWidgetTest, unittest.TestCase):
bbox
=
self
.
tv
.
bbox
(
children
[
0
])
self
.
assertEqual
(
len
(
bbox
),
4
)
self
.
assert
True
(
isinstance
(
bbox
,
tuple
)
)
self
.
assert
IsInstance
(
bbox
,
tuple
)
for
item
in
bbox
:
if
not
isinstance
(
item
,
int
):
self
.
fail
(
"Invalid bounding box:
%
s"
%
bbox
)
...
...
@@ -1215,7 +1215,7 @@ class TreeviewTest(AbstractWidgetTest, unittest.TestCase):
self
.
assertEqual
(
self
.
tv
.
get_children
(),
())
item_id
=
self
.
tv
.
insert
(
''
,
'end'
)
self
.
assert
True
(
isinstance
(
self
.
tv
.
get_children
(),
tuple
)
)
self
.
assert
IsInstance
(
self
.
tv
.
get_children
(),
tuple
)
self
.
assertEqual
(
self
.
tv
.
get_children
()[
0
],
item_id
)
# add item_id and child3 as children of child2
...
...
@@ -1240,9 +1240,9 @@ class TreeviewTest(AbstractWidgetTest, unittest.TestCase):
def
test_column
(
self
):
# return a dict with all options/values
self
.
assert
True
(
isinstance
(
self
.
tv
.
column
(
'#0'
),
dict
)
)
self
.
assert
IsInstance
(
self
.
tv
.
column
(
'#0'
),
dict
)
# return a single value of the given option
self
.
assert
True
(
isinstance
(
self
.
tv
.
column
(
'#0'
,
width
=
None
),
int
)
)
self
.
assert
IsInstance
(
self
.
tv
.
column
(
'#0'
,
width
=
None
),
int
)
# set a new value for an option
self
.
tv
.
column
(
'#0'
,
width
=
10
)
# testing new way to get option value
...
...
@@ -1355,7 +1355,7 @@ class TreeviewTest(AbstractWidgetTest, unittest.TestCase):
def
test_heading
(
self
):
# check a dict is returned
self
.
assert
True
(
isinstance
(
self
.
tv
.
heading
(
'#0'
),
dict
)
)
self
.
assert
IsInstance
(
self
.
tv
.
heading
(
'#0'
),
dict
)
# check a value is returned
self
.
tv
.
heading
(
'#0'
,
text
=
'hi'
)
...
...
@@ -1466,7 +1466,7 @@ class TreeviewTest(AbstractWidgetTest, unittest.TestCase):
self
.
tv
.
item
(
item
,
values
=
list
(
self
.
tv
.
item
(
item
,
values
=
None
)))
self
.
assertEqual
(
self
.
tv
.
item
(
item
,
values
=
None
),
(
value
,
))
self
.
assert
True
(
isinstance
(
self
.
tv
.
item
(
item
),
dict
)
)
self
.
assert
IsInstance
(
self
.
tv
.
item
(
item
),
dict
)
# erase item values
self
.
tv
.
item
(
item
,
values
=
''
)
...
...
@@ -1567,7 +1567,7 @@ class TreeviewTest(AbstractWidgetTest, unittest.TestCase):
'blue'
)
self
.
assertEqual
(
str
(
self
.
tv
.
tag_configure
(
'test'
,
foreground
=
None
)),
'blue'
)
self
.
assert
True
(
isinstance
(
self
.
tv
.
tag_configure
(
'test'
),
dict
)
)
self
.
assert
IsInstance
(
self
.
tv
.
tag_configure
(
'test'
),
dict
)
@add_standard_options
(
StandardTtkOptionsTests
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment