Bowe Strickland
2018-10-27 323fa95deea50f49c119728fc2eeacb9e0c51241
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
import unittest
import os
from pyramid.compat import PY2
 
here = os.path.abspath(os.path.dirname(__file__))
 
 
class TestCallerPath(unittest.TestCase):
    def tearDown(self):
        from . import test_path
 
        if hasattr(test_path, '__abspath__'):
            del test_path.__abspath__
 
    def _callFUT(self, path, level=2):
        from pyramid.path import caller_path
 
        return caller_path(path, level)
 
    def test_isabs(self):
        result = self._callFUT('/a/b/c')
        self.assertEqual(result, '/a/b/c')
 
    def test_pkgrelative(self):
        import os
 
        result = self._callFUT('a/b/c')
        self.assertEqual(result, os.path.join(here, 'a/b/c'))
 
    def test_memoization_has_abspath(self):
        import os
        from . import test_path
 
        test_path.__abspath__ = '/foo/bar'
        result = self._callFUT('a/b/c')
        self.assertEqual(result, os.path.join('/foo/bar', 'a/b/c'))
 
    def test_memoization_success(self):
        import os
        from . import test_path
 
        result = self._callFUT('a/b/c')
        self.assertEqual(result, os.path.join(here, 'a/b/c'))
        self.assertEqual(test_path.__abspath__, here)
 
 
class TestCallerModule(unittest.TestCase):
    def _callFUT(self, *arg, **kw):
        from pyramid.path import caller_module
 
        return caller_module(*arg, **kw)
 
    def test_it_level_1(self):
        from . import test_path
 
        result = self._callFUT(1)
        self.assertEqual(result, test_path)
 
    def test_it_level_2(self):
        from . import test_path
 
        result = self._callFUT(2)
        self.assertEqual(result, test_path)
 
    def test_it_level_3(self):
        from . import test_path
 
        result = self._callFUT(3)
        self.assertNotEqual(result, test_path)
 
    def test_it_no___name__(self):
        class DummyFrame(object):
            f_globals = {}
 
        class DummySys(object):
            def _getframe(self, level):
                return DummyFrame()
 
            modules = {'__main__': 'main'}
 
        dummy_sys = DummySys()
        result = self._callFUT(3, sys=dummy_sys)
        self.assertEqual(result, 'main')
 
 
class TestCallerPackage(unittest.TestCase):
    def _callFUT(self, *arg, **kw):
        from pyramid.path import caller_package
 
        return caller_package(*arg, **kw)
 
    def test_it_level_1(self):
        import tests
 
        result = self._callFUT(1)
        self.assertEqual(result, tests)
 
    def test_it_level_2(self):
        import tests
 
        result = self._callFUT(2)
        self.assertEqual(result, tests)
 
    def test_it_level_3(self):
        import unittest
 
        result = self._callFUT(3)
        self.assertEqual(result, unittest)
 
    def test_it_package(self):
        import tests
 
        def dummy_caller_module(*arg):
            return tests
 
        result = self._callFUT(1, caller_module=dummy_caller_module)
        self.assertEqual(result, tests)
 
 
class TestPackagePath(unittest.TestCase):
    def _callFUT(self, package):
        from pyramid.path import package_path
 
        return package_path(package)
 
    def test_it_package(self):
        import tests
 
        package = DummyPackageOrModule(tests)
        result = self._callFUT(package)
        self.assertEqual(result, package.package_path)
 
    def test_it_module(self):
        from . import test_path
 
        module = DummyPackageOrModule(test_path)
        result = self._callFUT(module)
        self.assertEqual(result, module.package_path)
 
    def test_memoization_success(self):
        from . import test_path
 
        module = DummyPackageOrModule(test_path)
        self._callFUT(module)
        self.assertEqual(module.__abspath__, module.package_path)
 
    def test_memoization_fail(self):
        from . import test_path
 
        module = DummyPackageOrModule(test_path, raise_exc=TypeError)
        result = self._callFUT(module)
        self.assertFalse(hasattr(module, '__abspath__'))
        self.assertEqual(result, module.package_path)
 
 
