3dcc5e8d7e8f989db997162d841ab2f73eab28df
[policy/apex-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2019-2020 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.model.policymodel.concepts;
23
24 import static org.assertj.core.api.Assertions.assertThatThrownBy;
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertFalse;
27 import static org.junit.Assert.assertNotEquals;
28 import static org.junit.Assert.assertNotNull;
29 import static org.junit.Assert.assertTrue;
30 import static org.junit.Assert.fail;
31
32 import org.junit.Test;
33 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
34 import org.onap.policy.apex.model.basicmodel.concepts.AxReferenceKey;
35 import org.onap.policy.apex.model.basicmodel.concepts.AxValidationResult;
36 import org.onap.policy.apex.model.basicmodel.concepts.AxValidationResult.ValidationResult;
37
38 /**
39  * Test task parameters.
40  * 
41  * @author Liam Fallon (liam.fallon@ericsson.com)
42  */
43 public class TaskParameterTest {
44
45     @Test
46     public void testTaskParameter() {
47         assertNotNull(new AxTaskParameter());
48         assertNotNull(new AxTaskParameter(new AxReferenceKey()));
49         assertNotNull(new AxTaskParameter(new AxReferenceKey(), "DefaultValue"));
50
51         final AxTaskParameter par = new AxTaskParameter();
52
53         final AxReferenceKey parKey = new AxReferenceKey("ParParentName", "0.0.1", "PLN", "LN");
54         par.setKey(parKey);
55         assertEquals("ParParentName:0.0.1:PLN:LN", par.getKey().getId());
56         assertEquals("ParParentName:0.0.1:PLN:LN", par.getKeys().get(0).getId());
57
58         par.setDefaultValue("DefaultValue");
59         assertEquals("DefaultValue", par.getTaskParameterValue());
60
61         AxValidationResult result = new AxValidationResult();
62         result = par.validate(result);
63         assertEquals(AxValidationResult.ValidationResult.VALID, result.getValidationResult());
64
65         par.setKey(AxReferenceKey.getNullKey());
66         result = new AxValidationResult();
67         result = par.validate(result);
68         assertEquals(ValidationResult.INVALID, result.getValidationResult());
69
70         par.setKey(parKey);
71         result = new AxValidationResult();
72         result = par.validate(result);
73         assertEquals(ValidationResult.VALID, result.getValidationResult());
74
75         assertThatThrownBy(() -> par.setDefaultValue(null))
76             .hasMessage("defaultValue may not be null");
77         par.setDefaultValue("");
78         result = new AxValidationResult();
79         result = par.validate(result);
80         assertEquals(ValidationResult.WARNING, result.getValidationResult());
81
82         par.setDefaultValue("DefaultValue");
83         result = new AxValidationResult();
84         result = par.validate(result);
85         assertEquals(ValidationResult.VALID, result.getValidationResult());
86
87         par.clean();
88
89         final AxTaskParameter clonedPar = new AxTaskParameter(par);
90         assertEquals("AxTaskParameter:(key=AxReferenceKey:(parentKeyName=ParParentName,parentKeyVersion=0.0.1,"
91                         + "parentLocalName=PLN,localName=LN),defaultValue=DefaultValue)", clonedPar.toString());
92
93         assertFalse(par.hashCode() == 0);
94
95         assertTrue(par.equals(par));
96         assertTrue(par.equals(clonedPar));
97         assertFalse(par.equals(null));
98         assertFalse(par.equals((Object) "Hello"));
99         assertFalse(par.equals(new AxTaskParameter(AxReferenceKey.getNullKey(), "DefaultValue")));
100         assertFalse(par.equals(new AxTaskParameter(parKey, "OtherDefaultValue")));
101         assertTrue(par.equals(new AxTaskParameter(parKey, "DefaultValue")));
102
103         assertEquals(0, par.compareTo(par));
104         assertEquals(0, par.compareTo(clonedPar));
105         assertNotEquals(0, par.compareTo(new AxArtifactKey()));
106         assertNotEquals(0, par.compareTo(null));
107         assertNotEquals(0, par.compareTo(new AxTaskParameter(AxReferenceKey.getNullKey(), "DefaultValue")));
108         assertNotEquals(0, par.compareTo(new AxTaskParameter(parKey, "OtherDefaultValue")));
109         assertEquals(0, par.compareTo(new AxTaskParameter(parKey, "DefaultValue")));
110
111         assertNotNull(par.getKeys());
112     }
113 }