aboutsummaryrefslogtreecommitdiffstats
path: root/feature-pooling-messages/src/test/java/org/onap/policy/drools/pooling/message/SupportBasicMessageTester.java
blob: 2fe905a943b3e227a014413728511541af5c4b48 (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/*
 * ============LICENSE_START=======================================================
 * ONAP
 * ================================================================================
 * Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved.
 * Modifications Copyright (C) 2024 Nordix Foundation.
 * ================================================================================
 * 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.drools.pooling.message;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.fail;

import org.junit.jupiter.api.Test;
import org.onap.policy.drools.pooling.PoolingFeatureException;
import org.onap.policy.drools.pooling.Serializer;

/**
 * Superclass used to test subclasses of {@link Message}.
 * 
 * @param <T> type of {@link Message} subclass that this tests
 */
public abstract class SupportBasicMessageTester<T extends Message> {
    // values set by makeValidMessage()
    public static final String VALID_HOST_PREDECESSOR = "hostA";
    public static final String VALID_HOST = "hostB";
    public static final String VALID_CHANNEL = "channelC";

    /**
     * Used to perform JSON serialization and de-serialization.
     */
    public final Serializer mapper = new Serializer();

    /**
     * The subclass of the type of Message being tested.
     */
    private final Class<T> subclazz;

    /**
     * Constructor.
     * 
     * @param subclazz subclass of {@link Message} being tested
     */
    public SupportBasicMessageTester(Class<T> subclazz) {
        this.subclazz = subclazz;
    }

    /**
     * Creates a default Message and verifies that the source and channel are
     * {@code null}.
     * 
     */
    @Test
    public final void testDefaultConstructor() {
        testDefaultConstructorFields(makeDefaultMessage());
    }

    /**
     * Tests that the Message has the correct source, and that the channel is
     * {@code null}.
     * 
     */
    @Test
    public final void testConstructorWithArgs() {
        testValidFields(makeValidMessage());
    }

    /**
     * Makes a valid message and then verifies that it can be serialized and
     * de-serialized. Verifies that the de-serialized message is of the same
     * type, and has the same content, as the original.
     * 
     * @throws Exception if an error occurs
     */
    @Test
    public final void testJsonEncodeDecode() throws Exception {
        T originalMsg = makeValidMessage();

        Message msg;
        if (originalMsg.getClass() == Message.class) {
            msg = originalMsg;
        } else {
            msg = mapper.decodeMsg(mapper.encodeMsg(originalMsg));
        }
        
        assertEquals(subclazz, msg.getClass());

        msg.checkValidity();

        testValidFields(subclazz.cast(msg));
    }

    /**
     * Creates a valid Message and verifies that checkValidity() passes.
     * 
     * @throws PoolingFeatureException if an error occurs
     */
    @Test
    public final void testCheckValidity_Ok() throws PoolingFeatureException {
        T msg = makeValidMessage();
        msg.checkValidity();

        testValidFields(subclazz.cast(msg));
    }

    /**
     * Creates a default Message and verifies that checkValidity() fails. Does
     * not throw an exception.
     */
    @Test
    public final void testCheckValidity_DefaultConstructor() {
        try {
            makeDefaultMessage().checkValidity();
            fail("missing exception");

        } catch (PoolingFeatureException expected) {
            // success
        }
    }

    /**
     * Creates a message via {@link #makeValidMessage()}, updates it via the
     * given function, and then invokes the checkValidity() method on it. It is
     * expected that the checkValidity() will throw an exception.
     * 
     * @param func function to update the message prior to invoking
     *        checkValidity()
     */
    public void expectCheckValidityFailure(MessageUpdateFunction<T> func) {
        try {
            T msg = makeValidMessage();
            func.update(msg);

            msg.checkValidity();

            fail("missing exception");

        } catch (PoolingFeatureException expected) {
            // success
        }
    }

    /**
     * Creates a message via {@link #makeValidMessage()}, updates one of its
     * fields via the given function, and then invokes the checkValidity()
     * method on it. It is expected that the checkValidity() will throw an
     * exception. It checks both the case when the message's field is set to
     * {@code null}, and when it is set to empty (i.e., "").
     * 
     * @param func function to update the message's field prior to invoking
     *        checkValidity()
     */
    public void expectCheckValidityFailure_NullOrEmpty(MessageFieldUpdateFunction<T> func) {
        expectCheckValidityFailure(msg -> func.update(msg, null));
        expectCheckValidityFailure(msg -> func.update(msg, ""));
    }

    /**
     * Makes a message using the default constructor.
     * 
     * @return a new Message
     */
    public final T makeDefaultMessage() {
        try {
            return subclazz.getConstructor().newInstance();

        } catch (Exception e) {
            throw new AssertionError(e);
        }
    }


    // the remaining methods will typically be overridden

    /**
     * Makes a message that will pass the validity check. Note: this should use
     * the non-default constructor, and the source and channel should be set to
     * VALID_HOST and VALID_CHANNEL, respectively.
     * 
     * @return a valid Message
     */
    public abstract T makeValidMessage();

    /**
     * Verifies that fields are set as expected by
     * {@link #makeDefaultMessage()}.
     * 
     * @param msg the default Message
     */
    public void testDefaultConstructorFields(T msg) {
        assertNull(msg.getSource());
        assertNull(msg.getChannel());
    }

    /**
     * Verifies that fields are set as expected by {@link #makeValidMessage()}.
     *
     * @param msg message whose fields are to be validated
     */
    public void testValidFields(T msg) {
        assertEquals(VALID_HOST, msg.getSource());
        assertEquals(VALID_CHANNEL, msg.getChannel());
    }

    /**
     * Function that updates a message.
     *
     * @param <T> type of Message the function updates
     */
    @FunctionalInterface
    public static interface MessageUpdateFunction<T extends Message> {

        /**
         * Updates a message.
         *
         * @param msg message to be updated
         */
        void update(T msg);
    }

    /**
     * Function that updates a single field within a message.
     *
     * @param <T> type of Message the function updates
     */
    @FunctionalInterface
    public static interface MessageFieldUpdateFunction<T extends Message> {

        /**
         * Updates a field within a message.
         *
         * @param msg message to be updated
         * @param newValue new field value
         */
        void update(T msg, String newValue);
    }
}