]> granicus.if.org Git - python/commitdiff
#16664: Add regression tests for glob's behaviour concerning "."-entries
authorHynek Schlawack <hs@ox.cx>
Sun, 16 Dec 2012 11:30:57 +0000 (12:30 +0100)
committerHynek Schlawack <hs@ox.cx>
Sun, 16 Dec 2012 11:30:57 +0000 (12:30 +0100)
Patch by Sebastian Kreft.

Lib/test/test_glob.py
Misc/ACKS
Misc/NEWS

index 692322d2bd4ebcc4b88f2c924b6ab277c50da9c1..285c1690c429ee3bb928b8871e8cde6678378342 100644 (file)
@@ -4,6 +4,7 @@ import glob
 import os
 import shutil
 
+
 class GlobTests(unittest.TestCase):
 
     def norm(self, *parts):
@@ -18,9 +19,11 @@ class GlobTests(unittest.TestCase):
         f.close()
 
     def setUp(self):
-        self.tempdir = TESTFN+"_dir"
+        self.tempdir = TESTFN + "_dir"
         self.mktemp('a', 'D')
         self.mktemp('aab', 'F')
+        self.mktemp('.aa', 'G')
+        self.mktemp('.bb', 'H')
         self.mktemp('aaa', 'zzzF')
         self.mktemp('ZZZ')
         self.mktemp('a', 'bcd', 'EF')
@@ -66,6 +69,8 @@ class GlobTests(unittest.TestCase):
         eq = self.assertSequencesEqual_noorder
         eq(self.glob('a*'), map(self.norm, ['a', 'aab', 'aaa']))
         eq(self.glob('*a'), map(self.norm, ['a', 'aaa']))
+        eq(self.glob('.*'), map(self.norm, ['.aa', '.bb']))
+        eq(self.glob('?aa'), map(self.norm, ['aaa']))
         eq(self.glob('aa?'), map(self.norm, ['aaa', 'aab']))
         eq(self.glob('aa[ab]'), map(self.norm, ['aaa', 'aab']))
         eq(self.glob('*q'), [])
index 8e6fa2a076d4db1954a74d0cc9b8c35bdb11d2e0..ea7bea588ae6389ab9f08e70f38f8c111929b846 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -540,6 +540,7 @@ Jerzy Kozera
 Maksim Kozyarchuk
 Stefan Krah
 Bob Kras
+Sebastian Kreft
 Holger Krekel
 Michael Kremer
 Fabian Kreutz
index de2f3ba51041a140531fa9854f048d5336bce7f1..44b9b06676bd90c939d6805decdb19057f0b0ba0 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -548,6 +548,9 @@ Extension Modules
 Tests
 -----
 
+- Issue #16664: Add regression tests for glob's behaviour concerning entries
+  starting with a ".".  Patch by Sebastian Kreft.
+
 - Issue #15747: ZFS always returns EOPNOTSUPP when attempting to set the
   UF_IMMUTABLE flag (via either chflags or lchflags); refactor affected
   tests in test_posix.py to account for this.