本文整理汇总了Python中instance.tests.models.factories.openedx_instance.OpenEdXInstanceFactory.get_load_balancer_configuration方法的典型用法代码示例。如果您正苦于以下问题:Python OpenEdXInstanceFactory.get_load_balancer_configuration方法的具体用法?Python OpenEdXInstanceFactory.get_load_balancer_configuration怎么用?Python OpenEdXInstanceFactory.get_load_balancer_configuration使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类instance.tests.models.factories.openedx_instance.OpenEdXInstanceFactory
的用法示例。
在下文中一共展示了OpenEdXInstanceFactory.get_load_balancer_configuration方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_get_load_balancer_configuration
# 需要导入模块: from instance.tests.models.factories.openedx_instance import OpenEdXInstanceFactory [as 别名]
# 或者: from instance.tests.models.factories.openedx_instance.OpenEdXInstanceFactory import get_load_balancer_configuration [as 别名]
def test_get_load_balancer_configuration(self, mocks):
"""
Test that the load balancer configuration gets generated correctly.
"""
instance = OpenEdXInstanceFactory(sub_domain='test.load_balancer', use_ephemeral_databases=True)
domain_names = [
"test.load_balancer.example.com",
"preview-test.load_balancer.example.com",
"studio-test.load_balancer.example.com",
]
# Test configuration for preliminary page
backend_map, config = instance.get_load_balancer_configuration()
self._check_load_balancer_configuration(
backend_map, config, domain_names, settings.PRELIMINARY_PAGE_SERVER_IP
)
# Test configuration for active appserver
appserver_id = instance.spawn_appserver()
instance.set_appserver_active(appserver_id)
backend_map, config = instance.get_load_balancer_configuration()
self._check_load_balancer_configuration(
backend_map, config, domain_names, instance.active_appserver.server.public_ip
)
# Test configuration in case an active appserver doesn't have a public IP address anymore.
# This might happen if the OpenStack server dies or gets modified from the outside, but it
# is not expected to happen under normal circumstances. We deconfigure the backend and log
# an error in this case.
with patch('instance.openstack.get_server_public_address', return_value=None), \
self.assertLogs("instance.models.instance", "ERROR"):
self.assertEqual(instance.get_load_balancer_configuration(), ([], []))
示例2: test_get_load_balancer_config_ext_domains
# 需要导入模块: from instance.tests.models.factories.openedx_instance import OpenEdXInstanceFactory [as 别名]
# 或者: from instance.tests.models.factories.openedx_instance.OpenEdXInstanceFactory import get_load_balancer_configuration [as 别名]
def test_get_load_balancer_config_ext_domains(self):
"""
Test the load balancer configuration when external domains are set.
"""
instance = OpenEdXInstanceFactory(internal_lms_domain='test.load_balancer.opencraft.hosting',
external_lms_domain='courses.myexternal.org',
external_lms_preview_domain='preview.myexternal.org',
external_studio_domain='studio.myexternal.org',
use_ephemeral_databases=True)
domain_names = [
'test.load_balancer.opencraft.hosting',
'preview-test.load_balancer.opencraft.hosting',
'studio-test.load_balancer.opencraft.hosting',
'courses.myexternal.org',
'preview.myexternal.org',
'studio.myexternal.org',
]
backend_map, config = instance.get_load_balancer_configuration()
self._check_load_balancer_configuration(
backend_map, config, domain_names, settings.PRELIMINARY_PAGE_SERVER_IP
)