Пример #1
0
 def test_filter_resources(self):
     a = Action()
     a.type = 'set-x'
     log_output = self.capture_logging('custodian.actions')
     resources = [{
         'app': 'X',
         'state': {
             'status': 'running'
         }
     }, {
         'app': 'Y',
         'state': {
             'status': 'stopped'
         }
     }, {
         'app': 'Z',
         'state': {
             'status': 'running'
         }
     }]
     assert {'X', 'Z'} == {
         r['app']
         for r in a.filter_resources(resources, 'state.status', (
             'running', ))
     }
     assert log_output.getvalue().strip() == (
         'set-x implicitly filtered 2 of 3 resources key:state.status on running'
     )
Пример #2
0
 def test_run_api_error(self):
     resp = {
         'Error': {
             'Code': 'Foo',
             'Message': 'Bar',
         }
     }
     func = lambda: (_ for _ in ()).throw(ClientError(resp, 'test2'))
     self.assertRaises(ClientError, Action()._run_api, func)
Пример #3
0
 def test_run_api_error(self):
     resp = {
         'Error': {
             'Code': 'Foo',
             'Message': 'Bar',
         }
     }
     func = lambda: (_ for _ in ()).throw(ClientError(resp, 'test2'))
     Action()._run_api(func)
     self.fail('Should have raised ClientError')
Пример #4
0
    def test_run_api(self):
        resp = {
            'Error': {
                'Code': 'DryRunOperation',
                'Message': 'would have succeeded',
            },
            'ResponseMetadata': {
                'HTTPStatusCode': 412
            }
        }

        func = lambda: (_ for _ in ()).throw(ClientError(resp, 'test'))
        # Hard to test for something because it just logs a message, but make
        # sure that the ClientError gets caught and not re-raised
        Action()._run_api(func)
    def test_run_api(self):
        resp = {
            "Error": {
                "Code": "DryRunOperation",
                "Message": "would have succeeded"
            },
            "ResponseMetadata": {
                "HTTPStatusCode": 412
            },
        }

        func = lambda: (_ for _ in ()).throw(ClientError(resp, "test"))  # NOQA
        # Hard to test for something because it just logs a message, but make
        # sure that the ClientError gets caught and not re-raised
        Action()._run_api(func)
Пример #6
0
 def test_process_unimplemented(self):
     self.assertRaises(NotImplementedError, Action().process, None)
 def test_run_api_error(self):
     resp = {"Error": {"Code": "Foo", "Message": "Bar"}}
     func = lambda: (_
                     for _ in ()).throw(ClientError(resp, "test2"))  # NOQA
     self.assertRaises(ClientError, Action()._run_api, func)
Пример #8
0
 def test_process_unimplemented(self):
     action = Action().process(None)
     self.fail('Should have raised NotImplementedError')