How to use get_account_summary method in localstack

Best Python code snippet using localstack_python

test_get_account_summary.py

Source:test_get_account_summary.py Github

copy

Full Screen

...33 # mock response API get_account_summary34 with patch.object(client_connect_iam,35 'get_account_summary') as mock_method:36 mock_method.return_value = expected_data_account_summary37 actual_data_account_summary = IAMUtils.get_account_summary(38 trace_id, session, aws_account)39 # check response40 self.assertEqual(expected_data_account_summary['SummaryMap'],41 actual_data_account_summary)42 # check connect client43 mock_method_client.assert_any_call(service_name="iam")44 def test_get_account_summary_success_by_response_not_exists_attribute_summary_map(self):45 # connect client46 client_connect_iam = iam_utils.client_connect()47 expected_data_account_summary = []48 # mock client49 with patch.object(session, 'client') as mock_method_client:50 mock_method_client.return_value = client_connect_iam51 # mock response API get_account_summary52 with patch.object(client_connect_iam,53 'get_account_summary') as mock_method:54 mock_method.return_value = {}55 actual_data_account_summary = IAMUtils.get_account_summary(56 trace_id, session, aws_account)57 # check response58 self.assertEqual(expected_data_account_summary,59 actual_data_account_summary)60 # check connect client61 mock_method_client.assert_any_call(service_name="iam")62 def test_get_account_summary_error_connect_iam(self):63 expected_error_response = copy.deepcopy(DataCommon.ERROR_RESPONSE)64 expected_operation_name = copy.deepcopy(DataCommon.OPERATION_NAME)65 # mock error client66 with patch.object(session, 'client') as mock_method:67 mock_method.side_effect = ClientError(68 error_response=expected_error_response,69 operation_name=expected_operation_name)70 with patch.object(71 PmLogAdapter, 'error',72 return_value=None) as mock_method_error:73 with self.assertRaises(PmError) as exception:74 IAMUtils.get_account_summary(trace_id, session,75 aws_account)76 # check error77 actual_cause_error = exception.exception.cause_error78 self.assertEqual(expected_error_response['Error'],79 actual_cause_error.response['Error'])80 self.assertEqual(expected_operation_name,81 actual_cause_error.operation_name)82 # check message log error83 mock_method_error.assert_any_call("[%s] IAMクライアント作成に失敗しました。",84 aws_account)85 def test_get_account_summary_error_call_get_account_summary(self):86 # connect client87 client_connect_iam = iam_utils.client_connect()88 expected_error_response = copy.deepcopy(DataCommon.ERROR_RESPONSE)89 expected_operation_name = copy.deepcopy(DataCommon.OPERATION_NAME)90 # mock client91 with patch.object(session, 'client') as mock_client:92 mock_client.return_value = client_connect_iam93 # mock error call API get_account_summary94 with patch.object(client_connect_iam,95 'get_account_summary') as mock_method:96 mock_method.side_effect = ClientError(97 error_response=expected_error_response,98 operation_name=expected_operation_name)99 with patch.object(100 PmLogAdapter, 'error',101 return_value=None) as mock_method_error:102 with self.assertRaises(PmError) as exception:103 IAMUtils.get_account_summary(trace_id, session,104 aws_account)105 # check error106 actual_cause_error = exception.exception.cause_error107 self.assertEqual(expected_error_response['Error'],108 actual_cause_error.response['Error'])109 self.assertEqual(expected_operation_name,110 actual_cause_error.operation_name)111 # check message log error112 mock_method_error.assert_any_call("[%s] アカウントサマリーの取得に失敗しました。",...

Full Screen

Full Screen

test_account_service.py

Source:test_account_service.py Github

copy

Full Screen

...14 self.assertEqual(tr_1, 1234)15 self.assertEqual(tr_2, 1234)16 def test_has_to_call_db_on_summary(self):17 self.service.db.get_account_summary = MagicMock()18 self.service.get_account_summary()19 self.assertEqual(self.service.db.get_account_summary.call_count, 1)20 def test_has_to_call_db_on_transactions(self):21 self.service.db.get_all_transactions = MagicMock()22 self.service.get_transactions()23 self.assertEqual(self.service.db.get_all_transactions.call_count, 1)24 25 def test_throws_exeption_when_amount_becomes_negative(self):26 self.service.db.get_account_summary = MagicMock(return_value=20)27 with self.assertRaises(NegativeTotalError):28 self.service.create_debit(30, "Credit greater than total account money")29 30 def test_not_throws_exeption_when_amount_becomes_zero(self):31 self.service.db.get_account_summary = MagicMock(return_value=20)32 self.service.create_debit(20, "Credit greater than total account money")

Full Screen

Full Screen

get_account_summary.py

Source:get_account_summary.py Github

copy

Full Screen

...16# Create client17iam = boto3.client('iam')1819# Get account overview summary20summary = iam.get_account_summary()21print(summary)2223# snippet-end:[iam.python.get_account_summary.complete]24# snippet-comment:[These are tags for the AWS doc team's sample catalog. Do not remove.]25# snippet-sourcedescription:[get_account_summary.py demonstrates how to retrieve the summary of your current IAM account.]26# snippet-keyword:[Python]27# snippet-sourcesyntax:[python]28# snippet-sourcesyntax:[python]29# snippet-keyword:[AWS SDK for Python (Boto3)]30# snippet-keyword:[Code Sample]31# snippet-keyword:[AWS Identity and Access Management (IAM)]32# snippet-service:[iam]33# snippet-sourcetype:[full-example]34# snippet-sourcedate:[2018-12-26] ...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run localstack automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful