Developer guide for making Integration Tests: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
Line 22: Line 22:
## '''events.json'''
## '''events.json'''
##* Syntax; [[Service_-_Integration_Test_Config#events/*.js_Syntax|events Syntax]]
##* Syntax; [[Service_-_Integration_Test_Config#events/*.js_Syntax|events Syntax]]
##* If have many stage, Set <code>initialStage</code> is true only initial stage. Next stage not set this setting
##* If have many stage, Set <code>initialStage</code> is true only initial stage. Next stage not set this setting
##* If <code>snsSqsTrigger</code> is true but not set snsServiceName or snsTopic --> direct invoke  
##* If <code>snsSqsTrigger</code> is true but not set snsServiceName or snsTopic --> direct invoke  
Line 34: Line 33:
## '''tests.json'''
## '''tests.json'''
##* Syntax; [[Service_-_Integration_Test_Config#tests/*.js_Syntax|tests Syntax]]
##* Syntax; [[Service_-_Integration_Test_Config#tests/*.js_Syntax|tests Syntax]]
##* Not use <code><s>dynamoDbOutput</s></code>. Use <code>dynamodbOutputEventIdentifiers</code> instead
##* Use <code>dynamodbOutputEventIdentifiers</code> instead
# Upload file to S3 bucket by batchscript or upload to S3 bucket directly
# Upload file to S3 bucket by batchscript or upload to S3 bucket directly
#:<syntaxhighlight lang="JavaScript">
#:<syntaxhighlight lang="JavaScript">

Revision as of 09:17, 3 April 2025

Overview

How to create folder and file in S3 bucket for prepare integrationTest
Integration Test Config for config of property in file resources.json, events.json and tests.json

Setup integrationtest

Create folder

Create your folder in bucket integrationtest-config-us-east-2/test_config/{your folder name} in S3 bucket
  • {your folder name} maybe is your nickname eg. jamesDev, nicoleDev
  • Can create a subfolder in your folder for each test case or service that you want to test
eg. - integrationtest-config-us-east-2/test_config/jamesDev/SellOfferManager
- integrationtest-config-us-east-2/test_config/jamesDev/ProcessLogical
- integrationtest-config-us-east-2/test_config/jamesDev/SellOfferManager/ProcessLogical

Create file

  1. Create a file in a folder that is used for testing
    • resources.json / events.json / tests.json
    • resources.json and events.json is json object
    • tests.json is json array of objects
    • Can create these files in a SharedResource folder and share it with another test for collaborative usage
    eg. integrationtest-config-us-east-2/test_config/jamesDev/SellOfferManager/SharedResource/resources.json
    • In the main prefix for testing, you don’t need to upload every file. If you have a file in SharedResource, you can skip uploading it 
    1. resources.json
    2. events.json
      • Syntax; events Syntax
      • If have many stage, Set initialStage is true only initial stage. Next stage not set this setting
      • If snsSqsTrigger is true but not set snsServiceName or snsTopic --> direct invoke
      • If DirectSqs and BatchSqsMessages is true --> direct invoke
      • If snsSqsTrigger and DirectSqs is false or not set --> direct invoke
      • forStageMatching Use in test important parameter
      • testValueMatches For random parameter eg. timeStamp or uuid
      • If value in array or number or string is random. Use testValueMatches: true not set forStageMatching: true
      • Multiple eventTags can be added to a single file
      • Have 6 types of events; Dynamodb, Sns/Sqs, Dsq, Invoke, API and NoRetryError
    3. tests.json
      • Syntax; tests Syntax
      • Use dynamodbOutputEventIdentifiers instead
  2. Upload file to S3 bucket by batchscript or upload to S3 bucket directly
    #!/bin/bash 
    set -u 
    
    localPath="/home/dogsrcute/Programming mint/Fixed_Integrationtest/PluemDev/paginate/2stages" 
    bucketName=s3://integrationtest-config-us-east-2/test_config/mintDev/fixed/PluemDev/2stages/ 
    
    aws s3 cp "$localPath" "$bucketName" --recursive
    
    • localPath is part to files for upload
    • bucketName is your bucket

Type of parameter

Parameter type for create property in events.json
object: { 
	forStageMatching: true, 
	properties: {} 
}, 
array: { 
	forStageMatching: true, 
	eventValue: [] 
}, 
number: { 
	forStageMatching: true, 
	value: 1111 
}, 
string: { 
	forStageMatching: true, 
	value: "hi" 
}, 
boolean: { 
	forStageMatching: true, 
	value: true 
} 

// Case empty 
EmptyString:{ 
	value: "" 
}, 
EmptyArray:{ 
	forStageMatching: true, 
	eventValue: [] 
}, 
EmptyObject:{ 
	forStageMatching: true, 
	value: {} 
}

Test

  1. create params for invoke IntTestingTestInitiateIntegrationTestHdrInv function
    { 
    	"serviceName": "ComplexFilter",  
    	"resourceType": "Lambda",  
    	"resourceName": "ProcessComplexFilterHdrSqs",  
    	"integrationTestTags": [ 
    		"test_S3_ByDev"  
    	],  
    	"bucketName": "integrationtest-config-us-east-2",  
    	"bucketPrefix":[  
    		"test_config/mintDev/basicCase/", 
    		"test_config/mintDev/SharedResource/"  
    	]  
    }
    
  2. Find results in IntTestingTestTestRecord table

Working documents

Working_documents - Developer guide for making Integration Tests