-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adds integration test * fixes script * Another way to set data * removes unnecessary declaration * fix : compile issue * adds kinesis asyncClient Bean * fix : compilation issue * implement integration test
- Loading branch information
1 parent
b7c3730
commit 6dc56a3
Showing
8 changed files
with
154 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env bash | ||
#!/bin/bash | ||
|
||
awslocal kinesis create-stream --stream-name my-test-stream --shard-count 1 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 51 additions & 1 deletion
52
...is-project/producer/src/test/java/com/learning/aws/spring/ApplicationIntegrationTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,60 @@ | ||
package com.learning.aws.spring; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import com.amazonaws.util.BinaryUtils; | ||
import com.fasterxml.jackson.core.JsonProcessingException; | ||
import com.fasterxml.jackson.core.type.TypeReference; | ||
import com.learning.aws.spring.common.AbstractIntegrationTest; | ||
import com.learning.aws.spring.model.IpAddressDTO; | ||
import java.time.Instant; | ||
import java.util.List; | ||
import java.util.concurrent.TimeUnit; | ||
import org.junit.jupiter.api.Test; | ||
import org.springframework.integration.aws.support.AwsHeaders; | ||
import org.springframework.messaging.Message; | ||
import software.amazon.awssdk.services.kinesis.model.Record; | ||
import software.amazon.kinesis.retrieval.KinesisClientRecord; | ||
|
||
class ApplicationIntegrationTest extends AbstractIntegrationTest { | ||
|
||
@Test | ||
void contextLoads() {} | ||
void contextLoads() throws InterruptedException, JsonProcessingException { | ||
|
||
assertThat(this.messageBarrier.await(30, TimeUnit.SECONDS)).isTrue(); | ||
|
||
Message<List<Record>> message = this.messageHolder.get(); | ||
assertThat(message.getHeaders()) | ||
.containsKeys(AwsHeaders.SHARD, AwsHeaders.RECEIVED_STREAM) | ||
.doesNotContainKeys( | ||
AwsHeaders.RECEIVED_PARTITION_KEY, | ||
AwsHeaders.RECEIVED_SEQUENCE_NUMBER, | ||
AwsHeaders.STREAM, | ||
AwsHeaders.PARTITION_KEY, | ||
AwsHeaders.CHECKPOINTER); | ||
|
||
List<Record> payloadList = message.getPayload(); | ||
|
||
assertThat(payloadList).isNotEmpty().hasSizeGreaterThan(1); | ||
|
||
Record item = payloadList.getFirst(); | ||
assertThat(item).isNotNull(); | ||
|
||
KinesisClientRecord kinesisClientRecord = KinesisClientRecord.fromRecord(item); | ||
|
||
String sequenceNumber = kinesisClientRecord.sequenceNumber(); | ||
assertThat(sequenceNumber).isNotBlank(); | ||
|
||
Instant approximateArrivalTimestamp = kinesisClientRecord.approximateArrivalTimestamp(); | ||
assertThat(approximateArrivalTimestamp).isNotNull().isInstanceOf(Instant.class); | ||
|
||
String partitionKey = kinesisClientRecord.partitionKey(); | ||
assertThat(partitionKey).isNotBlank(); | ||
|
||
String dataAsString = new String(BinaryUtils.copyBytesFrom(kinesisClientRecord.data())); | ||
String payload = dataAsString.substring(dataAsString.indexOf("[{")); | ||
List<IpAddressDTO> ipAddressDTOS = | ||
objectMapper.readValue(payload, new TypeReference<>() {}); | ||
assertThat(ipAddressDTOS).isNotEmpty().hasSize(254); | ||
} | ||
} |
3 changes: 2 additions & 1 deletion
3
...roject/producer/src/test/java/com/learning/aws/spring/TestKinesisProducerApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
package com.learning.aws.spring; | ||
|
||
import com.learning.aws.spring.common.ConsumerConfig; | ||
import com.learning.aws.spring.common.ContainerConfig; | ||
import org.springframework.boot.SpringApplication; | ||
|
||
public class TestKinesisProducerApplication { | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.from(KinesisProducerApplication::main) | ||
.with(ContainerConfig.class) | ||
.with(ContainerConfig.class, ConsumerConfig.class) | ||
.run(args); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
...kinesis-project/producer/src/test/java/com/learning/aws/spring/common/ConsumerConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package com.learning.aws.spring.common; | ||
|
||
import static org.testcontainers.containers.localstack.LocalStackContainer.Service.DYNAMODB; | ||
|
||
import java.time.Duration; | ||
import java.util.List; | ||
import java.util.concurrent.CountDownLatch; | ||
import java.util.concurrent.atomic.AtomicReference; | ||
import java.util.function.Consumer; | ||
import org.springframework.boot.test.context.TestConfiguration; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.messaging.Message; | ||
import org.testcontainers.containers.localstack.LocalStackContainer; | ||
import software.amazon.awssdk.auth.credentials.AwsBasicCredentials; | ||
import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider; | ||
import software.amazon.awssdk.core.client.config.ClientOverrideConfiguration; | ||
import software.amazon.awssdk.core.retry.RetryPolicy; | ||
import software.amazon.awssdk.regions.Region; | ||
import software.amazon.awssdk.services.dynamodb.DynamoDbAsyncClient; | ||
import software.amazon.awssdk.services.kinesis.model.Record; | ||
|
||
@TestConfiguration | ||
public class ConsumerConfig { | ||
|
||
@Bean | ||
DynamoDbAsyncClient dynamoDbAsyncClient(LocalStackContainer localStackContainer) { | ||
return DynamoDbAsyncClient.builder() | ||
.endpointOverride(localStackContainer.getEndpointOverride(DYNAMODB)) | ||
.region(Region.of(localStackContainer.getRegion())) | ||
.credentialsProvider( | ||
StaticCredentialsProvider.create( | ||
AwsBasicCredentials.create( | ||
localStackContainer.getAccessKey(), | ||
localStackContainer.getSecretKey()))) | ||
.overrideConfiguration( | ||
ClientOverrideConfiguration.builder() | ||
.apiCallTimeout(Duration.ofSeconds(10)) | ||
.retryPolicy(RetryPolicy.builder().numRetries(3).build()) | ||
.build()) | ||
.build(); | ||
} | ||
|
||
@Bean | ||
public AtomicReference<Message<List<Record>>> messageHolder() { | ||
return new AtomicReference<>(); | ||
} | ||
|
||
@Bean | ||
public CountDownLatch messageBarrier() { | ||
return new CountDownLatch(1); | ||
} | ||
|
||
@Bean | ||
public Consumer<Message<List<Record>>> consumeEvent() { | ||
return eventMessages -> { | ||
messageHolder().set(eventMessages); | ||
messageBarrier().countDown(); | ||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 23 additions & 8 deletions
31
aws-kinesis-project/producer/src/test/resources/application-test.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,23 @@ | ||
cloud.aws.region.use-default-aws-region-chain=false | ||
cloud.aws.credentials.use-default-aws-credentials-chain=false | ||
cloud.aws.stack.auto=false | ||
cloud.aws.region.auto=false | ||
cloud.aws.region.static=us-east-1 | ||
|
||
application.endpoint-uri=http://localhost:4566 | ||
application.region=us-east-1 | ||
|
||
# events inbound | ||
spring.cloud.stream.bindings.consumeEvent-in-0.destination=my-test-stream | ||
spring.cloud.stream.bindings.consumeEvent-in-0.group=my-test-stream-Consumer-Group-1 | ||
spring.cloud.stream.bindings.consumeEvent-in-0.content-type=application/json | ||
spring.cloud.stream.bindings.consumeEvent-in-0.consumer.header-mode=none | ||
spring.cloud.stream.bindings.consumeEvent-in-0.consumer.use-native-decoding=true | ||
#defaults to 1, this will process upto 5 messages concurrently, in reactive mode this is not necessary | ||
spring.cloud.stream.bindings.consumeEvent-in-0.consumer.concurrency=5 | ||
spring.cloud.stream.kinesis.bindings.consumeEvent-in-0.consumer.listenerMode=batch | ||
|
||
spring.cloud.function.definition=consumeEvent;producerSupplier; | ||
|
||
#Kinesis-dynamodb-checkpoint | ||
spring.cloud.stream.kinesis.binder.checkpoint.table=spring-stream-metadata | ||
spring.cloud.stream.kinesis.binder.checkpoint.billingMode=provisioned | ||
spring.cloud.stream.kinesis.binder.checkpoint.readCapacity=5 | ||
spring.cloud.stream.kinesis.binder.checkpoint.writeCapacity=5 | ||
|
||
spring.cloud.stream.kinesis.binder.locks.table=spring-stream-lock-registry | ||
spring.cloud.stream.kinesis.binder.locks.billingMode=provisioned | ||
spring.cloud.stream.kinesis.binder.locks.readCapacity=5 | ||
spring.cloud.stream.kinesis.binder.locks.writeCapacity=5 |