Ejemplo n.º 1
0
 def test_stars(self):
     left = Matcher('some/*/path/')
     right = Matcher('with/file')
     concatenated = left.concat(right)
     self.assertEqual(concatenated.prefix, 'some/')
     concatenated = right.concat(left)
     self.assertEqual(concatenated.prefix, 'with/filesome/')
Ejemplo n.º 2
0
 def test_variables_sub(self):
     one = Matcher('{base}/{loc}/*', {'base': 'ONE_BASE'})
     other = Matcher('{base}/somewhere/*', {'base': 'OTHER_BASE'})
     self.assertEqual(
         one.sub(other, 'ONE_BASE/ab-CD/special'),
         'OTHER_BASE/somewhere/special'
     )
Ejemplo n.º 3
0
 def test_plain(self):
     left = Matcher('some/path/')
     right = Matcher('with/file')
     concatenated = left.concat(right)
     self.assertEqual(str(concatenated), 'some/path/with/file')
     self.assertEqual(concatenated.prefix, 'some/path/with/file')
     pattern_concatenated = left.concat('with/file')
     self.assertEqual(concatenated, pattern_concatenated)
Ejemplo n.º 4
0
 def test_plain(self):
     left = Matcher('some/path/')
     right = Matcher('with/file')
     concatenated = left.concat(right)
     self.assertEqual(str(concatenated), 'some/path/with/file')
     self.assertEqual(concatenated.prefix, 'some/path/with/file')
     pattern_concatenated = left.concat('with/file')
     self.assertEqual(concatenated, pattern_concatenated)
Ejemplo n.º 5
0
 def test_copy(self):
     one = Matcher('some/path', root=self.path('/one-root'))
     other = Matcher(one, root=self.path('/different-root'))
     self.assertIsNone(other.match('some/path'))
     self.assertIsNone(
         other.match(self.path('/one-root/some/path'))
     )
     self.assertIsNotNone(
         other.match(self.path('/different-root/some/path'))
     )
Ejemplo n.º 6
0
 def test_encoded_prefix(self):
     self.assertEqual(
         Matcher('foo/bar.file', encoding='utf-8').prefix, b'foo/bar.file')
     self.assertEqual(Matcher('foo/*', encoding='utf-8').prefix, b'foo/')
     self.assertEqual(
         Matcher('foo/{v}/bar', encoding='utf-8').prefix, b'foo/')
     self.assertEqual(
         Matcher('foo/{v}/bar', {
             'v': 'expanded'
         }, encoding='utf-8').prefix, b'foo/expanded/bar')
Ejemplo n.º 7
0
 def test_rooted(self):
     r1 = self.path('/one-root')
     r2 = self.path('/other-root')
     one = Matcher(self.path('/one-root/full/path'), root=r2)
     self.assertIsNone(one.match(self.path('/other-root/full/path')))
     # concat r2 and r1. r1 is absolute, so we gotta trick that
     concat_root = r2
     if not r1.startswith('/'):
         # windows absolute paths don't start with '/', add one
         concat_root += '/'
     concat_root += r1
     self.assertIsNone(one.match(concat_root + '/full/path'))
     self.assertIsNotNone(one.match(self.path('/one-root/full/path')))
Ejemplo n.º 8
0
 def test_rooted(self):
     r1 = self.path('/one-root')
     r2 = self.path('/other-root')
     one = Matcher(self.path('/one-root/full/path'), root=r2)
     self.assertIsNone(one.match(self.path('/other-root/full/path')))
     # concat r2 and r1. r1 is absolute, so we gotta trick that
     concat_root = r2
     if not r1.startswith('/'):
         # windows absolute paths don't start with '/', add one
         concat_root += '/'
     concat_root += r1
     self.assertIsNone(one.match(concat_root + '/full/path'))
     self.assertIsNotNone(one.match(self.path('/one-root/full/path')))
Ejemplo n.º 9
0
 def test_aliases(self):
     # test legacy locale code mapping
     # he <-> iw, id <-> in, yi <-> ji
     one = Matcher('values-{android_locale}/strings.xml')
     for legacy, standard in six.iteritems(ANDROID_STANDARD_MAP):
         self.assertDictEqual(
             one.match('values-{}/strings.xml'.format(legacy)), {
                 'android_locale': legacy,
                 'locale': standard
             })
         self.assertEqual(
             one.with_env({
                 'locale': standard
             }).prefix, 'values-{}/strings.xml'.format(legacy))
