AT&T 1712 and 1802 release code
[so.git] / common / src / test / java / org / openecomp / mso / client / aai / entities / uri / SimpleUriTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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.mso.client.aai.entities.uri;
22
23 import static org.hamcrest.MatcherAssert.assertThat;
24 import static org.hamcrest.collection.IsIterableContainingInOrder.contains;
25 import static org.junit.Assert.assertEquals;
26
27 import java.util.Map;
28
29 import org.junit.Test;
30 import org.openecomp.mso.client.aai.AAIObjectPlurals;
31 import org.openecomp.mso.client.aai.AAIObjectType;
32
33 public class SimpleUriTest {
34
35         
36         
37         @Test
38         public void relatedToTestPlural() {
39                 AAIResourceUri uri = AAIUriFactory.createResourceUri(AAIObjectType.GENERIC_VNF, "test1");
40                 uri.relatedTo(AAIObjectPlurals.PSERVER);
41                 String uriOutput = uri.build().toString();
42                 assertEquals(true, uriOutput.contains("related-to"));
43         }
44         
45         @Test
46         public void relatedToTestSingular() {
47                 AAIResourceUri uri = AAIUriFactory.createResourceUri(AAIObjectType.GENERIC_VNF, "test1");
48                 uri.relatedTo(AAIObjectType.PSERVER, "test2");
49                 String uriOutput = uri.build().toString();
50                 assertEquals(true, uriOutput.contains("related-to"));
51         }
52         
53         @Test
54         public void cloneTest() {
55                 AAIResourceUri uri = AAIUriFactory.createResourceUri(AAIObjectType.GENERIC_VNF, "test1");
56                 AAIResourceUri cloned = uri.clone();
57                 Map<String,String> keys = cloned.getURIKeys();
58                 assertThat(keys.values(), contains("test1"));
59         }
60         
61         @Test
62         public void getKeysTest() {
63                 AAIResourceUri uri = AAIUriFactory.createResourceUri(AAIObjectType.VSERVER, "cloud1", "cloud2", "tenant1", "vserver1");
64                 Map<String,String> keys = uri.getURIKeys();
65                 System.out.println(keys);
66                 System.out.println(uri.build());
67                 assertEquals("vserver1", keys.get("vserver-id"));
68         }
69 }