aboutsummaryrefslogtreecommitdiffstats
path: root/controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/drl/legacy/ControlLoopParamsTest.java
blob: f636e08f6a2c8c0d0b225f90b5f54afb37691445 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*-
 * ============LICENSE_START=======================================================
 * ONAP
 * ================================================================================
 * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.policy.controlloop.drl.legacy;

import static org.junit.Assert.assertEquals;

import com.openpojo.reflection.PojoClass;
import com.openpojo.reflection.impl.PojoClassFactory;
import com.openpojo.validation.Validator;
import com.openpojo.validation.ValidatorBuilder;
import com.openpojo.validation.test.impl.GetterTester;
import com.openpojo.validation.test.impl.SetterTester;
import org.junit.Before;
import org.junit.Test;

public class ControlLoopParamsTest {
    private static final String CONTROL_LOOP_NAME = "c";
    private static final String POLICY_NAME = "m";
    private static final String POLICY_SCOPE = "s";
    private static final String POLICY_VERSION = "v";

    private ControlLoopParams  clp = new ControlLoopParams();

    /**
     * Prepare tests.
     */
    @Before
    public void setUp() {
        clp.setClosedLoopControlName(CONTROL_LOOP_NAME);
        clp.setPolicyName(POLICY_NAME);
        clp.setPolicyScope(POLICY_SCOPE);
        clp.setPolicyVersion(POLICY_VERSION);
    }

    @Test
    public void testPojo() {
        PojoClass controlLoopParams = PojoClassFactory.getPojoClass(ControlLoopParams.class);
        Validator validator = ValidatorBuilder.create()
                                      .with(new SetterTester(), new GetterTester()).build();
        validator.validate(controlLoopParams);
    }

    @Test
    public void getClosedLoopControlName() {
        assertEquals(CONTROL_LOOP_NAME, clp.getClosedLoopControlName());
    }

    @Test
    public void getPolicyName() {
        assertEquals(POLICY_NAME, clp.getPolicyName());
    }

    @Test
    public void getPolicyScope() {
        assertEquals(POLICY_SCOPE, clp.getPolicyScope());
    }

    @Test
    public void getPolicyVersion() {
        assertEquals(POLICY_VERSION, clp.getPolicyVersion());
    }

    @Test
    public void setClosedLoopControlName() {
        clp.setClosedLoopControlName(CONTROL_LOOP_NAME.toUpperCase());
        assertEquals(CONTROL_LOOP_NAME.toUpperCase(), clp.getClosedLoopControlName());
    }

    @Test
    public void setPolicyName() {
        clp.setPolicyName(POLICY_NAME.toUpperCase());
        assertEquals(POLICY_NAME.toUpperCase(), clp.getPolicyName());
    }

    @Test
    public void setPolicyScope() {
        clp.setPolicyScope(POLICY_SCOPE.toUpperCase());
        assertEquals(POLICY_SCOPE.toUpperCase(), clp.getPolicyScope());
    }

    @Test
    public void setPolicyVersion() {
        clp.setPolicyVersion(POLICY_VERSION.toUpperCase());
        assertEquals(POLICY_VERSION.toUpperCase(), clp.getPolicyVersion());
    }

    @Test
    public void testTwo() {
        ControlLoopParams other = new ControlLoopParams();
        other.setClosedLoopControlName(CONTROL_LOOP_NAME);
        other.setPolicyName(POLICY_NAME);
        other.setPolicyScope(POLICY_SCOPE);
        other.setPolicyVersion(POLICY_VERSION);

        assertEquals(clp, other);
        assertEquals(clp.hashCode(), other.hashCode());
        assertEquals(clp.toString(), other.toString());
    }
}