Ejemplo n.º 1
0
 def test_match_variable_with_path_fail(self):
     self.assertFalse(filematch.match_key(
         'images/*.png', 'images/README', regexp=False))
Ejemplo n.º 2
0
 def test_match_base_fail_different_path(self):
     self.assertFalse(filematch.match_key(
         'ok.html', 'dir/book.html', regexp=False))
Ejemplo n.º 3
0
 def test_match_variable_base_within_ok(self):
     self.assertTrue(filematch.match_key(
         'image-*.png', 'image-999.png', regexp=False))
Ejemplo n.º 4
0
 def test_match_exact_with_path_ok(self):
     self.assertTrue(filematch.match_key(
         '/dir/index.html', 'dir/index.html', regexp=False))
Ejemplo n.º 5
0
 def test_match_base_ok_simple(self):
     self.assertTrue(filematch.match_key(
         'index.html', 'index.html', regexp=False))
Ejemplo n.º 6
0
 def test_match_regex_dollar_suffix_ok(self):
     self.assertTrue(filematch.match_key(
         r'image-\d+\.png$', 'image-999.png', regexp=True))
Ejemplo n.º 7
0
 def test_match_base_fail_different_name(self):
     self.assertFalse(filematch.match_key('ok.html', 'book.html'))
Ejemplo n.º 8
0
 def test_match_base_ok_simple(self):
     self.assertTrue(filematch.match_key('index.html', 'index.html'))
Ejemplo n.º 9
0
 def test_match_base_ok_path(self):
     self.assertTrue(filematch.match_key('index.html', 'dir/index.html'))
Ejemplo n.º 10
0
 def test_match_exact_with_path_ok(self):
     self.assertTrue(filematch.match_key(
         '/dir/index.html', 'dir/index.html'))
Ejemplo n.º 11
0
 def test_match_exact_with_path_fail_different_path(self):
     self.assertFalse(filematch.match_key(
         '/dir/index.html', 'altdir/image.png'))
Ejemplo n.º 12
0
 def test_match_exact_fail_different_path(self):
     self.assertFalse(filematch.match_key('/index.html', 'dir/index.html'))
Ejemplo n.º 13
0
 def test_match_exact_fail_different_name(self):
     self.assertFalse(filematch.match_key('/index.html', 'image.png'))
Ejemplo n.º 14
0
 def test_match_empty_on_file(self):
     with self.assertRaises(ValueError):
         filematch.match_key('', 'index.html')
Ejemplo n.º 15
0
 def test_match_one_ok(self):
     self.assertTrue(filematch.match_key(
         'image?.png', 'image1.png', regexp=False))
Ejemplo n.º 16
0
 def test_match_base_fail_different_path(self):
     self.assertFalse(filematch.match_key('ok.html', 'dir/book.html'))
Ejemplo n.º 17
0
 def test_match_one_fail(self):
     self.assertFalse(filematch.match_key(
         'image?.png', 'image10.png', regexp=False))
Ejemplo n.º 18
0
 def test_match_variable_base_ok(self):
     self.assertTrue(filematch.match_key('*.html', 'index.html'))
Ejemplo n.º 19
0
 def test_match_regex_caret_prefix_fail(self):
     self.assertFalse(filematch.match_key(
         r'^dir\/index\.html', 'altdir/index.html', regexp=True))
Ejemplo n.º 20
0
 def test_match_variable_base_within_ok(self):
     self.assertTrue(filematch.match_key('image-*.png', 'image-999.png'))
Ejemplo n.º 21
0
 def test_match_exact_fail_different_path(self):
     self.assertFalse(filematch.match_key(
         '/index.html', 'dir/index.html', regexp=False))
Ejemplo n.º 22
0
 def test_match_variable_with_path_ok(self):
     self.assertTrue(filematch.match_key('images/*.png', 'images/999.png'))
Ejemplo n.º 23
0
 def test_match_exact_with_path_fail_different_path(self):
     self.assertFalse(filematch.match_key(
         '/dir/index.html', 'altdir/image.png', regexp=False))
Ejemplo n.º 24
0
 def test_match_variable_with_path_fail(self):
     self.assertFalse(filematch.match_key('images/*.png', 'images/README'))
Ejemplo n.º 25
0
 def test_match_base_ok_path(self):
     self.assertTrue(filematch.match_key(
         'index.html', 'dir/index.html', regexp=False))
Ejemplo n.º 26
0
 def test_match_multilevel_fail(self):
     self.assertFalse(filematch.match_key(
         '/dir/*.html', 'dir/second/file.html'))
Ejemplo n.º 27
0
 def test_match_variable_base_ok(self):
     self.assertTrue(filematch.match_key(
         '*.html', 'index.html', regexp=False))
Ejemplo n.º 28
0
 def test_match_one_ok(self):
     self.assertTrue(filematch.match_key('image?.png', 'image1.png'))
Ejemplo n.º 29
0
 def test_match_variable_with_path_ok(self):
     self.assertTrue(filematch.match_key(
         'images/*.png', 'images/999.png', regexp=False))
Ejemplo n.º 30
0
 def test_match_one_fail(self):
     self.assertFalse(filematch.match_key('image?.png', 'image10.png'))
Ejemplo n.º 31
0
 def test_match_multilevel_fail(self):
     self.assertFalse(filematch.match_key(
         '/dir/*.html', 'dir/second/file.html', regexp=False))
Ejemplo n.º 32
0
 def test_match_empty_on_file(self):
     with self.assertRaises(ValueError):
         filematch.match_key('', 'index.html')
Ejemplo n.º 33
0
 def test_match_exact_ok(self):
     self.assertTrue(filematch.match_key(
         '/index.html', 'index.html', regexp=False))
Ejemplo n.º 34
0
 def test_match_empty_on_empty(self):
     with self.assertRaises(ValueError):
         filematch.match_key('', '')
Ejemplo n.º 35
0
 def test_match_empty_on_empty(self):
     with self.assertRaises(ValueError):
         filematch.match_key('', '', regexp=False)
Ejemplo n.º 36
0
 def test_match_exact_ok(self):
     self.assertTrue(filematch.match_key('/index.html', 'index.html'))
Ejemplo n.º 37
0
 def test_match_regex_dollar_suffix_fail(self):
     self.assertFalse(filematch.match_key(
         r'image-\d+\.png$', 'image-name.png', regexp=True))
Ejemplo n.º 38
0
 def test_match_exact_fail_different_name(self):
     self.assertFalse(filematch.match_key(
         '/index.html', 'image.png', regexp=False))
Ejemplo n.º 39
0
 def test_match_regex_caret_and_dollar_ok(self):
     self.assertTrue(filematch.match_key(
         r'^dir\/index\.html$', 'dir/index.html', regexp=True))
Ejemplo n.º 40
0
 def test_match_exact_with_path_fail_different_name(self):
     self.assertFalse(
         filematch.match_key('/dir/index.html', 'dir/image.png'))