Unit-tests in notification, validation, VLM
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / openecomp-sdc-common-rest / src / test / java / org / openecomp / sdcrests / mapping / EchoMapMappingTest.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdcrests.mapping;
18
19 import static org.junit.Assert.assertEquals;
20 import static org.junit.Assert.assertNotNull;
21
22 import java.util.HashMap;
23 import java.util.Map;
24 import java.util.UUID;
25 import org.junit.Test;
26
27 /**
28  * This class was generated.
29  */
30 public class EchoMapMappingTest {
31
32     @Test()
33     public void testConversion() {
34
35         final int size = 5;
36
37         final Map<String, String> source = new HashMap<>(size);
38         for (int i = 0; i < size; i++) {
39             source.put(String.valueOf(i), UUID.randomUUID().toString());
40         }
41
42         final Map<String, String> target = new HashMap<>(size);
43         final EchoMapMapping mapper = new EchoMapMapping();
44         mapper.doMapping(source, target);
45
46         assertEquals(size, target.size());
47
48         for (Map.Entry<String, String> entry : target.entrySet()) {
49             String value = source.get(entry.getKey());
50             assertNotNull(value);
51             assertEquals(value, entry.getValue());
52         }
53     }
54 }