aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-api/src/test/java/org/openecomp/core/validation/types/MessageContainerTest.java
blob: e71d9778a72b2a65e7d950273ce47fcf99d0ab2d (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
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * 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.openecomp.core.validation.types;

import static org.junit.jupiter.api.Assertions.*;

import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.openecomp.sdc.datatypes.error.ErrorLevel;

public class MessageContainerTest {

    final static MessageContainer container = new MessageContainer();
    final static String mess1 = "Message 1";
    final static String mess2 = "Message 2";
    final static String mess3 = "Third Message";
    final static String mess4 = "That's mess 4";

    @BeforeAll
    public static void setup() {
        container.getMessageBuilder()
                .setMessage(mess1)
                .setLevel(ErrorLevel.ERROR).create();
        container.getMessageBuilder()
                .setMessage(mess2)
                .setLevel(ErrorLevel.INFO).create();
        container.getMessageBuilder()
                .setMessage(mess3)
                .setLevel(ErrorLevel.INFO).create();
        container.getMessageBuilder()
                .setMessage(mess4)
                .setLevel(ErrorLevel.WARNING).create();
    }

    @Test
    public void getErrorMessageListTest() {
        assertEquals(4, container.getErrorMessageList().size());
        assertEquals(mess1, container.getErrorMessageList().get(0).getMessage());
        assertEquals(mess2, container.getErrorMessageList().get(1).getMessage());
        assertEquals(ErrorLevel.ERROR, container.getErrorMessageList().get(0).getLevel());
        assertEquals(ErrorLevel.INFO, container.getErrorMessageList().get(1).getLevel());
    }
    @Test
    public void getErrorMessageListByLevelTest() {
        assertEquals(1, container.getErrorMessageListByLevel(ErrorLevel.WARNING).size());
        assertEquals(2, container.getErrorMessageListByLevel(ErrorLevel.INFO).size());
        assertEquals(1, container.getErrorMessageListByLevel(ErrorLevel.ERROR).size());
        assertEquals(mess1, container.getErrorMessageListByLevel(ErrorLevel.ERROR).get(0).getMessage());
        assertEquals(ErrorLevel.ERROR, container.getErrorMessageListByLevel(ErrorLevel.ERROR).get(0).getLevel());
    }
}