How to use test_lambda method in localstack

Best Python code snippet using localstack_python

test_LambdaFunctionLevelConcurrentExecutionLimit.py

Source:test_LambdaFunctionLevelConcurrentExecutionLimit.py Github

copy

Full Screen

1import unittest2from checkov.common.models.enums import CheckResult3from checkov.terraform.checks.resource.aws.LambdaFunctionLevelConcurrentExecutionLimit import check4import hcl25class TestLambdaFunctionLevelConcurrentExecutionLimit(unittest.TestCase):6 def test_failure1(self):7 hcl_res = hcl2.loads("""8 resource "aws_lambda_function" "test_lambda" {9 filename = "lambda_function_payload.zip"10 function_name = "lambda_function_name"11 role = aws_iam_role.iam_for_lambda.arn12 handler = "exports.test"13 14 source_code_hash = filebase64sha256("lambda_function_payload.zip")15 16 runtime = "nodejs12.x"17 18 environment {19 variables = {20 foo = "bar"21 }22 }23 }24 """)25 resource_conf = hcl_res['resource'][0]['aws_lambda_function']['test_lambda']26 scan_result = check.scan_resource_conf(conf=resource_conf)27 self.assertEqual(CheckResult.FAILED, scan_result)28 def test_failure2(self):29 hcl_res = hcl2.loads("""30 resource "aws_lambda_function" "test_lambda" {31 filename = "lambda_function_payload.zip"32 function_name = "lambda_function_name"33 role = aws_iam_role.iam_for_lambda.arn34 handler = "exports.test"35 source_code_hash = filebase64sha256("lambda_function_payload.zip")36 reserved_concurrent_executions = -137 runtime = "nodejs12.x"38 environment {39 variables = {40 foo = "bar"41 }42 }43 }44 """)45 resource_conf = hcl_res['resource'][0]['aws_lambda_function']['test_lambda']46 scan_result = check.scan_resource_conf(conf=resource_conf)47 self.assertEqual(CheckResult.FAILED, scan_result)48 def test_success1(self):49 hcl_res = hcl2.loads("""50 resource "aws_lambda_function" "test_lambda" {51 filename = "lambda_function_payload.zip"52 function_name = "lambda_function_name"53 role = aws_iam_role.iam_for_lambda.arn54 handler = "exports.test"55 source_code_hash = filebase64sha256("lambda_function_payload.zip")56 reserved_concurrent_executions = 057 runtime = "nodejs12.x"58 environment {59 variables = {60 foo = "bar"61 }62 }63 64 }65 """)66 resource_conf = hcl_res['resource'][0]['aws_lambda_function']['test_lambda']67 scan_result = check.scan_resource_conf(conf=resource_conf)68 self.assertEqual(CheckResult.PASSED, scan_result)69 def test_success2(self):70 hcl_res = hcl2.loads("""71 resource "aws_lambda_function" "test_lambda" {72 filename = "lambda_function_payload.zip"73 function_name = "lambda_function_name"74 role = aws_iam_role.iam_for_lambda.arn75 handler = "exports.test"76 source_code_hash = filebase64sha256("lambda_function_payload.zip")77 reserved_concurrent_executions = 100078 runtime = "nodejs12.x"79 environment {80 variables = {81 foo = "bar"82 }83 }84 }85 """)86 resource_conf = hcl_res['resource'][0]['aws_lambda_function']['test_lambda']87 scan_result = check.scan_resource_conf(conf=resource_conf)88 self.assertEqual(CheckResult.PASSED, scan_result)89if __name__ == '__main__':...

Full Screen

Full Screen

tester.py

Source:tester.py Github

copy

Full Screen

1import selden2import matplotlib.pyplot as plt3import filter4import qe5import sp_cal6wl_start = 7007wl_stop = 11008wl_step = 19print('Calculating kappa...')10kappa = sp_cal.SpCal('2020.11.11', '2020.11.12', wl_start, wl_stop, wl_step)11print('Done.')12with open('out/K_new.csv', 'w') as out_file:13 curr_wl = wl_start14 while curr_wl <= wl_stop:15 line = '%.1f ,' % curr_wl16 for ch in range(5):17 line += '%.2e, ' % kappa.rel_sens(0, ch + 1, curr_wl)18 out_file.write(line[:-2] + '\n')19 curr_wl += wl_step20exit()21fil = filter.Filters()22apd = qe.APD()23cross = selden24cross9 = selden25temp = 500 # eV26wl = 900 # nm27print(cross.scat_power_dens(temp, wl))28test_lambda = range(800, 1250)29test_temp_range = [1, 10, 100, 1000]30def integrate(x, y):31 res = 0.032 if len(x) != len(y):33 fuckOff34 for ind in range(len(x) - 1):35 res += (y[ind] + y[ind + 1]) * 0.5 * (x[ind + 1] - x[ind])36 return res37for test_temp in test_temp_range:38 local_result = []39 l2 = []40 for wl in test_lambda:41 #print(apd.qe(wl))42 local_result.append(cross.scat_power_dens(test_temp, wl))43 l2.append(cross9.scat_power_dens(test_temp, wl))44 print(' T = %d, integral = %f' % (test_temp, integrate(test_lambda, local_result)))45 plt.plot(test_lambda, local_result)46 plt.plot(test_lambda, l2)47 plt.xlim(800, 1150)48 plt.ylim(0, 0.2)49 plt.legend(['1 eV', '10 eV', '100 eV', '1000 eV'], loc='best')50 plt.xlabel('Wavelenght, nm')51 plt.ylabel('Scattering Power')52 plt.show()...

Full Screen

Full Screen

test_lambda.py

Source:test_lambda.py Github

copy

Full Screen

1# E: Module-$tl=test_lambda@2l = []3# E: Variable-$l=test_lambda.l@l4# D: Define-$tl->$l@l5l1 = lambda a: [y + 1 for y in l]6# E: AnonymousFunction-$anonymous1=test_lambda.($line)@lambda7# E: Variable-$l1=test_lambda.l1@l18# E: Lambda Parameter-$pa=test_lambda.($line).a@a:9# E: Variable-$y=test_lambda.($line).y@y in10# D: Define-$tl->$l1@l111# D: Define-$anonymous1->$pa@a:12# D: Define-$anonymous1->$y@y in13# D: Use-$anonymous1->$y@y + 114l2 = lambda a: {y + 1 for y in l}15# E: AnonymousFunction-$anonymous2=test_lambda.($line)@lambda16# E: Variable-$l2=test_lambda.l2@l217# E: Lambda Parameter-$pa=test_lambda.($line).a@a:18# E: Variable-$y=test_lambda.($line).y@y in19# D: Define-$tl->$l2@l120# D: Define-$anonymous2->$pa@a:21# D: Define-$anonymous2->$y@y in22# D: Use-$anonymous2->$y@y + 123l3 = lambda a: (y + 1 for y in l)24# E: AnonymousFunction-$anonymous3=test_lambda.($line)@lambda25# E: Variable-$l3=test_lambda.l3@l326# E: Lambda Parameter-$pa=test_lambda.($line).a@a:27# E: Variable-$y=test_lambda.($line).y@y in28# D: Define-$tl->$l1@l129# D: Define-$anonymous3->$pa@a:30# D: Define-$anonymous3->$y@y in31# D: Use-$anonymous3->$y@y + 132def wrapper():33 # E: Function-$wrapper=test_lambda.wrapper@wrapper34 # D: Define-$tl->$wrapper@wrapper35 and_one = l1(l)36 # E: Variable-$and_one=test_lambda.and_one@and_one37 # D: Define-$wrapper->$and_one@and_one38 # D: Call-$wrapper->$anonymous1@l1...

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