Skip to content
Snippets Groups Projects
Commit 233d33aa authored by Konrad Krasnodebski's avatar Konrad Krasnodebski
Browse files

Fix aws tests

parent 8e1c2a42
No related branches found
No related tags found
2 merge requests!620Update version of default branch to 0.27.0-SNAPSHOT,!535Extend cron to catch about to expire legal tags
Pipeline #247137 failed
......@@ -23,6 +23,7 @@ import org.opengroup.osdu.core.aws.mongodb.config.MongoProperties;
import org.opengroup.osdu.core.common.provider.interfaces.ITenantFactory;
import org.opengroup.osdu.legal.aws.cache.GroupCache;
import org.opengroup.osdu.legal.aws.jobs.LegalTagPublisherImpl;
import org.opengroup.osdu.legal.aws.jobs.AboutToExpireLegalTagPublisherImpl;
import org.opengroup.osdu.legal.aws.tags.dataaccess.mongodb.config.MultiClusteredConfigReaderLegal;
import org.springframework.boot.test.context.TestConfiguration;
import org.springframework.context.annotation.Bean;
......@@ -43,6 +44,11 @@ public class LegalTestConfig {
return Mockito.mock(LegalTagPublisherImpl.class);
}
@Bean
public AboutToExpireLegalTagPublisherImpl aboutToExpireLegalTagPublisherImpl() {
return Mockito.mock(AboutToExpireLegalTagPublisherImpl.class);
}
@Bean
public MultiClusteredConfigReader configReader() {
MultiClusteredConfigReaderLegal multiClusteredConfigReaderLegal = Mockito.mock(MultiClusteredConfigReaderLegal.class);
......
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.opengroup.osdu.legal.aws.jobs;
import static org.junit.Assert.assertNotNull;
import static org.mockito.Mockito.doNothing;
import static org.mockito.Mockito.when;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.opengroup.osdu.core.aws.sns.AmazonSNSConfig;
import org.opengroup.osdu.core.aws.sns.PublishRequestBuilder;
import org.opengroup.osdu.core.aws.ssm.K8sLocalParameterProvider;
import org.opengroup.osdu.core.aws.ssm.K8sParameterNotFoundException;
import org.opengroup.osdu.core.common.model.http.DpsHeaders;
import org.springframework.test.util.ReflectionTestUtils;
import com.amazonaws.services.sns.AmazonSNS;
class AboutToExpireLegalTagPublisherImplTest {
@InjectMocks
private AboutToExpireLegalTagPublisherImpl aboutToExpireLegalTagPublisherImpl;
@Mock
private AmazonSNSConfig snsConfig;
@Mock
private K8sLocalParameterProvider k8sLocalParameterProvider;
@Mock
private AmazonSNS snsClient;
@Mock
private DpsHeaders headers;
@Mock
private PublishRequestBuilder<AwsAboutToExpireLegalTags> publishRequestBuilder;
private final String testTopic = "testTopic";
private final String testRegion = "testRegion";
private static final String DATA_PARTITION_ID = "testDataPartitionId";
private static final String CORRELATION_ID = "testCorrelationId";
private static final String AUTHORIZATION = "testAuthorization";
@BeforeEach
void setup() throws K8sParameterNotFoundException {
MockitoAnnotations.openMocks(this);
when(snsConfig.AmazonSNS()).thenReturn(snsClient);
when(k8sLocalParameterProvider.getParameterAsString("legal-sns-topic-arn"))
.thenReturn(testTopic);
ReflectionTestUtils.setField(aboutToExpireLegalTagPublisherImpl, "amazonSNSRegion", testRegion);
when(headers.getPartitionIdWithFallbackToAccountId()).thenReturn(DATA_PARTITION_ID);
doNothing().when(headers).addCorrelationIdIfMissing();
when(headers.getCorrelationId()).thenReturn(CORRELATION_ID);
when(headers.getAuthorization()).thenReturn(AUTHORIZATION);
aboutToExpireLegalTagPublisherImpl.init();
}
@Test
void testInit() throws K8sParameterNotFoundException{
// Assert
assertNotNull(aboutToExpireLegalTagPublisherImpl);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment