~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_win32utils.py

  • Committer: Kuno Meyer
  • Date: 2007-07-13 18:43:01 UTC
  • mto: This revision was merged to the branch mainline in revision 2655.
  • Revision ID: kuno.meyer@gmx.ch-20070713184301-aqd22mud85c4gz1x
Added direct unit tests for win32utils.glob_expand().

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
from bzrlib.tests import TestCaseInTempDir
 
18
from bzrlib.win32utils import glob_expand
 
19
 
 
20
 
 
21
class Win32UtilsGlobExpand(TestCaseInTempDir):
 
22
   
 
23
    def test_empty_tree(self):
 
24
        self.build_tree([])
 
25
        
 
26
        testset = [[['a'], ['a']],
 
27
                   [['?'], ['?']],
 
28
                   [['*'], ['*']],
 
29
                   [['a', 'a'], ['a', 'a']]]
 
30
                   
 
31
        self._run_testset(testset)
 
32
        
 
33
    def test_tree1(self):
 
34
        self.build_tree(['a', 'a1', 'a2', 'a11', 'a.1',
 
35
                         'b', 'b1', 'b2', 'b3',
 
36
                         'c/', 'c/c1', 'c/c2', 
 
37
                         'd/', 'd/d1', 'd/d2'])
 
38
        
 
39
        testset = [# no wildcards
 
40
                   [['a'], ['a']],
 
41
                   [['a', 'a' ], ['a', 'a']],
 
42
                   [['A'], ['A']],
 
43
 
 
44
                   [['d'], ['d']],
 
45
                   [['d/'], ['d/']],
 
46
                   [['d\\'], ['d\\']],
 
47
                   
 
48
                   # wildcards
 
49
                   [['a*'], ['a', 'a1', 'a2', 'a11', 'a.1']],
 
50
                   [['?'], ['a', 'b', 'c', 'd']],
 
51
                   [['a?'], ['a1', 'a2']],
 
52
                   [['a??'], ['a11', 'a.1']],
 
53
                   [['b[1-2]'], ['b1', 'b2']],
 
54
                   [['A?'], ['a1', 'a2']],
 
55
                   
 
56
                   [['d/*'], ['d\\d1', 'd\\d2']],
 
57
                   [['d\\*'], ['d\\d1', 'd\\d2']],
 
58
                   [['?\\*'], ['c\\c1', 'c\\c2', 'd\\d1', 'd\\d2']],
 
59
                   [['*\\*'], ['c\\c1', 'c\\c2', 'd\\d1', 'd\\d2']],
 
60
                   [['*/'], ['c\\', 'd\\']],
 
61
                   [['*\\'], ['c\\', 'd\\']]]
 
62
 
 
63
        self._run_testset(testset)                   
 
64
                      
 
65
    def _run_testset(self, testset):
 
66
        for pattern, expected in testset:
 
67
            result = glob_expand(pattern)
 
68
            expected.sort()
 
69
            result.sort()
 
70
            self.assertEqual(expected, result, 'pattern %s' % pattern)
 
71