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.configuration;
23 import static org.mockito.Mockito.mock;
25 import org.junit.Test;
26 import org.openecomp.sdc.asdctool.impl.ArtifactUuidFix;
27 import org.openecomp.sdc.be.components.distribution.engine.ServiceDistributionArtifactsBuilder;
28 import org.openecomp.sdc.be.dao.cassandra.ArtifactCassandraDao;
29 import org.openecomp.sdc.be.dao.jsongraph.JanusGraphDao;
30 import org.openecomp.sdc.be.model.jsonjanusgraph.operations.ToscaOperationFacade;
31 import org.openecomp.sdc.be.tosca.CsarUtils;
32 import org.openecomp.sdc.be.tosca.ToscaExportHandler;
33 import org.springframework.beans.factory.config.PropertiesFactoryBean;
35 public class ArtifactUUIDFixConfigurationTest {
37 private ArtifactUUIDFixConfiguration createTestSubject() {
38 return new ArtifactUUIDFixConfiguration();
42 public void testArtifactUuidFix() throws Exception {
43 ArtifactUUIDFixConfiguration testSubject;
44 ArtifactUuidFix result;
47 testSubject = createTestSubject();
48 JanusGraphDao janusGraphDao = mock(JanusGraphDao.class);
49 ToscaOperationFacade toscaOperationFacade = mock(ToscaOperationFacade.class);
50 ToscaExportHandler toscaExportHandler = mock(ToscaExportHandler.class);
51 ArtifactCassandraDao artifactCassandraDao = mock(ArtifactCassandraDao.class);
52 CsarUtils csarUtils = mock(CsarUtils.class);
54 result = testSubject.artifactUuidFix(janusGraphDao, toscaOperationFacade,
55 toscaExportHandler, artifactCassandraDao, csarUtils);
59 public void testServiceDistributionArtifactsBuilder() throws Exception {
60 ArtifactUUIDFixConfiguration testSubject;
61 ServiceDistributionArtifactsBuilder result;
64 testSubject = createTestSubject();
68 public void testMapper() throws Exception {
69 ArtifactUUIDFixConfiguration testSubject;
70 PropertiesFactoryBean result;
73 testSubject = createTestSubject();
74 result = testSubject.mapper();