本文整理匯總了Python中common.utilities.inversion_of_control.Dependency.update_environmental_setting方法的典型用法代碼示例。如果您正苦於以下問題:Python Dependency.update_environmental_setting方法的具體用法?Python Dependency.update_environmental_setting怎麽用?Python Dependency.update_environmental_setting使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類common.utilities.inversion_of_control.Dependency
的用法示例。
在下文中一共展示了Dependency.update_environmental_setting方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: TestCustomAnalyticsExecutor
# 需要導入模塊: from common.utilities.inversion_of_control import Dependency [as 別名]
# 或者: from common.utilities.inversion_of_control.Dependency import update_environmental_setting [as 別名]
#.........這裏部分代碼省略.........
self.mox.StubOutWithMock(executor, "_handle_error")
self.mox.StubOutWithMock(executor, "_update_and_reset_config")
self.mox.StubOutWithMock(executor, "_update_ca_run_status")
self.mox.StubOutWithMock(executor, "_clear_log_file")
self.mox.StubOutWithMock(executor, "_execute_controller")
self.mox.StubOutWithMock(executor, "_run_data_checks")
self.mox.StubOutWithMock(executor, "_run_custom_analytics")
self.mox.StubOutWithMock(executor, "_upload_file_to_rds")
self.mox.StubOutWithMock(executor, "_shrink_db")
self.mox.StubOutWithMock(executor, "_send_success_email")
self.mox.StubOutWithMock(executor, "_shut_down_worker_server")
# begin recording (raise exception on geoprocessing controller)
executor._update_path()
executor._update_and_reset_config().AndReturn(("fuzzy", "wuzzy", "was", "a", "bear", "chicken", "woot", "borat", "sagdiev"))
executor._update_ca_run_status()
executor._clear_log_file()
executor._execute_controller().WithSideEffects(raise_exception)
executor._handle_error("yo mama", IsA(basestring), "fuzzy", "wuzzy", "was", "a", "bear")
# replay all
self.mox.ReplayAll()
# I love gooooooold
executor.execute()
# make sure the ca id set for the heart beat
self.assertEqual(executor._custom_analytics_run_id, "fuzzy")
def test_update_path(self):
# begin recording
self.mock_deployment_provider.update_environmental_setting("PYTHONPATH", "/signal/python/geoprocessing")
# replay all
self.mox.ReplayAll()
# I love gooooooold
CustomAnalyticsExecutor()._update_path()
def test_clear_log_file(self):
# begin recording
self.mock_deployment_provider.clear_log_file("/signal/python/geoprocessing", "log.txt")
# replay all
self.mox.ReplayAll()
# I love gooooooold
CustomAnalyticsExecutor()._clear_log_file()
def test_execute_controller(self):
# begin recording
self.mock_deployment_provider.execute_controller("/signal/python/geoprocessing")
# replay all
self.mox.ReplayAll()
# I love gooooooold
CustomAnalyticsExecutor()._execute_controller()