Ejemplo n.º 10
0
 def test_encoded_variables(self):
     self.assertDictEqual(
         Matcher('foo/bar.file', encoding='utf-8').match(b'foo/bar.file'),
         {})
     self.assertDictEqual(
         Matcher('{path}/bar.file',
                 encoding='utf-8').match(b'foo/bar.file'), {'path': 'foo'})
     self.assertDictEqual(
         Matcher('{l}*', {
             'l': 'foo/{locale}/'
         }, encoding='utf-8').match(b'foo/it/path'), {
             'l': 'foo/it/',
             'locale': 'it',
             's1': 'path',
         })
Ejemplo n.º 11
0
 def test_repeat(self):
     self.assertEqual(
         Matcher('{android_locale}/{android_locale}').match(
             'b+sr+Latn/b+sr+Latn'), {
                 'android_locale': 'b+sr+Latn',
                 'locale': 'sr-Latn'
             })
     self.assertEqual(
         Matcher('{android_locale}/{android_locale}',
                 env={
                     'locale': 'sr-Latn'
                 }).match('b+sr+Latn/b+sr+Latn'), {
                     'android_locale': 'b+sr+Latn',
                     'locale': 'sr-Latn'
                 })
Ejemplo n.º 12
0
 def test_prefix(self):
     one = Matcher('values-{android_locale}/strings.xml')
     self.assertEqual(
         one.with_env({
             'locale': 'de'
         }).prefix, 'values-de/strings.xml')
     self.assertEqual(
         one.with_env({
             'locale': 'de-DE'
         }).prefix, 'values-de-rDE/strings.xml')
     self.assertEqual(
         one.with_env({
             'locale': 'sr-Latn'
         }).prefix, 'values-b+sr+Latn/strings.xml')
     self.assertEqual(one.prefix, 'values-')
Ejemplo n.º 13
0
 def test_aliases(self):
     # test legacy locale code mapping
     # he <-> iw, id <-> in, yi <-> ji
     one = Matcher('values-{android_locale}/strings.xml')
     for legacy, standard in six.iteritems(ANDROID_STANDARD_MAP):
         self.assertDictEqual(
             one.match('values-{}/strings.xml'.format(legacy)),
             {
                 'android_locale': legacy,
                 'locale': standard
             }
         )
         self.assertEqual(
             one.with_env({'locale': standard}).prefix,
             'values-{}/strings.xml'.format(legacy)
         )
Ejemplo n.º 14
0
 def test_copy(self):
     one = Matcher('{base}/{loc}/*', {
         'base': 'ONE_BASE',
         'generic': 'keep'
     })
     other = Matcher(one, {'base': 'OTHER_BASE'})
     self.assertEqual(one.sub(other, 'ONE_BASE/ab-CD/special'),
                      'OTHER_BASE/ab-CD/special')
     self.assertDictEqual(one.env, {
         'base': ['ONE_BASE'],
         'generic': ['keep']
     })
     self.assertDictEqual(other.env, {
         'base': ['OTHER_BASE'],
         'generic': ['keep']
     })
Ejemplo n.º 15
0
 def test_variables(self):
     self.assertDictEqual(Matcher('foo/bar.file').match('foo/bar.file'), {})
     self.assertDictEqual(
         Matcher('{path}/bar.file').match('foo/bar.file'), {'path': 'foo'})
     self.assertDictEqual(
         Matcher('{ path }/bar.file').match('foo/bar.file'),
         {'path': 'foo'})
     self.assertIsNone(
         Matcher('{ var }/foopy/{ var }/bears').match(
             'one/foopy/other/bears'))
     self.assertDictEqual(
         Matcher('{ var }/foopy/{ var }/bears').match(
             'same_value/foopy/same_value/bears'), {'var': 'same_value'})
     self.assertIsNone(
         Matcher('{ var }/foopy/bears', {
             'var': 'other'
         }).match('one/foopy/bears'))
     self.assertDictEqual(
         Matcher('{ var }/foopy/bears', {
             'var': 'one'
         }).match('one/foopy/bears'), {'var': 'one'})
     self.assertDictEqual(
         Matcher('{one}/{two}/something', {
             'one': 'some/segment',
             'two': 'with/a/lot/of'
         }).match('some/segment/with/a/lot/of/something'), {
             'one': 'some/segment',
             'two': 'with/a/lot/of'
         })
     self.assertDictEqual(
         Matcher('{l}**', {
             'l': 'foo/{locale}/'
         }).match('foo/it/path'), {
             'l': 'foo/it/',
             'locale': 'it',
             's1': 'path',
         })
     self.assertDictEqual(
         Matcher('{l}*', {
             'l': 'foo/{locale}/'
         }).match('foo/it/path'), {
             'l': 'foo/it/',
             'locale': 'it',
             's1': 'path',
         })
