Interface IDeployAssert
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
IDeployAssert.Jsii$Default
- All Known Implementing Classes:
IDeployAssert.Jsii$Proxy
This is only necessary when writing integration tests.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Internal default implementation forIDeployAssert
.static final class
A proxy class which represents a concrete javascript instance of this type. -
Method Summary
Modifier and TypeMethodDescriptionawsApiCall
(String service, String api) (experimental) Query AWS using JavaScript SDK API calls.awsApiCall
(String service, String api, Object parameters) (experimental) Query AWS using JavaScript SDK API calls.(experimental) Query AWS using JavaScript SDK API calls.void
expect
(String id, ExpectedResult expected, ActualResult actual) (experimental) Assert that the ExpectedResult is equal to the ActualResult.httpApiCall
(String url) (experimental) Make an HTTP call to the provided endpoint.httpApiCall
(String url, FetchOptions options) (experimental) Make an HTTP call to the provided endpoint.(experimental) Invoke a lambda function and return the response which can be asserted.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
awsApiCall
@Stability(Experimental) @NotNull IApiCall awsApiCall(@NotNull String service, @NotNull String api, @Nullable Object parameters, @Nullable List<String> outputPaths) (experimental) Query AWS using JavaScript SDK API calls.This can be used to either trigger an action or to return a result that can then be asserted against an expected value
The
service
is the name of an AWS service, in one of the following forms:- An AWS SDK for JavaScript v3 package name (
@aws-sdk/client-api-gateway
) - An AWS SDK for JavaScript v3 client name (
api-gateway
) - An AWS SDK for JavaScript v2 constructor name (
APIGateway
) - A lowercase AWS SDK for JavaScript v2 constructor name (
apigateway
)
The
api
is the name of an AWS API call, in one of the following forms:- An API call name as found in the API Reference documentation (
GetObject
) - The API call name starting with a lowercase letter (
getObject
) - The AWS SDK for JavaScript v3 command class name (
GetObjectCommand
)
Example:
App app; IntegTest integ; integ.assertions.awsApiCall("SQS", "sendMessage", Map.of( "QueueUrl", "url", "MessageBody", "hello")); IApiCall message = integ.assertions.awsApiCall("SQS", "receiveMessage", Map.of( "QueueUrl", "url")); message.expect(ExpectedResult.objectLike(Map.of( "Messages", List.of(Map.of("Body", "hello")))));
- Parameters:
service
- This parameter is required.api
- This parameter is required.parameters
-outputPaths
-
- An AWS SDK for JavaScript v3 package name (
-
awsApiCall
@Stability(Experimental) @NotNull IApiCall awsApiCall(@NotNull String service, @NotNull String api, @Nullable Object parameters) (experimental) Query AWS using JavaScript SDK API calls.This can be used to either trigger an action or to return a result that can then be asserted against an expected value
The
service
is the name of an AWS service, in one of the following forms:- An AWS SDK for JavaScript v3 package name (
@aws-sdk/client-api-gateway
) - An AWS SDK for JavaScript v3 client name (
api-gateway
) - An AWS SDK for JavaScript v2 constructor name (
APIGateway
) - A lowercase AWS SDK for JavaScript v2 constructor name (
apigateway
)
The
api
is the name of an AWS API call, in one of the following forms:- An API call name as found in the API Reference documentation (
GetObject
) - The API call name starting with a lowercase letter (
getObject
) - The AWS SDK for JavaScript v3 command class name (
GetObjectCommand
)
Example:
App app; IntegTest integ; integ.assertions.awsApiCall("SQS", "sendMessage", Map.of( "QueueUrl", "url", "MessageBody", "hello")); IApiCall message = integ.assertions.awsApiCall("SQS", "receiveMessage", Map.of( "QueueUrl", "url")); message.expect(ExpectedResult.objectLike(Map.of( "Messages", List.of(Map.of("Body", "hello")))));
- Parameters:
service
- This parameter is required.api
- This parameter is required.parameters
-
- An AWS SDK for JavaScript v3 package name (
-
awsApiCall
(experimental) Query AWS using JavaScript SDK API calls.This can be used to either trigger an action or to return a result that can then be asserted against an expected value
The
service
is the name of an AWS service, in one of the following forms:- An AWS SDK for JavaScript v3 package name (
@aws-sdk/client-api-gateway
) - An AWS SDK for JavaScript v3 client name (
api-gateway
) - An AWS SDK for JavaScript v2 constructor name (
APIGateway
) - A lowercase AWS SDK for JavaScript v2 constructor name (
apigateway
)
The
api
is the name of an AWS API call, in one of the following forms:- An API call name as found in the API Reference documentation (
GetObject
) - The API call name starting with a lowercase letter (
getObject
) - The AWS SDK for JavaScript v3 command class name (
GetObjectCommand
)
Example:
App app; IntegTest integ; integ.assertions.awsApiCall("SQS", "sendMessage", Map.of( "QueueUrl", "url", "MessageBody", "hello")); IApiCall message = integ.assertions.awsApiCall("SQS", "receiveMessage", Map.of( "QueueUrl", "url")); message.expect(ExpectedResult.objectLike(Map.of( "Messages", List.of(Map.of("Body", "hello")))));
- Parameters:
service
- This parameter is required.api
- This parameter is required.
- An AWS SDK for JavaScript v3 package name (
-
expect
@Stability(Experimental) void expect(@NotNull String id, @NotNull ExpectedResult expected, @NotNull ActualResult actual) (experimental) Assert that the ExpectedResult is equal to the ActualResult.Example:
IntegTest integ; AwsApiCall apiCall; integ.assertions.expect("invoke", ExpectedResult.objectLike(Map.of("Payload", "OK")), ActualResult.fromAwsApiCall(apiCall, "Body"));
- Parameters:
id
- This parameter is required.expected
- This parameter is required.actual
- This parameter is required.
-
httpApiCall
@Stability(Experimental) @NotNull IApiCall httpApiCall(@NotNull String url, @Nullable FetchOptions options) (experimental) Make an HTTP call to the provided endpoint.Example:
App app; IntegTest integ; IApiCall call = integ.assertions.httpApiCall("https://example.com/test"); call.expect(ExpectedResult.objectLike(Map.of( "Message", "Hello World!")));
- Parameters:
url
- This parameter is required.options
-
-
httpApiCall
(experimental) Make an HTTP call to the provided endpoint.Example:
App app; IntegTest integ; IApiCall call = integ.assertions.httpApiCall("https://example.com/test"); call.expect(ExpectedResult.objectLike(Map.of( "Message", "Hello World!")));
- Parameters:
url
- This parameter is required.
-
invokeFunction
(experimental) Invoke a lambda function and return the response which can be asserted.Example:
App app; IntegTest integ; IApiCall invoke = integ.assertions.invokeFunction(LambdaInvokeFunctionProps.builder() .functionName("my-function") .build()); invoke.expect(ExpectedResult.objectLike(Map.of( "Payload", "200")));
- Parameters:
props
- This parameter is required.
-