2019-12-25 20:44:56 +01:00
|
|
|
from tiramisu import StrOption, OptionDescription, Leadership, Calculation, ParamValue, ParamOption, Params, calc_value
|
2019-04-08 08:41:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
def get_description():
|
|
|
|
"""generate description for this test
|
|
|
|
"""
|
2019-12-24 15:24:20 +01:00
|
|
|
option1 = StrOption('unicode1', "Values 'test' must show 'Unicode follower 2'", multi=True)
|
|
|
|
option2 = StrOption('unicode2', "Unicode follower 1", multi=True)
|
2019-12-25 20:44:56 +01:00
|
|
|
hidden_property = Calculation(calc_value,
|
|
|
|
Params(ParamValue('hidden'),
|
|
|
|
kwargs={'condition': ParamOption(option1, todict=True),
|
|
|
|
'expected': ParamValue('test'),
|
|
|
|
'reverse_condition': ParamValue(True)}))
|
|
|
|
option3 = StrOption('unicode3', "Unicode follower 2", multi=True, properties=(hidden_property,))
|
2019-04-08 08:41:33 +02:00
|
|
|
descr1 = Leadership("unicode1", "Common configuration",
|
|
|
|
[option1, option2, option3])
|
|
|
|
descr = OptionDescription("options", "Common configuration", [descr1])
|
2019-12-25 20:44:56 +01:00
|
|
|
descr = OptionDescription("unicode1_leadership_requires_follower_value", "Leader follower requires follower with leader", [descr])
|
2019-04-08 08:41:33 +02:00
|
|
|
return descr
|
|
|
|
|
|
|
|
|
2019-12-24 15:24:20 +01:00
|
|
|
async def get_values(api, allpath=False):
|
2019-04-08 08:41:33 +02:00
|
|
|
if allpath:
|
|
|
|
root = 'unicode1_leadership_requires_follower_value.'
|
|
|
|
else:
|
|
|
|
root = ''
|
2019-12-24 15:24:20 +01:00
|
|
|
await api.option(root + 'options.unicode1.unicode1').value.set([u'test', u'pas test'])
|
|
|
|
await api.option(root + 'options.unicode1.unicode2', 0).value.set(u'super1')
|
|
|
|
await api.option(root + 'options.unicode1.unicode3', 0).value.set(u'super1')
|