当前位置: 首页>>代码示例>>Python>>正文


Python Experiment.convert方法代码示例

本文整理汇总了Python中sixpack.models.Experiment.convert方法的典型用法代码示例。如果您正苦于以下问题:Python Experiment.convert方法的具体用法?Python Experiment.convert怎么用?Python Experiment.convert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sixpack.models.Experiment的用法示例。


在下文中一共展示了Experiment.convert方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_find_existing_conversion

# 需要导入模块: from sixpack.models import Experiment [as 别名]
# 或者: from sixpack.models.Experiment import convert [as 别名]
 def test_find_existing_conversion(self):
     exp = Experiment('test-find-existing-conversion', ['1', '2'], redis=self.app.redis)
     client = Client("eric", redis=self.app.redis)
     alt = exp.get_alternative(client)
     exp.convert(client)
     alt2 = exp.existing_conversion(client)
     self.assertIsNotNone(alt2)
     self.assertTrue(alt.name == alt2.name)
     client2 = Client("zack", redis=self.app.redis)
     alt3 = exp.existing_conversion(client2)
     self.assertIsNone(alt3)
开发者ID:BigR-Lab,项目名称:sixpack,代码行数:13,代码来源:experiment_lua_test.py

示例2: test_convert

# 需要导入模块: from sixpack.models import Experiment [as 别名]
# 或者: from sixpack.models.Experiment import convert [as 别名]
 def test_convert(self, mock_find):
     exp = Experiment("test", ["no", "yes"], winner=None)
     exp.convert = Mock(return_value=Alternative("yes", exp))
     mock_find.return_value = exp
     alternative = convert("test", "id1")
     self.assertEqual("yes", alternative.name)
     self.assertEqual("test", alternative.experiment.name)
开发者ID:VPilitsyn,项目名称:sixpack,代码行数:9,代码来源:api_test.py

示例3: test_cant_convert_twice

# 需要导入模块: from sixpack.models import Experiment [as 别名]
# 或者: from sixpack.models.Experiment import convert [as 别名]
    def test_cant_convert_twice(self):
        exp = Experiment('test-cant-convert-twice', ['1', '2'], redis=self.app.redis)
        client = Client("eric", redis=self.app.redis)
        alt = exp.get_alternative(client)
        exp.convert(client)
        self.assertEqual(exp.total_conversions(), 1)

        exp.convert(client, dt=dateutil.parser.parse("2012-01-01"))
        self.assertEqual(exp.total_conversions(), 1)

        data = exp.objectify_by_period("day")
        altdata = [a for a in data["alternatives"] if a["name"] == alt.name][0]["data"]
        total_participants = sum([d["participants"] for d in altdata])
        self.assertEqual(total_participants, 1)
        total_conversions = sum([d["conversions"] for d in altdata])
        self.assertEqual(total_conversions, 1)
开发者ID:BigR-Lab,项目名称:sixpack,代码行数:18,代码来源:experiment_lua_test.py

示例4: test_convert_with_kpi

# 需要导入模块: from sixpack.models import Experiment [as 别名]
# 或者: from sixpack.models.Experiment import convert [as 别名]
 def test_convert_with_kpi(self, mock_find):
     exp = Experiment("test", ["no", "yes"], winner=None)
     exp.convert = Mock(return_value=Alternative("yes", exp))
     mock_find.return_value = exp
     alternative = convert("test", "id1", kpi="goal1")
     # TODO: we're not really asserting anything about the KPI
     self.assertEqual("yes", alternative.name)
     self.assertEqual("test", alternative.experiment.name)
开发者ID:VPilitsyn,项目名称:sixpack,代码行数:10,代码来源:api_test.py

示例5: test_cant_convert_twice

# 需要导入模块: from sixpack.models import Experiment [as 别名]
# 或者: from sixpack.models.Experiment import convert [as 别名]
    def test_cant_convert_twice(self):
        exp = Experiment('test-cant-convert-twice', ['1', '2'], redis=self.app.redis)
        client = Client("eric", redis=self.app.redis)
        alt = exp.get_alternative(client)
        exp.convert(client)
        self.assertEqual(exp.total_conversions(), 1)

        exp.convert(client, dt=dateutil.parser.parse("2012-01-01"))
        self.assertEqual(exp.total_conversions(), 1)

        data = exp.objectify_by_period("day")
        altdata = [a for a in data["alternatives"] if a["name"] == alt.name][0]["data"]
        total_participants = sum([d["participants"] for d in altdata])
        self.assertEqual(total_participants, 1)
        total_conversions = sum([d["conversions"] for d in altdata])
        self.assertEqual(data["has_winner"], False)
        self.assertEqual(total_conversions, 1)

        # Only retrieve the slim set.
        data = exp.objectify_by_period("day", slim=True)
        self.assertFalse(data.has_key("has_winner"))
        self.assertFalse(data.has_key("kpi"))
        self.assertFalse(data.has_key("kpis"))
        self.assertFalse(data.has_key("period"))
开发者ID:desaraev,项目名称:sixpack,代码行数:26,代码来源:experiment_lua_test.py

示例6: test_convert

# 需要导入模块: from sixpack.models import Experiment [as 别名]
# 或者: from sixpack.models.Experiment import convert [as 别名]
 def test_convert(self):
     exp = Experiment('test-convert', ['1', '2'], redis=self.app.redis)
     client = Client("eric", redis=self.app.redis)
     exp.get_alternative(client)
     exp.convert(client)
     self.assertEqual(exp.total_conversions(), 1)
开发者ID:BigR-Lab,项目名称:sixpack,代码行数:8,代码来源:experiment_lua_test.py


注:本文中的sixpack.models.Experiment.convert方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。