Operational policy modification
[clamp.git] / src / test / java / org / onap / clamp / clds / util / drawing / SvgLoopGeneratorTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  *
22  */
23
24 package org.onap.clamp.clds.util.drawing;
25
26 import static org.assertj.core.api.Assertions.assertThat;
27
28 import com.google.gson.JsonObject;
29 import java.io.IOException;
30 import java.util.HashSet;
31 import javax.xml.parsers.ParserConfigurationException;
32 import org.junit.Test;
33 import org.onap.clamp.loop.Loop;
34 import org.onap.clamp.loop.template.PolicyModel;
35 import org.onap.clamp.policy.microservice.MicroServicePolicy;
36 import org.onap.clamp.policy.operational.OperationalPolicy;
37 import org.xml.sax.SAXException;
38
39 public class SvgLoopGeneratorTest {
40     private Loop getLoop() {
41         MicroServicePolicy ms1 =
42                 new MicroServicePolicy("ms1", new PolicyModel("org.onap.ms1", "", "1.0.0", "short.ms1"),
43                         false,
44                         new HashSet<Loop>());
45         MicroServicePolicy ms2 =
46                 new MicroServicePolicy("ms2", new PolicyModel("org.onap.ms2", "", "1.0.0", "short.ms2"),
47                         false, new HashSet<Loop>());
48         OperationalPolicy opPolicy = new OperationalPolicy("OperationalPolicy", new Loop(), new JsonObject(),
49                 new PolicyModel("org.onap.opolicy", null, "1.0.0", "short.OperationalPolicy"));
50         Loop loop = new Loop();
51         loop.addMicroServicePolicy(ms1);
52         loop.addMicroServicePolicy(ms2);
53         loop.addOperationalPolicy(opPolicy);
54         return loop;
55     }
56
57     /**
58      * Test a Svg rendering with all objects.
59      *
60      * @throws IOException In case of isssues
61      * @throws ParserConfigurationException In case of isssues
62      * @throws SAXException In case of isssues
63      */
64     @Test
65     public void getAsSvgTest() throws IOException, ParserConfigurationException, SAXException {
66         String xml = SvgLoopGenerator.getSvgImage(getLoop());
67         assertThat(xml).contains("data-element-id=\"VES\"");
68         assertThat(xml).contains(">VES<");
69         assertThat(xml).contains("data-element-id=\"ms1\"");
70         assertThat(xml).contains("data-element-id=\"ms2\"");
71         assertThat(xml).contains(">short.ms1<");
72         assertThat(xml).contains(">short.ms2<");
73         assertThat(xml).contains("data-element-id=\"OperationalPolicy\"");
74         assertThat(xml).contains(">short.OperationalPolicy<");
75
76     }
77 }