Catalog alignment
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / configuration / ArtifactUUIDFixConfigurationTest.java
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 org.junit.Test;
24 import org.openecomp.sdc.asdctool.impl.ArtifactUuidFix;
25 import org.openecomp.sdc.be.components.distribution.engine.ServiceDistributionArtifactsBuilder;
26 import org.openecomp.sdc.be.dao.cassandra.ArtifactCassandraDao;
27 import org.openecomp.sdc.be.dao.jsongraph.JanusGraphDao;
28 import org.openecomp.sdc.be.model.jsonjanusgraph.operations.ToscaOperationFacade;
29 import org.openecomp.sdc.be.tosca.CsarUtils;
30 import org.openecomp.sdc.be.tosca.ToscaExportHandler;
31
32 import static org.mockito.Mockito.mock;
33
34 public class ArtifactUUIDFixConfigurationTest {
35
36         private ArtifactUUIDFixConfiguration createTestSubject() {
37                 return new ArtifactUUIDFixConfiguration();
38         }
39
40         private static ToscaExportHandler toscaExportHandler;
41         private static CsarUtils csarUtils;
42
43         @Test
44         public void testArtifactUuidFix() throws Exception {
45                 ArtifactUUIDFixConfiguration testSubject;
46                 ArtifactUuidFix result;
47
48                 // default test
49                 testSubject = createTestSubject();
50                 JanusGraphDao janusGraphDao = mock(JanusGraphDao.class);
51                 ToscaOperationFacade toscaOperationFacade = mock(ToscaOperationFacade.class);
52                 ArtifactCassandraDao artifactCassandraDao = mock(ArtifactCassandraDao.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 }