import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.oransc.rappmanager.acm.configuration.ACMConfiguration;
-import com.oransc.rappmanager.models.rapp.Rapp;
+import com.oransc.rappmanager.models.cache.RappCacheService;
import com.oransc.rappmanager.models.csar.RappCsarConfigurationHandler;
+import com.oransc.rappmanager.models.rapp.Rapp;
import com.oransc.rappmanager.models.rapp.RappEvent;
-import com.oransc.rappmanager.models.rappinstance.RappInstance;
import com.oransc.rappmanager.models.rapp.RappResourceBuilder;
import com.oransc.rappmanager.models.rapp.RappResources;
import com.oransc.rappmanager.models.rapp.RappState;
-import com.oransc.rappmanager.models.cache.RappCacheService;
+import com.oransc.rappmanager.models.rappinstance.RappInstance;
import com.oransc.rappmanager.models.statemachine.RappInstanceStateMachine;
import com.oransc.rappmanager.models.statemachine.RappInstanceStateMachineConfig;
import java.io.IOException;
assertFalse(deprimeRapp);
}
+ @Test
+ void testDeprimeExceptionRapp() {
+ Rapp rapp = Rapp.builder().rappId(UUID.randomUUID()).name("").packageName(validRappFile)
+ .packageLocation(validCsarFileLocation).state(RappState.COMMISSIONED).build();
+ boolean deprimeRapp = acmDeployer.deprimeRapp(rapp);
+ assertFalse(deprimeRapp);
+ }
+
@Test
void testDeleteComposition() throws JsonProcessingException {
UUID compositionId = UUID.randomUUID();
@Autowired
RappInstanceStateMachine rappInstanceStateMachine;
@Autowired
- RappCacheService rappCacheService;
- @Autowired
ObjectMapper objectMapper;
private final String validRappFile = "valid-rapp-package.csar";
String URI_PROVIDER_REGISTRATIONS, URI_PROVIDER_REGISTRATION, URI_PUBLISH_APIS, URI_PUBLISH_API, URI_INVOKERS,
}
@Test
- void testUndeployRappInstanceFailure() throws Exception {
+ void testUndeployRappInstanceFailure() {
UUID rappId = UUID.randomUUID();
UUID apfId = UUID.randomUUID();
List<String> invokers = List.of(String.valueOf(UUID.randomUUID()), String.valueOf(UUID.randomUUID()));
--- /dev/null
+/*-
+ * ============LICENSE_START======================================================================
+ * Copyright (C) 2023 Nordix Foundation. 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.
+ * ============LICENSE_END========================================================================
+ */
+
+package com.oransc.rappmanager.sme.service;
+
+import static org.junit.jupiter.api.Assertions.assertFalse;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+import static org.mockito.Mockito.doNothing;
+import static org.mockito.Mockito.times;
+import static org.mockito.Mockito.verify;
+import static org.mockito.Mockito.when;
+
+import com.oransc.rappmanager.sme.provider.data.APIProviderEnrolmentDetails;
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.boot.test.mock.mockito.MockBean;
+import org.springframework.boot.test.mock.mockito.SpyBean;
+
+@SpringBootTest(classes = SmeLifecycleManager.class)
+class SmeLifecycleManagerTest {
+
+ @Autowired
+ @MockBean
+ SmeDeployer smeDeployer;
+
+ @Autowired
+ @SpyBean
+ SmeLifecycleManager smeLifecycleManager;
+
+ @Test
+ void testStartWithSuccess() {
+ when(smeDeployer.createAMF()).thenReturn(new APIProviderEnrolmentDetails());
+ smeLifecycleManager.start();
+ assertTrue(smeLifecycleManager.isRunning());
+ }
+
+ @Test
+ void testStartWithFailure() {
+ when(smeDeployer.createAMF()).thenReturn(null);
+ smeLifecycleManager.start();
+ assertFalse(smeLifecycleManager.isRunning());
+ }
+
+ @Test
+ void testStopWithSuccess() {
+ doNothing().when(smeDeployer).deleteAMF();
+ when(smeDeployer.createAMF()).thenReturn(new APIProviderEnrolmentDetails());
+ smeLifecycleManager.start();
+ assertTrue(smeLifecycleManager.isRunning());
+ smeLifecycleManager.stop();
+ verify(smeDeployer, times(1)).deleteAMF();
+ assertFalse(smeLifecycleManager.isRunning());
+ }
+
+ @Test
+ void testStopWithoutStart() {
+ smeLifecycleManager.stop();
+ verify(smeDeployer, times(0)).deleteAMF();
+ assertFalse(smeLifecycleManager.isRunning());
+ }
+}