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


Python OpenEdXInstanceFactory.secret_key_b64encoded方法代码示例

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


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

示例1: test_do_not_create_insecure_secret_keys

# 需要导入模块: from instance.tests.models.factories.openedx_instance import OpenEdXInstanceFactory [as 别名]
# 或者: from instance.tests.models.factories.openedx_instance.OpenEdXInstanceFactory import secret_key_b64encoded [as 别名]
    def test_do_not_create_insecure_secret_keys(self, mocks):
        """
        Test that if we have a brand-new instance with no appservers, we refuse to create insecure
        keys for those appservers if we don't have a secure secret key for the instance.
        """
        instance = OpenEdXInstanceFactory()
        instance.secret_key_b64encoded = ''
        instance.save()

        expected_error_string = re.escape(
            'Attempted to create secret key for instance {}, but no master key present.'.format(instance)
        )

        # Six provides a compatibility method for assertRaisesRegex, since the method
        # is named differently between Py2k and Py3k.
        with six.assertRaisesRegex(self, ValueError, expected_error_string):
            instance.spawn_appserver()
开发者ID:open-craft,项目名称:opencraft,代码行数:19,代码来源:test_openedx_instance.py

示例2: test_secret_key_creation

# 需要导入模块: from instance.tests.models.factories.openedx_instance import OpenEdXInstanceFactory [as 别名]
# 或者: from instance.tests.models.factories.openedx_instance.OpenEdXInstanceFactory import secret_key_b64encoded [as 别名]
    def test_secret_key_creation(self):
        """
        Test that we can reliably produce derived secret keys for an instance with a particular
        existing secret key.
        """
        instance = OpenEdXInstanceFactory()
        instance.secret_key_b64encoded = 'esFyh7kbvbMQiYhRx9fISJw9gkcSCStGAfOWaPu9cfc6/tMu'
        instance.save()

        self.assertEqual(
            instance.get_secret_key_for_var('THIS_IS_A_TEST'),
            '95652a974218e2efc44f99feb6f2ab89a263746688ff428ca2c898ae44111f58',
        )
        self.assertEqual(
            instance.get_secret_key_for_var('OTHER_TEST'),
            '820b455b1f0e30b75ec0514ab172c588223b010de3beacce3cd27217adc7fe60',
        )
        self.assertEqual(
            instance.get_secret_key_for_var('SUPER_SECRET'),
            '21b5271f21ee6dacfde05cd97e20739f0e73dc8a43408ef14b657bfbf718e2b4',
        )
开发者ID:open-craft,项目名称:opencraft,代码行数:23,代码来源:test_openedx_instance.py


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