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
28faf03d
Kaydet (Commit)
28faf03d
authored
May 04, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#7855: Add tests for ctypes/winreg for issues found in IronPython. Initial patch by Dino Viehland.
üst
59115aa7
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
51 additions
and
1 deletion
+51
-1
__init__.py
Lib/ctypes/test/__init__.py
+1
-1
test_wintypes.py
Lib/ctypes/test/test_wintypes.py
+43
-0
test_winreg.py
Lib/test/test_winreg.py
+3
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/ctypes/test/__init__.py
Dosyayı görüntüle @
28faf03d
...
@@ -62,7 +62,7 @@ def get_tests(package, mask, verbosity, exclude=()):
...
@@ -62,7 +62,7 @@ def get_tests(package, mask, verbosity, exclude=()):
continue
continue
try
:
try
:
mod
=
__import__
(
modname
,
globals
(),
locals
(),
[
'*'
])
mod
=
__import__
(
modname
,
globals
(),
locals
(),
[
'*'
])
except
ResourceDenied
as
detail
:
except
(
ResourceDenied
,
unittest
.
SkipTest
)
as
detail
:
skipped
.
append
(
modname
)
skipped
.
append
(
modname
)
if
verbosity
>
1
:
if
verbosity
>
1
:
print
(
"Skipped
%
s:
%
s"
%
(
modname
,
detail
),
file
=
sys
.
stderr
)
print
(
"Skipped
%
s:
%
s"
%
(
modname
,
detail
),
file
=
sys
.
stderr
)
...
...
Lib/ctypes/test/test_wintypes.py
0 → 100644
Dosyayı görüntüle @
28faf03d
import
sys
import
unittest
if
not
sys
.
platform
.
startswith
(
'win'
):
raise
unittest
.
SkipTest
(
'Windows-only test'
)
from
ctypes
import
*
from
ctypes
import
wintypes
class
WinTypesTest
(
unittest
.
TestCase
):
def
test_variant_bool
(
self
):
# reads 16-bits from memory, anything non-zero is True
for
true_value
in
(
1
,
32767
,
32768
,
65535
,
65537
):
true
=
POINTER
(
c_int16
)(
c_int16
(
true_value
))
value
=
cast
(
true
,
POINTER
(
wintypes
.
VARIANT_BOOL
))
self
.
assertEqual
(
repr
(
value
.
contents
),
'VARIANT_BOOL(True)'
)
vb
=
wintypes
.
VARIANT_BOOL
()
self
.
assertIs
(
vb
.
value
,
False
)
vb
.
value
=
True
self
.
assertIs
(
vb
.
value
,
True
)
vb
.
value
=
true_value
self
.
assertIs
(
vb
.
value
,
True
)
for
false_value
in
(
0
,
65536
,
262144
,
2
**
33
):
false
=
POINTER
(
c_int16
)(
c_int16
(
false_value
))
value
=
cast
(
false
,
POINTER
(
wintypes
.
VARIANT_BOOL
))
self
.
assertEqual
(
repr
(
value
.
contents
),
'VARIANT_BOOL(False)'
)
# allow any bool conversion on assignment to value
for
set_value
in
(
65536
,
262144
,
2
**
33
):
vb
=
wintypes
.
VARIANT_BOOL
()
vb
.
value
=
set_value
self
.
assertIs
(
vb
.
value
,
True
)
vb
=
wintypes
.
VARIANT_BOOL
()
vb
.
value
=
[
2
,
3
]
self
.
assertIs
(
vb
.
value
,
True
)
vb
.
value
=
[]
self
.
assertIs
(
vb
.
value
,
False
)
if
__name__
==
"__main__"
:
unittest
.
main
()
Lib/test/test_winreg.py
Dosyayı görüntüle @
28faf03d
...
@@ -457,6 +457,9 @@ class Win64WinregTests(BaseWinregTests):
...
@@ -457,6 +457,9 @@ class Win64WinregTests(BaseWinregTests):
DeleteKeyEx
(
HKEY_CURRENT_USER
,
test_reflect_key_name
,
DeleteKeyEx
(
HKEY_CURRENT_USER
,
test_reflect_key_name
,
KEY_WOW64_32KEY
,
0
)
KEY_WOW64_32KEY
,
0
)
def
test_exception_numbers
(
self
):
with
self
.
assertRaises
(
FileNotFoundError
)
as
ctx
:
QueryValue
(
HKEY_CLASSES_ROOT
,
'some_value_that_does_not_exist'
)
def
test_main
():
def
test_main
():
support
.
run_unittest
(
LocalWinregTests
,
RemoteWinregTests
,
support
.
run_unittest
(
LocalWinregTests
,
RemoteWinregTests
,
...
...
Misc/ACKS
Dosyayı görüntüle @
28faf03d
...
@@ -1259,6 +1259,7 @@ Nikita Vetoshkin
...
@@ -1259,6 +1259,7 @@ Nikita Vetoshkin
Al Vezza
Al Vezza
Jacques A. Vidrine
Jacques A. Vidrine
John Viega
John Viega
Dino Viehland
Kannan Vijayan
Kannan Vijayan
Kurt Vile
Kurt Vile
Norman Vine
Norman Vine
...
...
Misc/NEWS
Dosyayı görüntüle @
28faf03d
...
@@ -158,6 +158,9 @@ IDLE
...
@@ -158,6 +158,9 @@ IDLE
Tests
Tests
-----
-----
- Issue #7855: Add tests for ctypes/winreg for issues found in IronPython.
Initial patch by Dino Viehland.
- Issue #17712: Fix test_gdb failures on Ubuntu 13.04.
- Issue #17712: Fix test_gdb failures on Ubuntu 13.04.
- Issue #17835: Fix test_io when the default OS pipe buffer size is larger
- Issue #17835: Fix test_io when the default OS pipe buffer size is larger
...
...
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