2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2016-2018 Ericsson. All rights reserved.
4 * ================================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.apex.model.policymodel.handling;
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertTrue;
25 import static org.junit.Assert.fail;
27 import org.junit.Test;
28 import org.onap.policy.apex.model.basicmodel.concepts.AxKey;
29 import org.onap.policy.apex.model.basicmodel.concepts.AxReferenceKey;
30 import org.onap.policy.apex.model.policymodel.concepts.AxLogic;
31 import org.onap.policy.apex.model.policymodel.handling.PolicyLogicReader;
34 * @author Liam Fallon (liam.fallon@ericsson.com)
36 public class TestPolicyLogicReader {
40 final AxReferenceKey logicKey = new AxReferenceKey("LogicParent", "0.0.1", "LogicInstanceName");
42 final PolicyLogicReader plReader = new PolicyLogicReader();
44 plReader.setLogicPackage("somewhere.over.the.rainbow");
45 assertEquals("somewhere.over.the.rainbow", plReader.getLogicPackage());
47 plReader.setDefaultLogic("FunkyDefaultLogic");
48 assertEquals("FunkyDefaultLogic", plReader.getDefaultLogic());
51 new AxLogic(logicKey, "FunkyLogic", plReader);
52 fail("test should throw an exception here");
53 } catch (final Exception e) {
55 "logic not found for logic \"somewhere/over/the/rainbow/funkylogic/FunkyDefaultLogic.funkylogic\"",
59 plReader.setDefaultLogic(null);
61 new AxLogic(logicKey, "FunkyLogic", plReader);
62 fail("test should throw an exception here");
63 } catch (final Exception e) {
65 "logic not found for logic \"somewhere/over/the/rainbow/funkylogic/LogicParent_LogicInstanceName.funkylogic\"",
69 logicKey.setParentLocalName("LogicParentLocalName");
71 new AxLogic(logicKey, "FunkyLogic", plReader);
72 fail("test should throw an exception here");
73 } catch (final Exception e) {
75 "logic not found for logic \"somewhere/over/the/rainbow/funkylogic/LogicParent_LogicParentLocalName_LogicInstanceName.funkylogic\"",
79 plReader.setLogicPackage("path.to.apex.logic");
81 final AxLogic logic = new AxLogic(logicKey, "FunkyLogic", plReader);
82 assertTrue(logic.getLogic().endsWith("Way out man, this is funky logic!"));
83 } catch (final Exception e) {
84 fail("test should not throw an exception");
87 plReader.setLogicPackage("somewhere.over.the.rainbow");
88 plReader.setDefaultLogic("JavaLogic");
91 final AxLogic logic = new AxLogic(logicKey, "JAVA", plReader);
92 assertEquals("somewhere.over.the.rainbow.java.JavaLogic", logic.getLogic());
93 } catch (final Exception e) {
94 fail("test should not throw an exception");
97 plReader.setDefaultLogic(null);
99 final AxLogic logic = new AxLogic(logicKey, "JAVA", plReader);
100 assertEquals("somewhere.over.the.rainbow.java.LogicParent_LogicParentLocalName_LogicInstanceName",
102 } catch (final Exception e) {
103 fail("test should not throw an exception");
106 logicKey.setParentLocalName(AxKey.NULL_KEY_NAME);
108 final AxLogic logic = new AxLogic(logicKey, "JAVA", plReader);
109 assertEquals("somewhere.over.the.rainbow.java.LogicParent_LogicInstanceName", logic.getLogic());
110 } catch (final Exception e) {
111 fail("test should not throw an exception");