本文整理汇总了Python中gargoyle.models.SwitchManager.register方法的典型用法代码示例。如果您正苦于以下问题:Python SwitchManager.register方法的具体用法?Python SwitchManager.register怎么用?Python SwitchManager.register使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gargoyle.models.SwitchManager
的用法示例。
在下文中一共展示了SwitchManager.register方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: HostConditionSetTest
# 需要导入模块: from gargoyle.models import SwitchManager [as 别名]
# 或者: from gargoyle.models.SwitchManager import register [as 别名]
class HostConditionSetTest(TestCase):
def setUp(self):
self.gargoyle = SwitchManager(Switch, key='key', value='value', instances=True, auto_create=True)
self.gargoyle.register(HostConditionSet())
def test_simple(self):
condition_set = 'gargoyle.builtins.HostConditionSet'
# we need a better API for this (model dict isnt cutting it)
switch = Switch.objects.create(
key='test',
status=SELECTIVE,
)
switch = self.gargoyle['test']
self.assertFalse(self.gargoyle.is_active('test'))
switch.add_condition(
condition_set=condition_set,
field_name='hostname',
condition=socket.gethostname(),
)
self.assertTrue(self.gargoyle.is_active('test'))
示例2: APITest
# 需要导入模块: from gargoyle.models import SwitchManager [as 别名]
# 或者: from gargoyle.models.SwitchManager import register [as 别名]
class APITest(TestCase):
urls = 'tests.urls'
def setUp(self):
self.user = User.objects.create(username='foo', email='[email protected]')
self.gargoyle = SwitchManager(Switch, key='key', value='value', instances=True, auto_create=True)
self.gargoyle.register(UserConditionSet(User))
self.gargoyle.register(IPAddressConditionSet())
def test_builtin_registration(self):
self.assertTrue('gargoyle.builtins.UserConditionSet(auth.user)' in self.gargoyle._registry)
self.assertTrue('gargoyle.builtins.IPAddressConditionSet' in self.gargoyle._registry)
self.assertEquals(len(list(self.gargoyle.get_condition_sets())), 2, self.gargoyle)
def test_user(self):
condition_set = 'gargoyle.builtins.UserConditionSet(auth.user)'
# we need a better API for this (model dict isnt cutting it)
switch = Switch.objects.create(
key='test',
status=SELECTIVE,
)
switch = self.gargoyle['test']
switch.add_condition(
condition_set=condition_set,
field_name='percent',
condition='0-50',
)
user = User(pk=5)
self.assertTrue(self.gargoyle.is_active('test', user))
user = User(pk=8771)
self.assertFalse(self.gargoyle.is_active('test', user))
switch.add_condition(
condition_set=condition_set,
field_name='is_staff',
condition='1',
)
user = User(pk=8771, is_staff=True)
self.assertTrue(self.gargoyle.is_active('test', user))
user = User(pk=8771, is_superuser=True)
self.assertFalse(self.gargoyle.is_active('test', user))
switch.add_condition(
condition_set=condition_set,
field_name='is_superuser',
condition='1',
)
user = User(pk=8771, is_superuser=True)
self.assertTrue(self.gargoyle.is_active('test', user))
# test with mock request
self.assertTrue(self.gargoyle.is_active('test', self.gargoyle.as_request(user=user)))
# test date joined condition
user = User(pk=8771)
self.assertFalse(self.gargoyle.is_active('test', user))
switch.add_condition(
condition_set=condition_set,
field_name='date_joined',
condition='2011-07-01',
)
user = User(pk=8771, date_joined=datetime.datetime(2011, 07, 02))
self.assertTrue(self.gargoyle.is_active('test', user))
user = User(pk=8771, date_joined=datetime.datetime(2012, 07, 02))
self.assertTrue(self.gargoyle.is_active('test', user))
user = User(pk=8771, date_joined=datetime.datetime(2011, 06, 02))
self.assertFalse(self.gargoyle.is_active('test', user))
user = User(pk=8771, date_joined=datetime.datetime(2011, 07, 01))
self.assertTrue(self.gargoyle.is_active('test', user))
def test_exclusions(self):
condition_set = 'gargoyle.builtins.UserConditionSet(auth.user)'
switch = Switch.objects.create(
key='test',
status=SELECTIVE,
)
switch = self.gargoyle['test']
switch.add_condition(
condition_set=condition_set,
field_name='percent',
condition='0-50',
exclude=True,
)
switch.add_condition(
condition_set=condition_set,
field_name='username',
#.........这里部分代码省略.........
示例3: TemplateTagTest
# 需要导入模块: from gargoyle.models import SwitchManager [as 别名]
# 或者: from gargoyle.models.SwitchManager import register [as 别名]
class TemplateTagTest(TestCase):
urls = 'tests.urls'
def setUp(self):
self.user = User.objects.create(username='foo', email='[email protected]')
self.gargoyle = SwitchManager(Switch, key='key', value='value', instances=True)
self.gargoyle.register(UserConditionSet(User))
def test_simple(self):
Switch.objects.create(
key='test',
status=GLOBAL,
)
template = Template("""
{% load gargoyle_tags %}
{% ifswitch test %}
hello world!
{% endifswitch %}
""")
rendered = template.render(Context())
self.assertTrue('hello world!' in rendered)
def test_else(self):
Switch.objects.create(
key='test',
status=DISABLED,
)
template = Template("""
{% load gargoyle_tags %}
{% ifswitch test %}
hello world!
{% else %}
foo bar baz
{% endifswitch %}
""")
rendered = template.render(Context())
self.assertTrue('foo bar baz' in rendered)
self.assertFalse('hello world!' in rendered)
def test_with_request(self):
condition_set = 'gargoyle.builtins.UserConditionSet(auth.user)'
switch = Switch.objects.create(
key='test',
status=SELECTIVE,
)
switch = self.gargoyle['test']
switch.add_condition(
condition_set=condition_set,
field_name='percent',
condition='0-50',
)
request = HttpRequest()
request.user = self.user
template = Template("""
{% load gargoyle_tags %}
{% ifswitch test %}
hello world!
{% else %}
foo bar baz
{% endifswitch %}
""")
rendered = template.render(Context({'request': request}))
self.assertFalse('foo bar baz' in rendered)
self.assertTrue('hello world!' in rendered)
def test_missing_name(self):
self.assertRaises(TemplateSyntaxError, Template, """
{% load gargoyle_tags %}
{% ifswitch %}
hello world!
{% endifswitch %}
""")
示例4: GargoyleTest
# 需要导入模块: from gargoyle.models import SwitchManager [as 别名]
# 或者: from gargoyle.models.SwitchManager import register [as 别名]
class GargoyleTest(TestCase):
urls = "gargoyle.tests.urls"
def setUp(self):
self.user = User.objects.create(username="foo", email="[email protected]")
self.gargoyle = SwitchManager(Switch, key="key", value="value", instances=True)
self.gargoyle.register(UserConditionSet(User))
self.gargoyle.register(IPAddressConditionSet())
def test_builtin_registration(self):
self.assertTrue("gargoyle.builtins.UserConditionSet(auth.user)" in self.gargoyle._registry)
self.assertTrue("gargoyle.builtins.IPAddressConditionSet" in self.gargoyle._registry)
self.assertEquals(len(list(self.gargoyle.get_condition_sets())), 2, self.gargoyle)
def test_user(self):
condition_set = "gargoyle.builtins.UserConditionSet(auth.user)"
# we need a better API for this (model dict isnt cutting it)
switch = Switch.objects.create(key="test", status=SELECTIVE)
switch = self.gargoyle["test"]
switch.add_condition(condition_set=condition_set, field_name="percent", condition="0-50")
user = User(pk=5)
self.assertTrue(self.gargoyle.is_active("test", user))
user = User(pk=8771)
self.assertFalse(self.gargoyle.is_active("test", user))
switch.add_condition(condition_set=condition_set, field_name="is_staff", condition="1")
user = User(pk=8771, is_staff=True)
self.assertTrue(self.gargoyle.is_active("test", user))
user = User(pk=8771, is_superuser=True)
self.assertFalse(self.gargoyle.is_active("test", user))
switch.add_condition(condition_set=condition_set, field_name="is_superuser", condition="1")
user = User(pk=8771, is_superuser=True)
self.assertTrue(self.gargoyle.is_active("test", user))
def test_exclusions(self):
condition_set = "gargoyle.builtins.UserConditionSet(auth.user)"
switch = Switch.objects.create(key="test", status=SELECTIVE)
switch = self.gargoyle["test"]
switch.add_condition(condition_set=condition_set, field_name="percent", condition="0-50", exclude=True)
switch.add_condition(condition_set=condition_set, field_name="username", condition="foo")
user = User(pk=5, username="foo")
self.assertFalse(self.gargoyle.is_active("test", user))
user = User(pk=8771, username="foo")
self.assertTrue(self.gargoyle.is_active("test", user))
def test_decorator_for_user(self):
condition_set = "gargoyle.builtins.UserConditionSet(auth.user)"
switch = Switch.objects.create(key="test", status=DISABLED)
switch = self.gargoyle["test"]
@switch_is_active("test")
def test(request):
return True
request = HttpRequest()
request.user = self.user
self.assertRaises(Http404, test, request)
switch.status = SELECTIVE
switch.save()
self.assertTrue(test(request))
switch.add_condition(condition_set=condition_set, field_name="username", condition="foo")
self.assertTrue(test(request))
def test_decorator_for_ip_address(self):
condition_set = "gargoyle.builtins.IPAddressConditionSet"
switch = Switch.objects.create(key="test", status=DISABLED)
switch = self.gargoyle["test"]
@switch_is_active("test")
def test(request):
return True
request = HttpRequest()
request.META["REMOTE_ADDR"] = "192.168.1.1"
self.assertRaises(Http404, test, request)
switch.status = SELECTIVE
switch.save()
switch.add_condition(condition_set=condition_set, field_name="ip_address", condition="192.168.1.1")
#.........这里部分代码省略.........