Ejemplo n.º 1
0
 def test_valid_hook(self):
     hooks = [{'path': 'stacker.tests.test_util.mock_hook',
               'required': True}]
     handle_hooks('missing', hooks, 'us-east-1', 'stage', {}, {})
     good = hook_queue.get_nowait()
     self.assertEqual(good[0], 'us-east-1')
     with self.assertRaises(Queue.Empty):
         hook_queue.get_nowait()
Ejemplo n.º 2
0
 def test_valid_hook(self):
     hooks = [{"path": "stacker.tests.test_util.mock_hook",
               "required": True}]
     handle_hooks("missing", hooks, "us-east-1", self.context)
     good = hook_queue.get_nowait()
     self.assertEqual(good[0], "us-east-1")
     with self.assertRaises(Queue.Empty):
         hook_queue.get_nowait()
Ejemplo n.º 3
0
 def test_context_provided_to_hook(self):
     hooks = [
         Hook({
             "path": "stacker.tests.test_util.context_hook",
             "required": True
         })
     ]
     handle_hooks("missing", hooks, "us-east-1", self.context)
Ejemplo n.º 4
0
 def test_valid_hook(self):
     hooks = [{"path": "stacker.tests.test_util.mock_hook",
               "required": True}]
     handle_hooks("missing", hooks, self.provider, self.context)
     good = hook_queue.get_nowait()
     self.assertEqual(good["provider"].region, "us-east-1")
     with self.assertRaises(Queue.Empty):
         hook_queue.get_nowait()
Ejemplo n.º 5
0
 def test_valid_enabled_hook(self):
     hooks = [
         Hook({"path": "stacker.tests.test_util.mock_hook",
               "required": True, "enabled": True})]
     handle_hooks("missing", hooks, self.provider, self.context)
     good = hook_queue.get_nowait()
     self.assertEqual(good["provider"].region, "us-east-1")
     with self.assertRaises(queue.Empty):
         hook_queue.get_nowait()
Ejemplo n.º 6
0
 def test_valid_enabled_false_hook(self):
     hooks = [
         Hook({
             "path": "stacker.tests.test_util.mock_hook",
             "required": True,
             "enabled": False
         })
     ]
     handle_hooks("missing", hooks, self.provider, self.context)
     self.assertTrue(hook_queue.empty())
Ejemplo n.º 7
0
    def test_return_data_hook_duplicate_key(self):
        hooks = [{
            "path": "stacker.tests.test_util.result_hook",
            "data_key": "my_hook_results"
        }, {
            "path": "stacker.tests.test_util.result_hook",
            "data_key": "my_hook_results"
        }]

        with self.assertRaises(KeyError):
            handle_hooks("result", hooks, "us-east-1", self.context)
Ejemplo n.º 8
0
    def test_return_data_hook_duplicate_key(self):
        hooks = [
            Hook({
                "path": "stacker.tests.test_util.result_hook",
                "data_key": "my_hook_results"
            }),
            Hook({
                "path": "stacker.tests.test_util.result_hook",
                "data_key": "my_hook_results"
            })
        ]

        with self.assertRaises(KeyError):
            handle_hooks("result", hooks, "us-east-1", self.context)
Ejemplo n.º 9
0
    def test_return_data_hook(self):
        hooks = [
            Hook({
                "path": "stacker.tests.test_util.result_hook",
                "data_key": "my_hook_results"
            }),
            # Shouldn't return data
            Hook({"path": "stacker.tests.test_util.context_hook"})
        ]
        handle_hooks("result", hooks, "us-east-1", self.context)

        self.assertEqual(self.context.hook_data["my_hook_results"]["foo"],
                         "bar")
        # Verify only the first hook resulted in stored data
        self.assertEqual(self.context.hook_data.keys(), ["my_hook_results"])
Ejemplo n.º 10
0
 def test_hook_with_sys_path(self):
     config = Config({
         "namespace": "test",
         "sys_path": "stacker/tests",
         "pre_build": [
             {
                 "data_key": "myHook",
                 "path": "fixtures.mock_hooks.mock_hook",
                 "required": True,
                 "args": {
                     "value": "mockResult"}}]})
     load(config)
     context = Context(config=config)
     stage = "pre_build"
     handle_hooks(stage, context.config[stage], "mock-region-1", context)
     self.assertEqual("mockResult", context.hook_data["myHook"]["result"])