Ejemplo n.º 16
0
 def test_prefix(self):
     one = Matcher('values-{android_locale}/strings.xml')
     self.assertEqual(
         one.with_env({'locale': 'de'}).prefix,
         'values-de/strings.xml'
     )
     self.assertEqual(
         one.with_env({'locale': 'de-DE'}).prefix,
         'values-de-rDE/strings.xml'
     )
     self.assertEqual(
         one.with_env({'locale': 'sr-Latn'}).prefix,
         'values-b+sr+Latn/strings.xml'
     )
     self.assertEqual(
         one.prefix,
         'values-'
     )
Ejemplo n.º 17
0
 def test_variable(self):
     r1 = self.path('/one-root')
     r2 = self.path('/other-root')
     one = Matcher('{var}/path', env={'var': 'relative-dir'}, root=r1)
     self.assertIsNone(one.match('relative-dir/path'))
     self.assertIsNotNone(
         one.match(self.path('/one-root/relative-dir/path')))
     other = Matcher(one, env={'var': r2})
     self.assertIsNone(other.match(
         self.path('/one-root/relative-dir/path')))
     self.assertIsNotNone(other.match(self.path('/other-root/path')))
Ejemplo n.º 18
0
 def test_match(self):
     # test matches as well as groupdict aliasing.
     one = Matcher('values-{android_locale}/strings.xml')
     self.assertEqual(
         one.match('values-de/strings.xml'),
         {
             'android_locale': 'de',
             'locale': 'de'
         }
     )
     self.assertEqual(
         one.match('values-de-rDE/strings.xml'),
         {
             'android_locale': 'de-rDE',
             'locale': 'de-DE'
         }
     )
     self.assertEqual(
         one.match('values-b+sr+Latn/strings.xml'),
         {
             'android_locale': 'b+sr+Latn',
             'locale': 'sr-Latn'
         }
     )
     self.assertEqual(
         one.with_env(
             {'locale': 'de'}
         ).match('values-de/strings.xml'),
         {
             'android_locale': 'de',
             'locale': 'de'
         }
     )
     self.assertEqual(
         one.with_env(
             {'locale': 'de-DE'}
         ).match('values-de-rDE/strings.xml'),
         {
             'android_locale': 'de-rDE',
             'locale': 'de-DE'
         }
     )
     self.assertEqual(
         one.with_env(
             {'locale': 'sr-Latn'}
         ).match('values-b+sr+Latn/strings.xml'),
         {
             'android_locale': 'b+sr+Latn',
             'locale': 'sr-Latn'
         }
     )
Ejemplo n.º 19
0
 def test_copy(self):
     one = Matcher('some/path', root=self.path('/one-root'))
     other = Matcher(one, root=self.path('/different-root'))
     self.assertIsNone(other.match('some/path'))
     self.assertIsNone(other.match(self.path('/one-root/some/path')))
     self.assertIsNotNone(
         other.match(self.path('/different-root/some/path')))
Ejemplo n.º 20
0
 def test_stars(self):
     left = Matcher('some/*/path/')
     right = Matcher('with/file')
     concatenated = left.concat(right)
     self.assertEqual(concatenated.prefix, 'some/')
     concatenated = right.concat(left)
     self.assertEqual(concatenated.prefix, 'with/filesome/')
Ejemplo n.º 21
0
 def test_mismatch(self):
     # test failed matches
     one = Matcher('values-{android_locale}/strings.xml')
     self.assertIsNone(
         one.with_env({'locale': 'de'}).match(
             'values-fr.xml'
         )
     )
     self.assertIsNone(
         one.with_env({'locale': 'de-DE'}).match(
             'values-de-DE.xml'
         )
     )
     self.assertIsNone(
         one.with_env({'locale': 'sr-Latn'}).match(
             'values-sr-Latn.xml'
         )
     )
     self.assertIsNone(
         Matcher('{android_locale}/{android_locale}').match(
             'b+sr+Latn/de-rDE'
         )
     )
