summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-09-21 22:02:33 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-09-21 22:02:33 +0000
commit2a708cfebe22869223ab73a6072091e715b04900 (patch)
treec2ac3119312ed0068c29e7d92a13babe105809ef
parent47e4606a98ad4dd4ca05a6ede81e6ceb164568ee (diff)
downloadfreeipa.git-2a708cfebe22869223ab73a6072091e715b04900.tar.gz
freeipa.git-2a708cfebe22869223ab73a6072091e715b04900.tar.xz
freeipa.git-2a708cfebe22869223ab73a6072091e715b04900.zip
309: Renamed public.Option to public.Param
-rw-r--r--ipalib/public.py16
-rw-r--r--ipalib/tests/test_public.py40
2 files changed, 28 insertions, 28 deletions
diff --git a/ipalib/public.py b/ipalib/public.py
index c4850747..a8c16282 100644
--- a/ipalib/public.py
+++ b/ipalib/public.py
@@ -85,7 +85,7 @@ class DefaultFrom(plugable.ReadOnly):
return None
-class Option(plugable.ReadOnly):
+class Param(plugable.ReadOnly):
def __init__(self, name, type_,
doc='',
required=False,
@@ -200,7 +200,7 @@ class Option(plugable.ReadOnly):
def generate_option(name):
"""
- Returns an `Option` instance by parsing ``name``.
+ Returns an `Param` instance by parsing ``name``.
"""
if name.endswith('?'):
kw = dict(required=False, multivalue=False)
@@ -213,7 +213,7 @@ def generate_option(name):
name = name[:-1]
else:
kw = dict(required=True, multivalue=False)
- return Option(name, ipa_types.Unicode(), **kw)
+ return Param(name, ipa_types.Unicode(), **kw)
class Command(plugable.Plugin):
@@ -261,9 +261,9 @@ class Command(plugable.Plugin):
for arg in self.get_args():
if type(arg) is str:
arg = generate_option(arg)
- elif not isinstance(arg, Option):
+ elif not isinstance(arg, Param):
raise TypeError(
- 'arg: need %r or %r; got %r' % (str, Option, arg)
+ 'arg: need %r or %r; got %r' % (str, Param, arg)
)
if optional and arg.required:
raise ValueError(
@@ -283,9 +283,9 @@ class Command(plugable.Plugin):
for option in self.get_options():
if type(option) is str:
option = generate_option(option)
- elif not isinstance(option, Option):
+ elif not isinstance(option, Param):
raise TypeError(
- 'option: need %r or %r; got %r' % (str, Option, option)
+ 'option: need %r or %r; got %r' % (str, Param, option)
)
yield option
@@ -491,7 +491,7 @@ class Property(Attribute):
self.__rules_iter(),
key=lambda f: getattr(f, '__name__'),
))
- self.option = Option(self.attr_name, self.type,
+ self.option = Param(self.attr_name, self.type,
doc=self.doc,
required=self.required,
multivalue=self.multivalue,
diff --git a/ipalib/tests/test_public.py b/ipalib/tests/test_public.py
index d963233b..42127ea4 100644
--- a/ipalib/tests/test_public.py
+++ b/ipalib/tests/test_public.py
@@ -113,16 +113,16 @@ class test_DefaultFrom(ClassChecker):
class test_Option(ClassChecker):
"""
- Tests the `public.Option` class.
+ Tests the `public.Param` class.
"""
- _cls = public.Option
+ _cls = public.Param
def test_class(self):
assert self.cls.__bases__ == (plugable.ReadOnly,)
def test_init(self):
"""
- Tests the `public.Option.__init__` method.
+ Tests the `public.Param.__init__` method.
"""
name = 'sn'
type_ = ipa_types.Unicode()
@@ -139,7 +139,7 @@ class test_Option(ClassChecker):
def test_convert(self):
"""
- Tests the `public.Option.convert` method.
+ Tests the `public.Param.convert` method.
"""
name = 'some_number'
type_ = ipa_types.Int()
@@ -184,7 +184,7 @@ class test_Option(ClassChecker):
def test_normalize(self):
"""
- Tests the `public.Option.normalize` method.
+ Tests the `public.Param.normalize` method.
"""
name = 'sn'
t = ipa_types.Unicode()
@@ -220,7 +220,7 @@ class test_Option(ClassChecker):
def test_validate(self):
"""
- Tests the `public.Option.validate` method.
+ Tests the `public.Param.validate` method.
"""
name = 'sn'
type_ = ipa_types.Unicode()
@@ -265,7 +265,7 @@ class test_Option(ClassChecker):
def test_get_default(self):
"""
- Tests the `public.Option.get_default` method.
+ Tests the `public.Param.get_default` method.
"""
name = 'greeting'
type_ = ipa_types.Unicode()
@@ -299,7 +299,7 @@ class test_Option(ClassChecker):
def test_get_value(self):
"""
- Tests the `public.Option.get_values` method.
+ Tests the `public.Param.get_values` method.
"""
name = 'status'
values = (u'Active', u'Inactive')
@@ -316,7 +316,7 @@ def test_generate_option():
f = public.generate_option
for name in ['arg', 'arg?', 'arg*', 'arg+']:
o = f(name)
- assert type(o) is public.Option
+ assert type(o) is public.Param
assert type(o.type) is ipa_types.Unicode
assert o.name == 'arg'
o = f('arg')
@@ -357,12 +357,12 @@ class test_Command(ClassChecker):
class example(self.cls):
takes_options = (
- public.Option('option0', type_,
+ public.Param('option0', type_,
normalize=normalize,
default_from=default_from,
rules=(Rule('option0'),)
),
- public.Option('option1', type_,
+ public.Param('option1', type_,
normalize=normalize,
default_from=default_from,
rules=(Rule('option1'),),
@@ -420,8 +420,8 @@ class test_Command(ClassChecker):
assert type(ns) is plugable.NameSpace
assert len(ns) == len(args)
assert list(ns) == ['destination', 'source']
- assert type(ns.destination) is public.Option
- assert type(ns.source) is public.Option
+ assert type(ns.destination) is public.Param
+ assert type(ns.source) is public.Param
assert ns.destination.required is True
assert ns.destination.multivalue is False
assert ns.source.required is False
@@ -430,7 +430,7 @@ class test_Command(ClassChecker):
# Test TypeError:
e = raises(TypeError, self.get_instance, args=(u'whatever',))
assert str(e) == \
- 'arg: need %r or %r; got %r' % (str, public.Option, u'whatever')
+ 'arg: need %r or %r; got %r' % (str, public.Param, u'whatever')
# Test ValueError, required after optional:
e = raises(ValueError, self.get_instance, args=('arg1?', 'arg2'))
@@ -470,8 +470,8 @@ class test_Command(ClassChecker):
assert type(ns) is plugable.NameSpace
assert len(ns) == len(options)
assert list(ns) == ['target', 'files']
- assert type(ns.target) is public.Option
- assert type(ns.files) is public.Option
+ assert type(ns.target) is public.Param
+ assert type(ns.files) is public.Param
assert ns.target.required is True
assert ns.target.multivalue is False
assert ns.files.required is False
@@ -774,8 +774,8 @@ class test_Method(ClassChecker):
type_ = ipa_types.Unicode()
class noun_verb(self.cls):
takes_options= (
- public.Option('option0', type_),
- public.Option('option1', type_),
+ public.Param('option0', type_),
+ public.Param('option1', type_),
)
obj = example_obj()
return noun_verb
@@ -790,7 +790,7 @@ class test_Method(ClassChecker):
assert len(options) == 4
for (i, option) in enumerate(options):
assert option.name == names[i]
- assert isinstance(option, public.Option)
+ assert isinstance(option, public.Param)
class test_Property(ClassChecker):
@@ -826,7 +826,7 @@ class test_Property(ClassChecker):
assert len(o.rules) == 1
assert o.rules[0].__name__ == 'rule0_lowercase'
opt = o.option
- assert isinstance(opt, public.Option)
+ assert isinstance(opt, public.Param)
assert opt.name == 'givenname'
assert opt.doc == 'User first name'