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
8e4b7ac7
Kaydet (Commit)
8e4b7ac7
authored
Haz 14, 2016
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #16182: Merge test_readline from 3.5
üst
17f0e618
056f76d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
test_readline.py
Lib/test/test_readline.py
+13
-5
No files found.
Lib/test/test_readline.py
Dosyayı görüntüle @
8e4b7ac7
...
...
@@ -15,6 +15,8 @@ from test.support.script_helper import assert_python_ok
# Skip tests if there is no readline module
readline
=
import_module
(
'readline'
)
is_editline
=
readline
.
__doc__
and
"libedit"
in
readline
.
__doc__
@unittest.skipUnless
(
hasattr
(
readline
,
"clear_history"
),
"The history update test cannot be run because the "
"clear_history method is not available."
)
...
...
@@ -99,14 +101,17 @@ class TestHistoryManipulation (unittest.TestCase):
self
.
addCleanup
(
os
.
remove
,
TESTFN
)
readline
.
clear_history
()
readline
.
read_history_file
(
TESTFN
)
if
is_editline
:
# An add_history() call seems to be required for get_history_
# item() to register items from the file
readline
.
add_history
(
"dummy"
)
self
.
assertEqual
(
readline
.
get_history_item
(
1
),
"entrée 1"
)
self
.
assertEqual
(
readline
.
get_history_item
(
2
),
"entrée 22"
)
class
TestReadline
(
unittest
.
TestCase
):
@unittest.skipIf
(
readline
.
_READLINE_VERSION
<
0x0600
and
"libedit"
not
in
readline
.
__doc__
,
@unittest.skipIf
(
readline
.
_READLINE_VERSION
<
0x0600
and
not
is_editline
,
"not supported in this library version"
)
def
test_init
(
self
):
# Issue #19884: Ensure that the ANSI sequence "\033[1034h" is not
...
...
@@ -142,7 +147,9 @@ print("History length:", readline.get_current_history_length())
if readline.__doc__ and "libedit" in readline.__doc__:
readline.parse_and_bind(r'bind ^B ed-prev-char')
readline.parse_and_bind(r'bind "\t" rl_complete')
readline.parse_and_bind('bind -s ^A "|t\xEB[after]"')
# The insert_line() call via pre_input_hook() does nothing with Editline,
# so include the extra text that would have been inserted here
readline.parse_and_bind('bind -s ^A "[\xEFnserted]|t\xEB[after]"')
else:
readline.parse_and_bind(r'Control-b: backward-char')
readline.parse_and_bind(r'"\t": complete')
...
...
@@ -188,8 +195,9 @@ print("history", ascii(readline.get_history_item(1)))
self
.
assertIn
(
b
"text 't
\\
xeb'
\r\n
"
,
output
)
self
.
assertIn
(
b
"line '[
\\
xefnserted]|t
\\
xeb[after]'
\r\n
"
,
output
)
self
.
assertIn
(
b
"indexes 11 13
\r\n
"
,
output
)
self
.
assertIn
(
b
"substitution 't
\\
xeb'
\r\n
"
,
output
)
self
.
assertIn
(
b
"matches ['t
\\
xebnt', 't
\\
xebxt']
\r\n
"
,
output
)
if
not
is_editline
:
# display() hook not called under Editline
self
.
assertIn
(
b
"substitution 't
\\
xeb'
\r\n
"
,
output
)
self
.
assertIn
(
b
"matches ['t
\\
xebnt', 't
\\
xebxt']
\r\n
"
,
output
)
expected
=
br
"'[
\xef
nserted]|t
\xeb
xt[after]'"
self
.
assertIn
(
b
"result "
+
expected
+
b
"
\r\n
"
,
output
)
self
.
assertIn
(
b
"history "
+
expected
+
b
"
\r\n
"
,
output
)
...
...
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