Пример #1
0
    def test_locate_with_fake_path(self):
        def function(resource):
            return None

        locator = ioc.locator.FunctionLocator(function)

        with self.assertRaises(ioc.locator.ResourceNotFound):
            locator.locate('missing file')
Пример #2
0
    def test_locate_with_fake_path(self):
        def function(resource):
            return None

        locator = ioc.locator.FunctionLocator(function)

        with self.assertRaises(ioc.locator.ResourceNotFound):
            locator.locate('missing file')
Пример #3
0
    def test_locate(self):
        locator = ioc.locator.ChoiceLocator([
            ioc.locator.FileSystemLocator("/tmp"),
            ioc.locator.FileSystemLocator(current_dir + "/../fixtures"),
        ])

        self.assertEquals(current_dir + "/../fixtures/services.yml", locator.locate('services.yml'))
Пример #4
0
    def test_locate(self):
        def function(resource):
            return "/mypath/%s" % resource

        locator = ioc.locator.FunctionLocator(function)

        self.assertEquals("/mypath/services.yml", locator.locate('services.yml'))
Пример #5
0
    def test_locate(self):
        locator = ioc.locator.ChoiceLocator([
            ioc.locator.FileSystemLocator("/tmp"),
            ioc.locator.FileSystemLocator(current_dir + "/../fixtures"),
        ])

        self.assertEquals(current_dir + "/../fixtures/services.yml",
                          locator.locate('services.yml'))
Пример #6
0
    def test_locate(self):
        def function(resource):
            return "/mypath/%s" % resource

        locator = ioc.locator.FunctionLocator(function)

        self.assertEquals("/mypath/services.yml",
                          locator.locate('services.yml'))
Пример #7
0
    def test_locate(self):
        locator = ioc.locator.PrefixLocator(
            {
                "app":
                ioc.locator.FileSystemLocator(current_dir + "/../fixtures")
            }, ":")

        self.assertEquals(current_dir + "/../fixtures/services.yml",
                          locator.locate('app:services.yml'))
Пример #8
0
 def test_locate(self):
     locator = ioc.locator.PackageLocator('tests', 'fixtures')
     self.assertEquals(
         os.path.realpath(current_dir + "/../fixtures/services.yml"),
         locator.locate('services.yml'))
Пример #9
0
    def test_locate_with_fake_path(self):
        locator = ioc.locator.PrefixLocator({})

        with self.assertRaises(ioc.locator.ResourceNotFound):
            locator.locate('missing file')
Пример #10
0
    def test_locate_with_fake_path(self):
        locator = ioc.locator.FileSystemLocator('fake')

        with self.assertRaises(ioc.locator.ResourceNotFound):
            locator.locate('missing file')
Пример #11
0
 def test_locate(self):
     locator = ioc.locator.PackageLocator('tests', 'fixtures')
     self.assertEquals(os.path.realpath(current_dir + "/../fixtures/services.yml"), locator.locate('services.yml'))
Пример #12
0
    def test_locate(self):
        locator = ioc.locator.PrefixLocator({
            "app" : ioc.locator.FileSystemLocator(current_dir + "/../fixtures")
        }, ":")

        self.assertEquals(current_dir + "/../fixtures/services.yml", locator.locate('app:services.yml'))
Пример #13
0
    def test_locate_with_fake_path(self):
        locator = ioc.locator.PrefixLocator({})

        with self.assertRaises(ioc.locator.ResourceNotFound):
            locator.locate('missing file')
Пример #14
0
    def test_locate_with_fake_path(self):
        locator = ioc.locator.FileSystemLocator('fake')

        with self.assertRaises(ioc.locator.ResourceNotFound):
            locator.locate('missing file')