class TestPackageOf(unittest.TestCase):
    def _callFUT(self, package):
        from pyramid.path import package_of
 
        return package_of(package)
 
    def test_it_package(self):
        import tests
 
        package = DummyPackageOrModule(tests)
        result = self._callFUT(package)
        self.assertEqual(result, tests)
 
    def test_it_module(self):
        import tests.test_path
        import tests
 
        package = DummyPackageOrModule(tests.test_path)
        result = self._callFUT(package)
        self.assertEqual(result, tests)
 
 
class TestPackageName(unittest.TestCase):
    def _callFUT(self, package):
        from pyramid.path import package_name
 
        return package_name(package)
 
    def test_it_package(self):
        import tests
 
        package = DummyPackageOrModule(tests)
        result = self._callFUT(package)
        self.assertEqual(result, 'tests')
 
    def test_it_namespace_package(self):
        import tests
 
        package = DummyNamespacePackage(tests)
        result = self._callFUT(package)
        self.assertEqual(result, 'tests')
 
    def test_it_module(self):
        from . import test_path
 
        module = DummyPackageOrModule(test_path)
        result = self._callFUT(module)
        self.assertEqual(result, 'tests')
 
    def test_it_None(self):
        result = self._callFUT(None)
        self.assertEqual(result, '__main__')
 
    def test_it_main(self):
        import __main__
 
        result = self._callFUT(__main__)
        self.assertEqual(result, '__main__')
 
 
class TestResolver(unittest.TestCase):
    def _getTargetClass(self):
        from pyramid.path import Resolver
 
        return Resolver
 
    def _makeOne(self, package):
        return self._getTargetClass()(package)
 
    def test_get_package_caller_package(self):
        import tests
        from pyramid.path import CALLER_PACKAGE
 
        self.assertEqual(self._makeOne(CALLER_PACKAGE).get_package(), tests)
 
    def test_get_package_name_caller_package(self):
        from pyramid.path import CALLER_PACKAGE
 
        self.assertEqual(
            self._makeOne(CALLER_PACKAGE).get_package_name(), 'tests'
        )
 
    def test_get_package_string(self):
        import tests
 
        self.assertEqual(self._makeOne('tests').get_package(), tests)
 
    def test_get_package_name_string(self):
        self.assertEqual(self._makeOne('tests').get_package_name(), 'tests')
 
 
class TestAssetResolver(unittest.TestCase):
    def _getTargetClass(self):
        from pyramid.path import AssetResolver
 
        return AssetResolver
 
    def _makeOne(self, package='tests'):
        return self._getTargetClass()(package)
 
    def test_ctor_as_package(self):
        import sys
 
        tests = sys.modules['tests']
        inst = self._makeOne(tests)
        self.assertEqual(inst.package, tests)
 
    def test_ctor_as_str(self):
        import sys
 
        tests = sys.modules['tests']
        inst = self._makeOne('tests')
        self.assertEqual(inst.package, tests)
 
    def test_resolve_abspath(self):
        from pyramid.path import FSAssetDescriptor
 
        inst = self._makeOne(None)
        r = inst.resolve(os.path.join(here, 'test_asset.py'))
        self.assertEqual(r.__class__, FSAssetDescriptor)
        self.assertTrue(r.exists())
 
    def test_resolve_absspec(self):
        from pyramid.path import PkgResourcesAssetDescriptor
 
        inst = self._makeOne(None)
        r = inst.resolve('tests:test_asset.py')
        self.assertEqual(r.__class__, PkgResourcesAssetDescriptor)
        self.assertTrue(r.exists())
 
    def test_resolve_relspec_with_pkg(self):
        from pyramid.path import PkgResourcesAssetDescriptor
 
        inst = self._makeOne('tests')
        r = inst.resolve('test_asset.py')
        self.assertEqual(r.__class__, PkgResourcesAssetDescriptor)
        self.assertTrue(r.exists())
 
    def test_resolve_relspec_no_package(self):
        inst = self._makeOne(None)
        self.assertRaises(ValueError, inst.resolve, 'test_asset.py')
 
    def test_resolve_relspec_caller_package(self):
        from pyramid.path import PkgResourcesAssetDescriptor
        from pyramid.path import CALLER_PACKAGE
 
        inst = self._makeOne(CALLER_PACKAGE)
        r = inst.resolve('test_asset.py')
        self.assertEqual(r.__class__, PkgResourcesAssetDescriptor)
        self.assertTrue(r.exists())
 
 
