1ee1c4a700d33afd14048d3f0a4a95e936a65169
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
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=========================================================
19  */
20
21 package org.openecomp.sdc.asdctool.configuration;
22
23 import static org.mockito.Mockito.mock;
24
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;
34
35 public class ArtifactUUIDFixConfigurationTest {
36
37         private ArtifactUUIDFixConfiguration createTestSubject() {
38                 return new ArtifactUUIDFixConfiguration();
39         }
40
41         @Test
42         public void testArtifactUuidFix() throws Exception {
43                 ArtifactUUIDFixConfiguration testSubject;
44                 ArtifactUuidFix result;
45
46                 // default test
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);
53
54                 result = testSubject.artifactUuidFix(janusGraphDao, toscaOperationFacade,
55                         toscaExportHandler, artifactCassandraDao, csarUtils);
56         }
57
58         @Test
59         public void testServiceDistributionArtifactsBuilder() throws Exception {
60                 ArtifactUUIDFixConfiguration testSubject;
61                 ServiceDistributionArtifactsBuilder result;
62
63                 // default test
64                 testSubject = createTestSubject();
65         }
66
67         @Test
68         public void testMapper() throws Exception {
69                 ArtifactUUIDFixConfiguration testSubject;
70                 PropertiesFactoryBean result;
71
72                 // default test
73                 testSubject = createTestSubject();
74                 result = testSubject.mapper();
75         }
76 }