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
f2d95263
Kaydet (Commit)
f2d95263
authored
Haz 06, 2014
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge with 3.4
üst
83500dc7
4a3f135c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
33 deletions
+34
-33
test_textview.py
Lib/idlelib/idle_test/test_textview.py
+34
-33
No files found.
Lib/idlelib/idle_test/test_textview.py
Dosyayı görüntüle @
f2d95263
'''Test the functions and main class method of textView.py.'''
'''Test the functions and main class method of textView.py.
Since all methods and functions create (or destroy) a TextViewer, which
is a widget containing multiple widgets, all tests must be gui tests.
Using mock Text would not change this. Other mocks are used to retrieve
information about calls.
The coverage is essentially 100
%
.
'''
from
test.support
import
requires
requires
(
'gui'
)
import
unittest
import
unittest
import
os
import
os
from
test.support
import
requires
from
tkinter
import
Tk
,
Text
,
TclError
from
tkinter
import
Tk
,
Text
,
TclError
from
idlelib
import
textView
as
tv
from
idlelib
import
textView
as
tv
from
idlelib.idle_test.mock_idle
import
Func
from
idlelib.idle_test.mock_idle
import
Func
from
idlelib.idle_test.mock_tk
import
Mbox
from
idlelib.idle_test.mock_tk
import
Mbox
orig_mbox
=
tv
.
tkMessageBox
def
setUpModule
():
global
root
root
=
Tk
()
class
TextViewTest
(
unittest
.
TestCase
):
def
tearDownModule
():
global
root
root
.
destroy
()
del
root
@classmethod
def
setUpClass
(
cls
):
requires
(
'gui'
)
cls
.
root
=
Tk
()
cls
.
TV
=
TV
=
tv
.
TextViewer
TV
.
transient
=
Func
()
TV
.
grab_set
=
Func
()
TV
.
wait_window
=
Func
()
@classmethod
class
TV
(
tv
.
TextViewer
):
# used by TextViewTest
def
tearDownClass
(
cls
):
transient
=
Func
()
cls
.
root
.
destroy
()
grab_set
=
Func
()
TV
=
cls
.
TV
wait_window
=
Func
()
del
cls
.
root
,
cls
.
TV
del
TV
.
transient
,
TV
.
grab_set
,
TV
.
wait_window
class
TextViewTest
(
unittest
.
TestCase
):
def
setUp
(
self
):
def
setUp
(
self
):
TV
=
self
.
TV
TV
.
transient
.
__init__
()
TV
.
transient
.
__init__
()
TV
.
grab_set
.
__init__
()
TV
.
grab_set
.
__init__
()
TV
.
wait_window
.
__init__
()
TV
.
wait_window
.
__init__
()
def
test_init_modal
(
self
):
def
test_init_modal
(
self
):
TV
=
self
.
TV
view
=
TV
(
root
,
'Title'
,
'test text'
)
view
=
TV
(
self
.
root
,
'Title'
,
'test text'
)
self
.
assertTrue
(
TV
.
transient
.
called
)
self
.
assertTrue
(
TV
.
transient
.
called
)
self
.
assertTrue
(
TV
.
grab_set
.
called
)
self
.
assertTrue
(
TV
.
grab_set
.
called
)
self
.
assertTrue
(
TV
.
wait_window
.
called
)
self
.
assertTrue
(
TV
.
wait_window
.
called
)
view
.
Ok
()
view
.
Ok
()
def
test_init_nonmodal
(
self
):
def
test_init_nonmodal
(
self
):
TV
=
self
.
TV
view
=
TV
(
root
,
'Title'
,
'test text'
,
modal
=
False
)
view
=
TV
(
self
.
root
,
'Title'
,
'test text'
,
modal
=
False
)
self
.
assertFalse
(
TV
.
transient
.
called
)
self
.
assertFalse
(
TV
.
transient
.
called
)
self
.
assertFalse
(
TV
.
grab_set
.
called
)
self
.
assertFalse
(
TV
.
grab_set
.
called
)
self
.
assertFalse
(
TV
.
wait_window
.
called
)
self
.
assertFalse
(
TV
.
wait_window
.
called
)
view
.
Ok
()
view
.
Ok
()
def
test_ok
(
self
):
def
test_ok
(
self
):
view
=
self
.
TV
(
self
.
root
,
'Title'
,
'test text'
,
modal
=
False
)
view
=
TV
(
root
,
'Title'
,
'test text'
,
modal
=
False
)
view
.
destroy
=
Func
()
view
.
destroy
=
Func
()
view
.
Ok
()
view
.
Ok
()
self
.
assertTrue
(
view
.
destroy
.
called
)
self
.
assertTrue
(
view
.
destroy
.
called
)
...
@@ -64,33 +66,32 @@ class textviewTest(unittest.TestCase):
...
@@ -64,33 +66,32 @@ class textviewTest(unittest.TestCase):
@classmethod
@classmethod
def
setUpClass
(
cls
):
def
setUpClass
(
cls
):
requires
(
'gui'
)
cls
.
orig_mbox
=
tv
.
tkMessageBox
cls
.
root
=
Tk
()
tv
.
tkMessageBox
=
Mbox
tv
.
tkMessageBox
=
Mbox
@classmethod
@classmethod
def
tearDownClass
(
cls
):
def
tearDownClass
(
cls
):
cls
.
root
.
destroy
()
tv
.
tkMessageBox
=
cls
.
orig_mbox
del
cls
.
root
del
cls
.
orig_mbox
tv
.
tkMessageBox
=
orig_mbox
def
test_view_text
(
self
):
def
test_view_text
(
self
):
# If modal True, tkinter will error with 'can't invoke "event" command'
# If modal True, tkinter will error with 'can't invoke "event" command'
view
=
tv
.
view_text
(
self
.
root
,
'Title'
,
'test text'
,
modal
=
False
)
view
=
tv
.
view_text
(
root
,
'Title'
,
'test text'
,
modal
=
False
)
self
.
assertIsInstance
(
view
,
tv
.
TextViewer
)
self
.
assertIsInstance
(
view
,
tv
.
TextViewer
)
def
test_view_file
(
self
):
def
test_view_file
(
self
):
test_dir
=
os
.
path
.
dirname
(
__file__
)
test_dir
=
os
.
path
.
dirname
(
__file__
)
testfile
=
os
.
path
.
join
(
test_dir
,
'test_textview.py'
)
testfile
=
os
.
path
.
join
(
test_dir
,
'test_textview.py'
)
view
=
tv
.
view_file
(
self
.
root
,
'Title'
,
testfile
,
modal
=
False
)
view
=
tv
.
view_file
(
root
,
'Title'
,
testfile
,
modal
=
False
)
self
.
assertIsInstance
(
view
,
tv
.
TextViewer
)
self
.
assertIsInstance
(
view
,
tv
.
TextViewer
)
self
.
assertIn
(
'Test'
,
view
.
textView
.
get
(
'1.0'
,
'1.end'
))
self
.
assertIn
(
'Test'
,
view
.
textView
.
get
(
'1.0'
,
'1.end'
))
view
.
Ok
()
view
.
Ok
()
# Mock messagebox will be used and view_file will not return anything
# Mock messagebox will be used and view_file will not return anything
testfile
=
os
.
path
.
join
(
test_dir
,
'../notthere.py'
)
testfile
=
os
.
path
.
join
(
test_dir
,
'../notthere.py'
)
view
=
tv
.
view_file
(
self
.
root
,
'Title'
,
testfile
,
modal
=
False
)
view
=
tv
.
view_file
(
root
,
'Title'
,
testfile
,
modal
=
False
)
self
.
assertIsNone
(
view
)
self
.
assertIsNone
(
view
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
unittest
.
main
(
verbosity
=
2
)
unittest
.
main
(
verbosity
=
2
)
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