Skip to content

Commit f24be79

Browse files
committed
Addressed review comments
Signed-off-by: Krishna Kondaka <[email protected]>
1 parent 60ea90e commit f24be79

File tree

6 files changed

+50
-7
lines changed

6 files changed

+50
-7
lines changed

data-prepper-plugins/cloudwatch-logs/src/main/java/org/opensearch/dataprepper/plugins/sink/cloudwatch_logs/CloudWatchLogsSink.java

+6
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,13 @@ public CloudWatchLogsSink(final PluginSetting pluginSetting,
5555
thresholdConfig.getMaxEventSizeBytes(),
5656
thresholdConfig.getMaxRequestSizeBytes(),thresholdConfig.getLogSendInterval());
5757

58+
if (awsConfig == null && awsCredentialsSupplier == null) {
59+
throw new RuntimeException("Missing awsConfig and awsCredentialsSupplier");
60+
}
5861
CloudWatchLogsClient cloudWatchLogsClient = CloudWatchLogsClientFactory.createCwlClient(awsConfig, awsCredentialsSupplier);
62+
if (cloudWatchLogsClient == null) {
63+
throw new RuntimeException("cloudWatchLogsClient is null");
64+
}
5965

6066
BufferFactory bufferFactory = null;
6167
if (cloudWatchLogsSinkConfig.getBufferType().equals("in_memory")) {

data-prepper-plugins/cloudwatch-logs/src/main/java/org/opensearch/dataprepper/plugins/sink/cloudwatch_logs/client/CloudWatchLogsClientFactory.java

+7-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import org.opensearch.dataprepper.plugins.sink.cloudwatch_logs.config.AwsConfig;
1111
import software.amazon.awssdk.auth.credentials.AwsCredentialsProvider;
1212
import software.amazon.awssdk.core.client.config.ClientOverrideConfiguration;
13+
import software.amazon.awssdk.regions.Region;
1314
import software.amazon.awssdk.services.cloudwatchlogs.CloudWatchLogsClient;
1415

1516
/**
@@ -27,11 +28,14 @@ private CloudWatchLogsClientFactory() {
2728
* @return CloudWatchLogsClient used to interact with CloudWatch Logs services.
2829
*/
2930
public static CloudWatchLogsClient createCwlClient(final AwsConfig awsConfig, final AwsCredentialsSupplier awsCredentialsSupplier) {
30-
final AwsCredentialsOptions awsCredentialsOptions = convertToCredentialOptions(awsConfig);
31-
final AwsCredentialsProvider awsCredentialsProvider = awsCredentialsSupplier.getProvider(awsCredentialsOptions);
31+
final AwsCredentialsProvider awsCredentialsProvider = awsConfig != null ? awsCredentialsSupplier.getProvider(convertToCredentialOptions(awsConfig)) : awsCredentialsSupplier.getProvider(AwsCredentialsOptions.defaultOptionsWithDefaultCredentialsProvider());
32+
Region region = awsConfig != null ? awsConfig.getAwsRegion() : awsCredentialsSupplier.getDefaultRegion().get();
3233

34+
if (awsCredentialsProvider == null || region == null) {
35+
return null;
36+
}
3337
return CloudWatchLogsClient.builder()
34-
.region(awsConfig.getAwsRegion())
38+
.region(region)
3539
.credentialsProvider(awsCredentialsProvider)
3640
.overrideConfiguration(createOverrideConfiguration()).build();
3741
}

data-prepper-plugins/cloudwatch-logs/src/main/java/org/opensearch/dataprepper/plugins/sink/cloudwatch_logs/client/CloudWatchLogsService.java

-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ public class CloudWatchLogsService {
3636
private final CloudWatchLogsDispatcher cloudWatchLogsDispatcher;
3737
private final Buffer buffer;
3838
private final CloudWatchLogsLimits cloudWatchLogsLimits;
39-
//private List<EventHandle> bufferedEventHandles;
4039
private final SinkStopWatch sinkStopWatch;
4140
private final ReentrantLock processLock;
4241
private final DlqPushHandler dlqPushHandler;
@@ -48,8 +47,6 @@ public CloudWatchLogsService(final Buffer buffer,
4847
this.buffer = buffer;
4948
this.cloudWatchLogsLimits = cloudWatchLogsLimits;
5049

51-
//bufferedEventHandles = new ArrayList<>();
52-
5350
processLock = new ReentrantLock();
5451
sinkStopWatch = new SinkStopWatch();
5552

data-prepper-plugins/cloudwatch-logs/src/main/java/org/opensearch/dataprepper/plugins/sink/cloudwatch_logs/config/CloudWatchLogsSinkConfig.java

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ public class CloudWatchLogsSinkConfig {
1717
public static final String DEFAULT_BUFFER_TYPE = "in_memory";
1818

1919
@JsonProperty("aws")
20-
@NotNull
2120
@Valid
2221
private AwsConfig awsConfig;
2322

data-prepper-plugins/cloudwatch-logs/src/test/java/org/opensearch/dataprepper/plugins/sink/cloudwatch_logs/CloudWatchLogsSinkTest.java

+14
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
import java.util.Collection;
2727

2828
import static org.junit.jupiter.api.Assertions.assertTrue;
29+
import static org.junit.jupiter.api.Assertions.assertThrows;
2930
import static org.mockito.ArgumentMatchers.any;
3031
import static org.mockito.Mockito.atLeast;
3132
import static org.mockito.Mockito.mock;
@@ -100,6 +101,19 @@ void WHEN_sink_is_initialized_THEN_sink_is_ready_returns_true() {
100101
}
101102
}
102103

104+
@Test
105+
void WHEN_awsConfig_and_awsCredentialsSupplier_null_THEN_should_throw() {
106+
mockCredentialSupplier = null;
107+
when(mockCloudWatchLogsSinkConfig.getAwsConfig()).thenReturn(null);
108+
try(MockedStatic<CloudWatchLogsClientFactory> mockedStatic = mockStatic(CloudWatchLogsClientFactory.class)) {
109+
mockedStatic.when(() -> CloudWatchLogsClientFactory.createCwlClient(any(AwsConfig.class),
110+
any(AwsCredentialsSupplier.class)))
111+
.thenReturn(mockClient);
112+
113+
assertThrows(RuntimeException.class, ()-> getTestCloudWatchSink());
114+
}
115+
}
116+
103117
@Test
104118
void WHEN_given_sample_empty_records_THEN_records_are_processed() {
105119
try(MockedStatic<CloudWatchLogsClientFactory> mockedStatic = mockStatic(CloudWatchLogsClientFactory.class)) {

data-prepper-plugins/cloudwatch-logs/src/test/java/org/opensearch/dataprepper/plugins/sink/cloudwatch_logs/client/CloudWatchLogsClientFactoryTest.java

+23
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,16 @@
1919
import software.amazon.awssdk.services.cloudwatchlogs.CloudWatchLogsClient;
2020
import software.amazon.awssdk.services.cloudwatchlogs.CloudWatchLogsClientBuilder;
2121

22+
2223
import java.util.Map;
24+
import java.util.Optional;
2325
import java.util.UUID;
2426

2527
import static org.hamcrest.MatcherAssert.assertThat;
2628
import static org.hamcrest.Matchers.equalTo;
2729
import static org.junit.jupiter.api.Assertions.assertNotNull;
30+
import static org.junit.jupiter.api.Assertions.assertNull;
31+
import static org.mockito.ArgumentMatchers.any;
2832
import static org.mockito.Mockito.mock;
2933
import static org.mockito.Mockito.when;
3034
import static org.mockito.Mockito.mockStatic;
@@ -34,22 +38,41 @@ class CloudWatchLogsClientFactoryTest {
3438
private AwsConfig mockAwsConfig;
3539
private AwsCredentialsSupplier mockAwsCredentialsSupplier;
3640
private AwsCredentialsOptions mockAwsCredentialsOptions;
41+
private AwsCredentialsProvider mockAwsCredentialsProvider;
3742

3843
@BeforeEach
3944
void setUp() {
4045
mockAwsConfig = mock(AwsConfig.class);
4146
mockAwsCredentialsSupplier = mock(AwsCredentialsSupplier.class);
4247
mockAwsCredentialsOptions = mock(AwsCredentialsOptions.class);
48+
mockAwsCredentialsProvider = mock(AwsCredentialsProvider.class);
4349
when(mockAwsConfig.getAwsRegion()).thenReturn(Region.US_EAST_1);
50+
when(mockAwsCredentialsSupplier.getDefaultRegion()).thenReturn(Optional.of(Region.US_EAST_1));
4451
}
4552

4653
@Test
4754
void GIVEN_default_credentials_SHOULD_return_non_null_client() {
55+
when(mockAwsCredentialsSupplier.getProvider(any())).thenReturn(mockAwsCredentialsProvider);
4856
final CloudWatchLogsClient cloudWatchLogsClientToTest = CloudWatchLogsClientFactory.createCwlClient(mockAwsConfig, mockAwsCredentialsSupplier);
4957

5058
assertNotNull(cloudWatchLogsClientToTest);
5159
}
5260

61+
@Test
62+
void GIVEN_default_credentials_with_no_provider_SHOULD_return_null_client() {
63+
final CloudWatchLogsClient cloudWatchLogsClientToTest = CloudWatchLogsClientFactory.createCwlClient(mockAwsConfig, mockAwsCredentialsSupplier);
64+
65+
assertNull(cloudWatchLogsClientToTest);
66+
}
67+
68+
@Test
69+
void GIVEN_default_credentials_with_no_region_SHOULD_return_null_client() {
70+
when(mockAwsConfig.getAwsRegion()).thenReturn(null);
71+
final CloudWatchLogsClient cloudWatchLogsClientToTest = CloudWatchLogsClientFactory.createCwlClient(mockAwsConfig, mockAwsCredentialsSupplier);
72+
73+
assertNull(cloudWatchLogsClientToTest);
74+
}
75+
5376
@Test
5477
void GIVEN_valid_credential_and_aws_parameters_SHOULD_generate_valid_provider_and_options() {
5578
final String stsRoleArn = UUID.randomUUID().toString();

0 commit comments

Comments
 (0)