class TestPkgResourcesAssetDescriptor(unittest.TestCase):
    def _getTargetClass(self):
        from pyramid.path import PkgResourcesAssetDescriptor
 
        return PkgResourcesAssetDescriptor
 
    def _makeOne(self, pkg='tests', path='test_asset.py'):
        return self._getTargetClass()(pkg, path)
 
    def test_class_conforms_to_IAssetDescriptor(self):
        from pyramid.interfaces import IAssetDescriptor
        from zope.interface.verify import verifyClass
 
        verifyClass(IAssetDescriptor, self._getTargetClass())
 
    def test_instance_conforms_to_IAssetDescriptor(self):
        from pyramid.interfaces import IAssetDescriptor
        from zope.interface.verify import verifyObject
 
        verifyObject(IAssetDescriptor, self._makeOne())
 
    def test_absspec(self):
        inst = self._makeOne()
        self.assertEqual(inst.absspec(), 'tests:test_asset.py')
 
    def test_abspath(self):
        inst = self._makeOne()
        self.assertEqual(inst.abspath(), os.path.join(here, 'test_asset.py'))
 
    def test_stream(self):
        inst = self._makeOne()
        inst.pkg_resources = DummyPkgResource()
        inst.pkg_resources.resource_stream = lambda x, y: '%s:%s' % (x, y)
        s = inst.stream()
        self.assertEqual(s, '%s:%s' % ('tests', 'test_asset.py'))
 
    def test_isdir(self):
        inst = self._makeOne()
        inst.pkg_resources = DummyPkgResource()
        inst.pkg_resources.resource_isdir = lambda x, y: '%s:%s' % (x, y)
        self.assertEqual(inst.isdir(), '%s:%s' % ('tests', 'test_asset.py'))
 
    def test_listdir(self):
        inst = self._makeOne()
        inst.pkg_resources = DummyPkgResource()
        inst.pkg_resources.resource_listdir = lambda x, y: '%s:%s' % (x, y)
        self.assertEqual(inst.listdir(), '%s:%s' % ('tests', 'test_asset.py'))
 
    def test_exists(self):
        inst = self._makeOne()
        inst.pkg_resources = DummyPkgResource()
        inst.pkg_resources.resource_exists = lambda x, y: '%s:%s' % (x, y)
        self.assertEqual(inst.exists(), '%s:%s' % ('tests', 'test_asset.py'))
 
 
class TestFSAssetDescriptor(unittest.TestCase):
    def _getTargetClass(self):
        from pyramid.path import FSAssetDescriptor
 
        return FSAssetDescriptor
 
    def _makeOne(self, path=os.path.join(here, 'test_asset.py')):
        return self._getTargetClass()(path)
 
    def test_class_conforms_to_IAssetDescriptor(self):
        from pyramid.interfaces import IAssetDescriptor
        from zope.interface.verify import verifyClass
 
        verifyClass(IAssetDescriptor, self._getTargetClass())
 
    def test_instance_conforms_to_IAssetDescriptor(self):
        from pyramid.interfaces import IAssetDescriptor
        from zope.interface.verify import verifyObject
 
        verifyObject(IAssetDescriptor, self._makeOne())
 
    def test_absspec(self):
        inst = self._makeOne()
        self.assertRaises(NotImplementedError, inst.absspec)
 
    def test_abspath(self):
        inst = self._makeOne()
        self.assertEqual(inst.abspath(), os.path.join(here, 'test_asset.py'))
 
    def test_stream(self):
        inst = self._makeOne()
        s = inst.stream()
        val = s.read()
        s.close()
        self.assertTrue(b'asset' in val)
 
    def test_isdir_False(self):
        inst = self._makeOne()
        self.assertFalse(inst.isdir())
 
    def test_isdir_True(self):
        inst = self._makeOne(here)
        self.assertTrue(inst.isdir())
 
    def test_listdir(self):
        inst = self._makeOne(here)
        self.assertTrue(inst.listdir())
 
    def test_exists(self):
        inst = self._makeOne()
        self.assertTrue(inst.exists())
 
 
