2013-08-27 21:36:52 +02:00
|
|
|
# coding: utf-8
|
2015-07-24 17:54:10 +02:00
|
|
|
from autopath import do_autopath
|
|
|
|
do_autopath()
|
2013-08-27 21:36:52 +02:00
|
|
|
|
2013-09-30 16:22:08 +02:00
|
|
|
from tiramisu.config import Config, GroupConfig, MetaConfig
|
2014-04-25 22:57:08 +02:00
|
|
|
from tiramisu.option import BoolOption, IntOption, StrOption, OptionDescription, submulti
|
2013-08-27 21:36:52 +02:00
|
|
|
import weakref
|
|
|
|
|
|
|
|
|
2014-11-10 09:13:44 +01:00
|
|
|
IS_DEREFABLE = True
|
|
|
|
|
2015-07-24 17:54:10 +02:00
|
|
|
|
2014-04-14 23:00:37 +02:00
|
|
|
def test_deref_storage():
|
|
|
|
b = BoolOption('b', '')
|
|
|
|
o = OptionDescription('od', '', [b])
|
|
|
|
c = Config(o)
|
|
|
|
w = weakref.ref(c.cfgimpl_get_values()._p_)
|
|
|
|
del(c)
|
|
|
|
assert w() is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_deref_value():
|
|
|
|
b = BoolOption('b', '')
|
|
|
|
o = OptionDescription('od', '', [b])
|
|
|
|
c = Config(o)
|
|
|
|
w = weakref.ref(c.cfgimpl_get_values())
|
|
|
|
del(c)
|
|
|
|
assert w() is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_deref_setting():
|
|
|
|
b = BoolOption('b', '')
|
|
|
|
o = OptionDescription('od', '', [b])
|
|
|
|
c = Config(o)
|
|
|
|
w = weakref.ref(c.cfgimpl_get_settings())
|
|
|
|
del(c)
|
|
|
|
assert w() is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_deref_config():
|
|
|
|
b = BoolOption('b', '')
|
|
|
|
o = OptionDescription('od', '', [b])
|
|
|
|
c = Config(o)
|
|
|
|
w = weakref.ref(c)
|
|
|
|
del(c)
|
|
|
|
assert w() is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_deref_option():
|
2014-11-10 09:13:44 +01:00
|
|
|
global IS_DEREFABLE
|
2014-04-14 23:00:37 +02:00
|
|
|
b = BoolOption('b', '')
|
|
|
|
o = OptionDescription('od', '', [b])
|
|
|
|
w = weakref.ref(b)
|
|
|
|
del(b)
|
2014-11-10 09:13:44 +01:00
|
|
|
try:
|
|
|
|
assert w() is not None
|
|
|
|
except AssertionError:
|
|
|
|
IS_DEREFABLE = False
|
|
|
|
return
|
2014-04-14 23:00:37 +02:00
|
|
|
del(o)
|
|
|
|
assert w() is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_deref_optiondescription():
|
2014-11-10 09:13:44 +01:00
|
|
|
if not IS_DEREFABLE:
|
|
|
|
return
|
2014-04-14 23:00:37 +02:00
|
|
|
b = BoolOption('b', '')
|
|
|
|
o = OptionDescription('od', '', [b])
|
|
|
|
w = weakref.ref(o)
|
|
|
|
del(b)
|
|
|
|
assert w() is not None
|
|
|
|
del(o)
|
|
|
|
assert w() is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_deref_option_cache():
|
2014-11-10 09:13:44 +01:00
|
|
|
if not IS_DEREFABLE:
|
|
|
|
return
|
2014-04-14 23:00:37 +02:00
|
|
|
b = BoolOption('b', '')
|
|
|
|
o = OptionDescription('od', '', [b])
|
|
|
|
o.impl_build_cache_option()
|
|
|
|
w = weakref.ref(b)
|
|
|
|
del(b)
|
|
|
|
assert w() is not None
|
|
|
|
del(o)
|
|
|
|
assert w() is None
|
2013-08-27 21:36:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_deref_optiondescription_cache():
|
2016-10-01 20:15:08 +02:00
|
|
|
if not IS_DEREFABLE:
|
|
|
|
return
|
2013-08-27 21:36:52 +02:00
|
|
|
b = BoolOption('b', '')
|
|
|
|
o = OptionDescription('od', '', [b])
|
2014-01-25 10:15:25 +01:00
|
|
|
o.impl_build_cache_option()
|
2013-08-27 21:36:52 +02:00
|
|
|
w = weakref.ref(o)
|
|
|
|
del(b)
|
|
|
|
assert w() is not None
|
|
|
|
del(o)
|
2014-04-14 23:00:37 +02:00
|
|
|
assert w() is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_deref_option_config():
|
2014-11-10 09:13:44 +01:00
|
|
|
if not IS_DEREFABLE:
|
|
|
|
return
|
2014-04-14 23:00:37 +02:00
|
|
|
b = BoolOption('b', '')
|
|
|
|
o = OptionDescription('od', '', [b])
|
|
|
|
c = Config(o)
|
|
|
|
w = weakref.ref(b)
|
|
|
|
del(b)
|
|
|
|
assert w() is not None
|
|
|
|
del(o)
|
|
|
|
assert w() is not None
|
|
|
|
del(c)
|
|
|
|
assert w() is None
|
2013-08-27 21:36:52 +02:00
|
|
|
|
2014-01-25 10:15:25 +01:00
|
|
|
|
2013-08-27 21:36:52 +02:00
|
|
|
def test_deref_optiondescription_config():
|
2016-10-01 20:15:08 +02:00
|
|
|
if not IS_DEREFABLE:
|
|
|
|
return
|
2013-08-27 21:36:52 +02:00
|
|
|
b = BoolOption('b', '')
|
|
|
|
o = OptionDescription('od', '', [b])
|
|
|
|
c = Config(o)
|
|
|
|
w = weakref.ref(o)
|
|
|
|
del(b)
|
|
|
|
assert w() is not None
|
|
|
|
del(o)
|
|
|
|
assert w() is not None
|
|
|
|
del(c)
|
2014-04-15 21:48:31 +02:00
|
|
|
assert w() is None
|
2013-09-30 16:22:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_deref_groupconfig():
|
2016-10-01 20:15:08 +02:00
|
|
|
if not IS_DEREFABLE:
|
|
|
|
return
|
2013-09-30 16:22:08 +02:00
|
|
|
i1 = IntOption('i1', '')
|
|
|
|
od1 = OptionDescription('od1', '', [i1])
|
|
|
|
od2 = OptionDescription('od2', '', [od1])
|
2014-12-01 21:49:50 +01:00
|
|
|
conf1 = Config(od2, 'conf1')
|
|
|
|
conf2 = Config(od2, 'conf2')
|
2013-09-30 16:22:08 +02:00
|
|
|
meta = GroupConfig([conf1, conf2])
|
|
|
|
w = weakref.ref(conf1)
|
|
|
|
del(conf1)
|
|
|
|
assert w() is not None
|
|
|
|
del(meta)
|
|
|
|
assert w() is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_deref_metaconfig():
|
2016-10-01 20:15:08 +02:00
|
|
|
if not IS_DEREFABLE:
|
|
|
|
return
|
2013-09-30 16:22:08 +02:00
|
|
|
i1 = IntOption('i1', '')
|
|
|
|
od1 = OptionDescription('od1', '', [i1])
|
|
|
|
od2 = OptionDescription('od2', '', [od1])
|
2014-12-01 21:49:50 +01:00
|
|
|
conf1 = Config(od2, 'conf1')
|
|
|
|
conf2 = Config(od2, 'conf2')
|
2013-09-30 16:22:08 +02:00
|
|
|
meta = MetaConfig([conf1, conf2])
|
|
|
|
w = weakref.ref(conf1)
|
|
|
|
del(conf1)
|
|
|
|
assert w() is not None
|
|
|
|
del(meta)
|
|
|
|
assert w() is None
|
2014-04-25 22:57:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_deref_submulti():
|
2016-10-01 20:15:08 +02:00
|
|
|
if not IS_DEREFABLE:
|
|
|
|
return
|
2014-04-25 22:57:08 +02:00
|
|
|
multi = StrOption('multi', '', multi=submulti)
|
|
|
|
od = OptionDescription('od', '', [multi])
|
|
|
|
cfg = Config(od)
|
|
|
|
cfg.cfgimpl_get_settings().remove('cache')
|
|
|
|
w = weakref.ref(cfg.multi)
|
|
|
|
assert w() is None
|
|
|
|
cfg.multi.append([])
|
|
|
|
w = weakref.ref(cfg.multi)
|
|
|
|
assert w() is None
|
|
|
|
m = cfg.multi
|
|
|
|
w = weakref.ref(m)
|
|
|
|
z = weakref.ref(w()[0])
|
|
|
|
del(m)
|
|
|
|
assert w() is None
|
|
|
|
assert z() is None
|