Ejemplo n.º 11
0
 def test_hook_with_sys_path(self):
     config = Config({
         "namespace": "test",
         "sys_path": "stacker/tests",
         "pre_build": [
             {
                 "data_key": "myHook",
                 "path": "fixtures.mock_hooks.mock_hook",
                 "required": True,
                 "args": {
                     "value": "mockResult"}}]})
     load(config)
     context = Context(config=config)
     stage = "pre_build"
     handle_hooks(stage, context.config[stage], "mock-region-1", context)
     self.assertEqual("mockResult", context.hook_data["myHook"]["result"])
Ejemplo n.º 12
0
    def test_return_data_hook(self):
        hooks = [
            Hook({
                "path": "stacker.tests.test_util.result_hook",
                "data_key": "my_hook_results"
            }),
            # Shouldn't return data
            Hook({
                "path": "stacker.tests.test_util.context_hook"
            })
        ]
        handle_hooks("result", hooks, "us-east-1", self.context)

        self.assertEqual(
            self.context.hook_data["my_hook_results"]["foo"],
            "bar"
        )
        # Verify only the first hook resulted in stored data
        self.assertEqual(
            list(self.context.hook_data.keys()), ["my_hook_results"]
        )
Ejemplo n.º 13
0
 def test_hook_failure(self):
     hooks = [{'path': 'stacker.tests.test_util.fail_hook',
               'required': True}]
     with self.assertRaises(SystemExit):
         handle_hooks('fail', hooks, 'us-east-1', 'stage', {}, {})
     hooks = [{'path': 'stacker.tests.test_util.exception_hook',
               'required': True}]
     with self.assertRaises(Exception):
         handle_hooks('fail', hooks, 'us-east-1', 'stage', {}, {})
     hooks = [{'path': 'stacker.tests.test_util.exception_hook',
               'required': False}]
     # Should pass
     handle_hooks('ignore_exception', hooks, 'us-east-1', 'stage', {}, {})
Ejemplo n.º 14
0
 def test_hook_failure(self):
     hooks = [{"path": "stacker.tests.test_util.fail_hook",
               "required": True}]
     with self.assertRaises(SystemExit):
         handle_hooks("fail", hooks, self.provider, self.context)
     hooks = [{"path": "stacker.tests.test_util.exception_hook",
               "required": True}]
     with self.assertRaises(Exception):
         handle_hooks("fail", hooks, self.provider, self.context)
     hooks = [{"path": "stacker.tests.test_util.exception_hook",
               "required": False}]
     # Should pass
     handle_hooks("ignore_exception", hooks, self.provider, self.context)
Ejemplo n.º 15
0
 def test_hook_failure(self):
     hooks = [{"path": "stacker.tests.test_util.fail_hook",
               "required": True}]
     with self.assertRaises(SystemExit):
         handle_hooks("fail", hooks, "us-east-1", self.context)
     hooks = [{"path": "stacker.tests.test_util.exception_hook",
               "required": True}]
     with self.assertRaises(Exception):
         handle_hooks("fail", hooks, "us-east-1", self.context)
     hooks = [{"path": "stacker.tests.test_util.exception_hook",
               "required": False}]
     # Should pass
     handle_hooks("ignore_exception", hooks, "us-east-1", self.context)
Ejemplo n.º 16
0
 def test_default_required_hook(self):
     hooks = [{"path": "stacker.hooks.blah"}]
     with self.assertRaises(AttributeError):
         handle_hooks("missing", hooks, "us-east-1", self.context)
Ejemplo n.º 17
0
 def test_missing_non_required_hook_method(self):
     hooks = [{"path": "stacker.hooks.blah", "required": False}]
     handle_hooks("missing", hooks, "us-east-1", self.context)
     self.assertTrue(hook_queue.empty())
Ejemplo n.º 18
0
 def test_missing_required_hook_method(self):
     hooks = [{"path": "stacker.hooks.blah", "required": True}]
     with self.assertRaises(AttributeError):
         handle_hooks("missing", hooks, "us-east-1", self.context)
Ejemplo n.º 19
0
 def test_missing_non_required_hook_method(self):
     hooks = [Hook({"path": "stacker.hooks.blah", "required": False})]
     handle_hooks("missing", hooks, self.provider, self.context)
     self.assertTrue(hook_queue.empty())