class TestDottedNameResolver(unittest.TestCase):
    def _makeOne(self, package=None):
        from pyramid.path import DottedNameResolver
 
        return DottedNameResolver(package)
 
    def config_exc(self, func, *arg, **kw):
        try:
            func(*arg, **kw)
        except ValueError as e:
            return e
        else:
            raise AssertionError('Invalid not raised')  # pragma: no cover
 
    def test_zope_dottedname_style_resolve_builtin(self):
        typ = self._makeOne()
        if PY2:
            result = typ._zope_dottedname_style('__builtin__.str', None)
        else:
            result = typ._zope_dottedname_style('builtins.str', None)
        self.assertEqual(result, str)
 
    def test_zope_dottedname_style_resolve_absolute(self):
        typ = self._makeOne()
        result = typ._zope_dottedname_style(
            'tests.test_path.TestDottedNameResolver', None
        )
        self.assertEqual(result, self.__class__)
 
    def test_zope_dottedname_style_irrresolveable_absolute(self):
        typ = self._makeOne()
        self.assertRaises(
            ImportError,
            typ._zope_dottedname_style,
            'pyramid.test_path.nonexisting_name',
            None,
        )
 
    def test__zope_dottedname_style_resolve_relative(self):
        import tests
 
        typ = self._makeOne()
        result = typ._zope_dottedname_style(
            '.test_path.TestDottedNameResolver', tests
        )
        self.assertEqual(result, self.__class__)
 
    def test__zope_dottedname_style_resolve_relative_leading_dots(self):
        import tests.test_path
 
        typ = self._makeOne()
        result = typ._zope_dottedname_style(
            '..tests.test_path.TestDottedNameResolver', tests
        )
        self.assertEqual(result, self.__class__)
 
    def test__zope_dottedname_style_resolve_relative_is_dot(self):
        import tests
 
        typ = self._makeOne()
        result = typ._zope_dottedname_style('.', tests)
        self.assertEqual(result, tests)
 
    def test__zope_dottedname_style_irresolveable_relative_is_dot(self):
        typ = self._makeOne()
        e = self.config_exc(typ._zope_dottedname_style, '.', None)
        self.assertEqual(
            e.args[0], "relative name '.' irresolveable without package"
        )
 
    def test_zope_dottedname_style_resolve_relative_nocurrentpackage(self):
        typ = self._makeOne()
        e = self.config_exc(typ._zope_dottedname_style, '.whatever', None)
        self.assertEqual(
            e.args[0],
            "relative name '.whatever' irresolveable without package",
        )
 
    def test_zope_dottedname_style_irrresolveable_relative(self):
        import tests
 
        typ = self._makeOne()
        self.assertRaises(
            ImportError, typ._zope_dottedname_style, '.notexisting', tests
        )
 
    def test__zope_dottedname_style_resolveable_relative(self):
        import tests
 
        typ = self._makeOne()
        result = typ._zope_dottedname_style('.', tests)
        self.assertEqual(result, tests)
 
    def test__zope_dottedname_style_irresolveable_absolute(self):
        typ = self._makeOne()
        self.assertRaises(
            ImportError, typ._zope_dottedname_style, 'pyramid.fudge.bar', None
        )
 
    def test__zope_dottedname_style_resolveable_absolute(self):
        typ = self._makeOne()
        result = typ._zope_dottedname_style(
            'tests.test_path.TestDottedNameResolver', None
        )
        self.assertEqual(result, self.__class__)
 
    def test__pkg_resources_style_resolve_absolute(self):
        typ = self._makeOne()
        result = typ._pkg_resources_style(
            'tests.test_path:TestDottedNameResolver', None
        )
        self.assertEqual(result, self.__class__)
 
    def test__pkg_resources_style_irrresolveable_absolute(self):
        typ = self._makeOne()
        self.assertRaises(
            ImportError, typ._pkg_resources_style, 'tests:nonexisting', None
        )
 
    def test__pkg_resources_style_resolve_relative(self):
        import tests
 
        typ = self._makeOne()
        result = typ._pkg_resources_style(
            '.test_path:TestDottedNameResolver', tests
        )
        self.assertEqual(result, self.__class__)
 
    def test__pkg_resources_style_resolve_relative_is_dot(self):
        import tests
 
        typ = self._makeOne()
        result = typ._pkg_resources_style('.', tests)
        self.assertEqual(result, tests)
 
    def test__pkg_resources_style_resolve_relative_nocurrentpackage(self):
        typ = self._makeOne()
        self.assertRaises(
            ValueError, typ._pkg_resources_style, '.whatever', None
        )
 
    def test__pkg_resources_style_irrresolveable_relative(self):
        import pyramid
 
        typ = self._makeOne()
        self.assertRaises(
            ImportError, typ._pkg_resources_style, ':notexisting', pyramid
        )
 
    def test_resolve_not_a_string(self):
        typ = self._makeOne()
        e = self.config_exc(typ.resolve, None)
        self.assertEqual(e.args[0], 'None is not a string')
 
    def test_resolve_using_pkgresources_style(self):
        typ = self._makeOne()
        result = typ.resolve('tests.test_path:TestDottedNameResolver')
        self.assertEqual(result, self.__class__)
 
    def test_resolve_using_zope_dottedname_style(self):
        typ = self._makeOne()
        result = typ.resolve('tests.test_path:TestDottedNameResolver')
        self.assertEqual(result, self.__class__)
 
    def test_resolve_missing_raises(self):
        typ = self._makeOne()
        self.assertRaises(ImportError, typ.resolve, 'cant.be.found')
 
    def test_resolve_caller_package(self):
        from pyramid.path import CALLER_PACKAGE
 
        typ = self._makeOne(CALLER_PACKAGE)
        self.assertEqual(
            typ.resolve('.test_path.TestDottedNameResolver'), self.__class__
        )
 
    def test_maybe_resolve_caller_package(self):
        from pyramid.path import CALLER_PACKAGE
 
        typ = self._makeOne(CALLER_PACKAGE)
        self.assertEqual(
            typ.maybe_resolve('.test_path.TestDottedNameResolver'),
            self.__class__,
        )
 
    def test_ctor_string_module_resolveable(self):
        import tests
 
        typ = self._makeOne('tests.test_path')
        self.assertEqual(typ.package, tests)
 
    def test_ctor_string_package_resolveable(self):
        import tests
 
        typ = self._makeOne('tests')
        self.assertEqual(typ.package, tests)
 
    def test_ctor_string_irresolveable(self):
        self.assertRaises(ValueError, self._makeOne, 'cant.be.found')
 
    def test_ctor_module(self):
        import tests
        from . import test_path
 
        typ = self._makeOne(test_path)
        self.assertEqual(typ.package, tests)
 
    def test_ctor_package(self):
        import tests
 
        typ = self._makeOne(tests)
        self.assertEqual(typ.package, tests)
 
    def test_ctor_None(self):
        typ = self._makeOne(None)
        self.assertEqual(typ.package, None)
 
 
class DummyPkgResource(object):
    pass
 
 
class DummyPackageOrModule:
    def __init__(self, real_package_or_module, raise_exc=None):
        self.__dict__['raise_exc'] = raise_exc
        self.__dict__['__name__'] = real_package_or_module.__name__
        import os
 
        self.__dict__['package_path'] = os.path.dirname(
            os.path.abspath(real_package_or_module.__file__)
        )
        self.__dict__['__file__'] = real_package_or_module.__file__
 
    def __setattr__(self, key, val):
        if self.raise_exc is not None:
            raise self.raise_exc
        self.__dict__[key] = val
 
 
class DummyNamespacePackage:
    """Has no __file__ attribute.
    """
 
    def __init__(self, real_package_or_module):
        self.__name__ = real_package_or_module.__name__
        import os
 
        self.package_path = os.path.dirname(
            os.path.abspath(real_package_or_module.__file__)
        )