2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package org.openecomp.sdc.asdctool.migration.tasks.mig1806;
23 import static org.junit.Assert.assertThat;
25 import java.math.BigInteger;
26 import org.hamcrest.core.Is;
27 import org.hamcrest.core.IsNull;
28 import org.junit.jupiter.api.Assertions;
29 import org.junit.jupiter.api.BeforeEach;
30 import org.junit.jupiter.api.Test;
31 import org.junit.jupiter.api.extension.ExtendWith;
32 import org.mockito.Mock;
33 import org.mockito.junit.jupiter.MockitoExtension;
34 import org.openecomp.sdc.asdctool.migration.core.DBVersion;
35 import org.openecomp.sdc.be.dao.jsongraph.JanusGraphDao;
36 import org.openecomp.sdc.be.model.jsonjanusgraph.operations.ToscaOperationFacade;
37 import org.openecomp.sdc.be.model.operations.impl.UserAdminOperation;
39 @ExtendWith(MockitoExtension.class)
40 class ForwardPathMigrationTest {
42 private ForwardPathMigration forwardPathMigration = null;
45 private JanusGraphDao janusGraphDao;
48 private UserAdminOperation userAdminOperation;
51 private ToscaOperationFacade toscaOperationFacade;
54 public void setUp() throws Exception {
55 forwardPathMigration = new ForwardPathMigration(janusGraphDao, userAdminOperation, toscaOperationFacade);
59 void testDescription() {
60 assertThat(forwardPathMigration, IsNull.notNullValue());
61 assertThat("remove corrupted forwarding paths ", Is.is(forwardPathMigration.description()));
65 void testGetVersion() {
66 DBVersion dbVersion = DBVersion.from(BigInteger.valueOf(Version.MAJOR.getValue()), BigInteger.valueOf(Version.MINOR.getValue()));
67 assertThat(dbVersion, Is.is(forwardPathMigration.getVersion()));
72 assertThat(forwardPathMigration, IsNull.notNullValue());
73 Assertions.assertThrows(NullPointerException.class, () -> {
74 forwardPathMigration.migrate();