Ejemplo n.º 22
0
 def test_copy(self):
     one = Matcher('{base}/{loc}/*', {
         'base': 'ONE_BASE',
         'generic': 'keep'
     })
     other = Matcher(one, {'base': 'OTHER_BASE'})
     self.assertEqual(
         one.sub(other, 'ONE_BASE/ab-CD/special'),
         'OTHER_BASE/ab-CD/special'
     )
     self.assertDictEqual(
         one.env,
         {
             'base': ['ONE_BASE'],
             'generic': ['keep']
         }
     )
     self.assertDictEqual(
         other.env,
         {
             'base': ['OTHER_BASE'],
             'generic': ['keep']
         }
     )
Ejemplo n.º 23
0
 def test_mismatch(self):
     # test failed matches
     one = Matcher('values-{android_locale}/strings.xml')
     self.assertIsNone(
         one.with_env({
             'locale': 'de'
         }).match('values-fr.xml'))
     self.assertIsNone(
         one.with_env({
             'locale': 'de-DE'
         }).match('values-de-DE.xml'))
     self.assertIsNone(
         one.with_env({
             'locale': 'sr-Latn'
         }).match('values-sr-Latn.xml'))
     self.assertIsNone(
         Matcher('{android_locale}/{android_locale}').match(
             'b+sr+Latn/de-rDE'))
Ejemplo n.º 24
0
 def test_variable(self):
     r1 = self.path('/one-root')
     r2 = self.path('/other-root')
     one = Matcher(
         '{var}/path',
         env={'var': 'relative-dir'},
         root=r1
     )
     self.assertIsNone(one.match('relative-dir/path'))
     self.assertIsNotNone(
         one.match(self.path('/one-root/relative-dir/path'))
     )
     other = Matcher(one, env={'var': r2})
     self.assertIsNone(
         other.match(self.path('/one-root/relative-dir/path'))
     )
     self.assertIsNotNone(
         other.match(self.path('/other-root/path'))
     )
Ejemplo n.º 25
0
 def test_matcher(self):
     one = Matcher('foo/*')
     self.assertTrue(one.match('foo/baz'))
     self.assertFalse(one.match('foo/baz/qux'))
     other = Matcher('bar/*')
     self.assertTrue(other.match('bar/baz'))
     self.assertFalse(other.match('bar/baz/qux'))
     self.assertEqual(one.sub(other, 'foo/baz'), 'bar/baz')
     self.assertIsNone(one.sub(other, 'bar/baz'))
     one = Matcher('foo/**')
     self.assertTrue(one.match('foo/baz'))
     self.assertTrue(one.match('foo/baz/qux'))
     other = Matcher('bar/**')
     self.assertTrue(other.match('bar/baz'))
     self.assertTrue(other.match('bar/baz/qux'))
     self.assertEqual(one.sub(other, 'foo/baz'), 'bar/baz')
     self.assertEqual(one.sub(other, 'foo/baz/qux'), 'bar/baz/qux')
     one = Matcher('foo/*/one/**')
     self.assertTrue(one.match('foo/baz/one/qux'))
     self.assertFalse(one.match('foo/baz/bez/one/qux'))
     other = Matcher('bar/*/other/**')
     self.assertTrue(other.match('bar/baz/other/qux'))
     self.assertFalse(other.match('bar/baz/bez/other/qux'))
     self.assertEqual(one.sub(other, 'foo/baz/one/qux'),
                      'bar/baz/other/qux')
     self.assertEqual(one.sub(other, 'foo/baz/one/qux/zzz'),
                      'bar/baz/other/qux/zzz')
     self.assertIsNone(one.sub(other, 'foo/baz/bez/one/qux'))
     one = Matcher('foo/**/bar/**')
     self.assertTrue(one.match('foo/bar/baz.qux'))
     self.assertTrue(one.match('foo/tender/bar/baz.qux'))
     self.assertFalse(one.match('foo/nobar/baz.qux'))
     self.assertFalse(one.match('foo/tender/bar'))
Ejemplo n.º 26
0
 def test_prefix(self):
     self.assertEqual(Matcher('foo/bar.file').prefix, 'foo/bar.file')
     self.assertEqual(Matcher('foo/*').prefix, 'foo/')
     self.assertEqual(Matcher('foo/**').prefix, 'foo/')
     self.assertEqual(Matcher('foo/*/bar').prefix, 'foo/')
     self.assertEqual(Matcher('foo/**/bar').prefix, 'foo/')
     self.assertEqual(Matcher('foo/**/bar/*').prefix, 'foo/')
     self.assertEqual(Matcher('foo/{v}/bar').prefix, 'foo/')
     self.assertEqual(
         Matcher('foo/{v}/bar', {
             'v': 'expanded'
         }).prefix, 'foo/expanded/bar')
     self.assertEqual(Matcher('foo/{v}/*/bar').prefix, 'foo/')
     self.assertEqual(
         Matcher('foo/{v}/*/bar', {
             'v': 'expanded'
         }).prefix, 'foo/expanded/')
     self.assertEqual(
         Matcher('foo/{v}/*/bar', {
             'v': '{missing}'
         }).prefix, 'foo/')
