예제 #1
0
파일: config_test.py 프로젝트: tek/pytek
 def autoload(self):
     Config.allow_files = True
     sys.path.insert(0, fixture_path('config'))
     Config.setup('mod1', 'mod3')
     Config['sec1'].key1.should.equal('success')
     Config['sec2'].key1.should.equal('val1')
     invalid_section = lambda: Config['sec9']
     invalid_section.when.called_with().should.throw(NoSuchSectionError)
     invalid_option = lambda: Config['sec1'].inval
     invalid_option.when.called_with().should.throw(NoSuchOptionError)
예제 #2
0
파일: config_test.py 프로젝트: tek/pytek
    def dict(self):
        class MyClass(object):

            def __init__(self, arg):
                self._arg = arg

            def __eq__(self, other):
                return self._arg == other._arg

        Config.clear()
        value = DictConfigOption('1:foo,2:boo', key_type=int,
                                 dictvalue_type=MyClass)
        Config.register_config('test', 'sec1', key1=value)
        conf = ConfigClient('sec1')
        conf('key1').should.equal({1: MyClass('foo'), 2: MyClass('boo')})
        conf('key1').should_not.equal({1: MyClass('afoo'), 2: MyClass('boo')})
예제 #3
0
파일: write.py 프로젝트: tek/pytek
def write_pkg_config(_dir, outfile, alias):
    sys.path[:0] = [_dir]
    Config.allow_files = False
    Config.allow_override = False
    Config.clear_metadata()
    for name in config_names(_dir):
        try:
            Config.load_config(name)
        except Exception as e:
            logger.debug(e)
    Config.reset(files=False, alias=[alias])
    Config.write_config(outfile)
예제 #4
0
파일: config_test.py 프로젝트: tek/pytek
    def configurable(self):
        Config.clear()
        Config.register_config('test', 'sec1', key1='val1',
                                       key2=ListConfigOption(['asdf', 'jkl;']))
        Config.register_config('test', 'sec2', key3='val3')

        @configurable(sec1=['key1', 'key2'], sec2=['key3'])
        class Lazy(object):
            pass
        lazy = Lazy()
        lazy._key1.should.equal('val1')
        lazy._sec1__key2.should.equal(['asdf', 'jkl;'])
        lazy._key3.should.equal('val3')
        noattr = lambda: lazy._noattr
        noattr.should.throw(AttributeError)
예제 #5
0
파일: config_test.py 프로젝트: tek/pytek
 def dict_escape(self):
     Config.clear()
     value = DictConfigOption('a\:b:foo\:moo,a\,b:boo\,zoo')
     Config.register_config('test', 'sec1', key1=value)
     conf = ConfigClient('sec1')
     conf('key1').should.equal({'a:b': 'foo:moo', 'a,b': 'boo,zoo'})
예제 #6
0
파일: config_test.py 프로젝트: tek/pytek
 def file_size(self):
     Config.clear()
     Config.register_config('test', 'sec1',
                                    key1=FileSizeConfigOption('5.54G'))
     conf = ConfigClient('sec1')
     conf('key1').should.equal(5540000000)