Ejemplo n.º 20
0
 def test_empty_hook_stage(self):
     hooks = []
     handle_hooks('fake', hooks, 'us-east-1', 'stage', {}, {})
     self.assertTrue(hook_queue.empty())
Ejemplo n.º 21
0
 def test_missing_non_required_hook_method(self):
     hooks = [{"path": "stacker.hooks.blah", "required": False}]
     handle_hooks("missing", hooks, self.provider, self.context)
     self.assertTrue(hook_queue.empty())
Ejemplo n.º 22
0
 def test_missing_required_hook(self):
     hooks = [{"path": "not.a.real.path", "required": True}]
     with self.assertRaises(ImportError):
         handle_hooks("missing", hooks, self.provider, self.context)
Ejemplo n.º 23
0
 def test_missing_required_hook_method(self):
     hooks = [{'path': 'stacker.hooks.blah', 'required': True}]
     with self.assertRaises(AttributeError):
         handle_hooks('missing', hooks, 'us-east-1', 'stage', {}, {})
Ejemplo n.º 24
0
 def test_missing_non_required_hook_method(self):
     hooks = [{'path': 'stacker.hooks.blah', 'required': False}]
     handle_hooks('missing', hooks, 'us-east-1', 'stage', {}, {})
     self.assertTrue(hook_queue.empty())
Ejemplo n.º 25
0
 def test_context_provided_to_hook(self):
     hooks = [
         Hook({"path": "stacker.tests.test_util.context_hook",
               "required": True})]
     handle_hooks("missing", hooks, "us-east-1", self.context)
Ejemplo n.º 26
0
 def test_default_required_hook(self):
     hooks = [{'path': 'stacker.hooks.blah'}]
     with self.assertRaises(AttributeError):
         handle_hooks('missing', hooks, 'us-east-1', 'stage', {}, {})
Ejemplo n.º 27
0
 def test_empty_hook_stage(self):
     hooks = []
     handle_hooks("fake", hooks, self.provider, self.context)
     self.assertTrue(hook_queue.empty())
Ejemplo n.º 28
0
 def test_default_required_hook(self):
     hooks = [Hook({"path": "stacker.hooks.blah"})]
     with self.assertRaises(AttributeError):
         handle_hooks("missing", hooks, self.provider, self.context)
Ejemplo n.º 29
0
 def test_missing_required_hook(self):
     hooks = [{'path': 'not.a.real.path', 'required': True}]
     with self.assertRaises(ImportError):
         handle_hooks('missing', hooks, 'us-east-1', 'stage', {}, {})
Ejemplo n.º 30
0
 def test_empty_hook_stage(self):
     hooks = []
     handle_hooks("fake", hooks, self.provider, self.context)
     self.assertTrue(hook_queue.empty())
Ejemplo n.º 31
0
 def test_empty_hook_stage(self):
     hooks = []
     handle_hooks("fake", hooks, "us-east-1", self.context)
     self.assertTrue(hook_queue.empty())
Ejemplo n.º 32
0
 def test_missing_required_hook_method(self):
     hooks = [{"path": "stacker.hooks.blah", "required": True}]
     with self.assertRaises(AttributeError):
         handle_hooks("missing", hooks, self.provider, self.context)
Ejemplo n.º 33
0
 def test_empty_hook_stage(self):
     hooks = []
     handle_hooks("fake", hooks, "us-east-1", self.context)
     self.assertTrue(hook_queue.empty())
Ejemplo n.º 34
0
 def test_default_required_hook(self):
     hooks = [{"path": "stacker.hooks.blah"}]
     with self.assertRaises(AttributeError):
         handle_hooks("missing", hooks, self.provider, self.context)
Ejemplo n.º 35
0
 def test_missing_required_hook(self):
     hooks = [{"path": "not.a.real.path", "required": True}]
     with self.assertRaises(ImportError):
         handle_hooks("missing", hooks, "us-east-1", self.context)
Ejemplo n.º 36
0
 def test_valid_enabled_false_hook(self):
     hooks = [
         Hook({"path": "stacker.tests.test_util.mock_hook",
               "required": True, "enabled": False})]
     handle_hooks("missing", hooks, self.provider, self.context)
     self.assertTrue(hook_queue.empty())
Ejemplo n.º 37
0
 def test_missing_required_hook(self):
     hooks = [Hook({"path": "not.a.real.path", "required": True})]
     with self.assertRaises(ImportError):
         handle_hooks("missing", hooks, self.provider, self.context)