Added oparent to sdc main
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / configuration / mocks / es / ESCatalogDAOMockTest.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.mocks.es;
22
23 import fj.data.Either;
24 import org.junit.Test;
25 import org.openecomp.sdc.be.dao.api.ResourceUploadStatus;
26 import org.openecomp.sdc.be.resources.data.ESArtifactData;
27
28 import java.util.List;
29
30 public class ESCatalogDAOMockTest {
31
32         private ESCatalogDAOMock createTestSubject() {
33                 return new ESCatalogDAOMock();
34         }
35
36         @Test
37         public void testAddToIndicesMap() throws Exception {
38                 ESCatalogDAOMock testSubject;
39                 String typeName = "";
40                 String indexName = "";
41
42                 // default test
43                 testSubject = createTestSubject();
44                 testSubject.addToIndicesMap(typeName, indexName);
45         }
46
47         @Test
48         public void testWriteArtifact() throws Exception {
49                 ESCatalogDAOMock testSubject;
50                 ESArtifactData artifactData = null;
51
52                 // default test
53                 testSubject = createTestSubject();
54                 testSubject.writeArtifact(artifactData);
55         }
56
57         @Test
58         public void testGetArtifact() throws Exception {
59                 ESCatalogDAOMock testSubject;
60                 String id = "";
61                 Either<ESArtifactData, ResourceUploadStatus> result;
62
63                 // default test
64                 testSubject = createTestSubject();
65                 result = testSubject.getArtifact(id);
66         }
67
68         @Test
69         public void testGetArtifacts() throws Exception {
70                 ESCatalogDAOMock testSubject;
71                 String[] ids = new String[] { "" };
72                 Either<List<ESArtifactData>, ResourceUploadStatus> result;
73
74                 // default test
75                 testSubject = createTestSubject();
76                 result = testSubject.getArtifacts(ids);
77         }
78
79         @Test
80         public void testDeleteArtifact() throws Exception {
81                 ESCatalogDAOMock testSubject;
82                 String id = "";
83
84                 // default test
85                 testSubject = createTestSubject();
86                 testSubject.deleteArtifact(id);
87         }
88
89         @Test
90         public void testDeleteAllArtifacts() throws Exception {
91                 ESCatalogDAOMock testSubject;
92
93                 // default test
94                 testSubject = createTestSubject();
95                 testSubject.deleteAllArtifacts();
96         }
97 }