Ejemplo n.º 27
0
 def test_encoded_matcher(self):
     one = Matcher('foo/*', encoding='utf-8')
     self.assertTrue(one.match(b'foo/bar'))
     other = Matcher('bar/*', encoding='utf-8')
     self.assertEqual(one.sub(other, b'foo/baz'), b'bar/baz')
Ejemplo n.º 28
0
 def test_root_path(self):
     one = Matcher('some/path', root=self.root)
     self.assertIsNone(one.match('some/path'))
     self.assertIsNotNone(one.match(self.path('/some/path')))
Ejemplo n.º 29
0
 def test_root_path(self):
     one = Matcher('some/path', root=self.root)
     self.assertIsNone(one.match('some/path'))
     self.assertIsNotNone(one.match(self.path('/some/path')))
Ejemplo n.º 30
0
 def test_eq(self):
     self.assertEqual(Matcher('foo'), Matcher('foo'))
     self.assertNotEqual(Matcher('foo'), Matcher('bar'))
     self.assertEqual(Matcher('foo', root='/bar/'),
                      Matcher('foo', root='/bar/'))
     self.assertNotEqual(Matcher('foo', root='/bar/'),
                         Matcher('foo', root='/baz/'))
     self.assertNotEqual(Matcher('foo'), Matcher('foo', root='/bar/'))
     self.assertEqual(Matcher('foo', env={'one': 'two'}),
                      Matcher('foo', env={'one': 'two'}))
     self.assertEqual(Matcher('foo'), Matcher('foo', env={}))
     self.assertNotEqual(Matcher('foo', env={'one': 'two'}),
                         Matcher('foo', env={'one': 'three'}))
     self.assertEqual(Matcher('foo', env={'other': 'val'}),
                      Matcher('foo', env={'one': 'two'}))
Ejemplo n.º 31
0
 def test_matcher(self):
     one = Matcher('foo/*')
     self.assertTrue(one.match('foo/baz'))
     self.assertFalse(one.match('foo/baz/qux'))
     other = Matcher('bar/*')
     self.assertTrue(other.match('bar/baz'))
     self.assertFalse(other.match('bar/baz/qux'))
     self.assertEqual(one.sub(other, 'foo/baz'), 'bar/baz')
     self.assertIsNone(one.sub(other, 'bar/baz'))
     one = Matcher('foo/**')
     self.assertTrue(one.match('foo/baz'))
     self.assertTrue(one.match('foo/baz/qux'))
     other = Matcher('bar/**')
     self.assertTrue(other.match('bar/baz'))
     self.assertTrue(other.match('bar/baz/qux'))
     self.assertEqual(one.sub(other, 'foo/baz'), 'bar/baz')
     self.assertEqual(one.sub(other, 'foo/baz/qux'), 'bar/baz/qux')
     one = Matcher('foo/*/one/**')
     self.assertTrue(one.match('foo/baz/one/qux'))
     self.assertFalse(one.match('foo/baz/bez/one/qux'))
     other = Matcher('bar/*/other/**')
     self.assertTrue(other.match('bar/baz/other/qux'))
     self.assertFalse(other.match('bar/baz/bez/other/qux'))
     self.assertEqual(one.sub(other, 'foo/baz/one/qux'),
                      'bar/baz/other/qux')
     self.assertEqual(one.sub(other, 'foo/baz/one/qux/zzz'),
                      'bar/baz/other/qux/zzz')
     self.assertIsNone(one.sub(other, 'foo/baz/bez/one/qux'))
     one = Matcher('foo/**/bar/**')
     self.assertTrue(one.match('foo/bar/baz.qux'))
     self.assertTrue(one.match('foo/tender/bar/baz.qux'))
     self.assertFalse(one.match('foo/nobar/baz.qux'))
     self.assertFalse(one.match('foo/tender/bar'))
     other = Matcher('baz/**/qux/**')
     self.assertEqual(one.sub(other, 'foo/bar/baz.qux'), 'baz/qux/baz.qux')
     self.assertEqual(one.sub(other, 'foo/tender/bar/baz.qux'),
                      'baz/tender/qux/baz.qux')