aboutsummaryrefslogtreecommitdiffstats
path: root/hv-collector-core/src/test/kotlin/org/onap/dcae/collectors/veshv/impl/MessageValidatorTest.kt
blob: eb8971c3e60a7e4955277473f855dcb83c3c9ddc (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
/*
 * ============LICENSE_START=======================================================
 * dcaegen2-collectors-veshv
 * ================================================================================
 * Copyright (C) 2018 NOKIA
 * ================================================================================
 * 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.dcae.collectors.veshv.impl

import com.google.protobuf.ByteString
import org.assertj.core.api.Assertions.assertThat
import org.jetbrains.spek.api.Spek
import org.jetbrains.spek.api.dsl.given
import org.jetbrains.spek.api.dsl.it
import org.jetbrains.spek.api.dsl.on
import org.onap.dcae.collectors.veshv.domain.ByteData
import org.onap.dcae.collectors.veshv.domain.toByteData
import org.onap.dcae.collectors.veshv.model.VesMessage
import org.onap.ves.VesEventV5.VesEvent
import org.onap.ves.VesEventV5.VesEvent.CommonEventHeader
import org.onap.ves.VesEventV5.VesEvent.CommonEventHeader.Domain
import org.onap.ves.VesEventV5.VesEvent.CommonEventHeader.Priority
import org.onap.ves.VesEventV5.VesEvent.CommonEventHeader.getDefaultInstance
import org.onap.ves.VesEventV5.VesEvent.CommonEventHeader.newBuilder

internal object MessageValidatorTest : Spek({

    fun vesMessageBytes(commonHeader: CommonEventHeader): ByteData {
        val msg = VesEvent.newBuilder()
                .setCommonEventHeader(commonHeader)
                .setHvRanMeasFields(ByteString.copyFromUtf8("high volume data"))
                .build()
        return msg.toByteData()
    }

    given("Message validator") {
        val cut = MessageValidator

        on("ves hv message including header with fully initialized fields") {
            val commonHeader = createInitializedHeaderBuilder().build()

            it("should accept message with fully initialized message header") {
                val vesMessage = VesMessage(commonHeader, vesMessageBytes(commonHeader))
                assertThat(cut.isValid(vesMessage)).describedAs("message validation result").isTrue()
            }

            Domain.values()
                    .filter { (it != Domain.UNRECOGNIZED && it != Domain.DOMAIN_UNDEFINED) }
                    .forEach { domain ->
                        it("should accept message with $domain domain") {
                            val header = newBuilder(commonHeader).setDomain(domain).build()
                            val vesMessage = VesMessage(header, vesMessageBytes(header))
                            assertThat(cut.isValid(vesMessage))
                                    .isTrue()
                        }
                    }
        }

        on("ves hv message bytes") {
            val vesMessage = VesMessage(getDefaultInstance(), ByteData.EMPTY)
            it("should not accept message with default header") {
                assertThat(cut.isValid(vesMessage)).describedAs("message validation result").isFalse()
            }
        }


        val domainTestCases = mapOf(
                Domain.DOMAIN_UNDEFINED to false,
                Domain.FAULT to true
        )

        domainTestCases.forEach { value, expectedResult ->
            on("ves hv message including header with domain $value") {
                val commonEventHeader = createInitializedHeaderBuilder()
                        .setDomain(value)
                        .build()
                val vesMessage = VesMessage(commonEventHeader, vesMessageBytes(commonEventHeader))

                it("should resolve validation result") {
                    assertThat(cut.isValid(vesMessage)).describedAs("message validation results")
                            .isEqualTo(expectedResult)
                }
            }
        }

        val priorityTestCases = mapOf(
                Priority.PRIORITY_UNDEFINED to false,
                Priority.HIGH to true
        )

        priorityTestCases.forEach { value, expectedResult ->
            on("ves hv message including header with priority $value") {
                val commonEventHeader = createInitializedHeaderBuilder()
                        .setPriority(value)
                        .build()
                val vesMessage = VesMessage(commonEventHeader, vesMessageBytes(commonEventHeader))

                it("should resolve validation result") {
                    assertThat(cut.isValid(vesMessage)).describedAs("message validation results")
                            .isEqualTo(expectedResult)
                }
            }
        }


        on("ves hv message including header with not initialized fields") {
            val commonHeader = newBuilder()
                    .setVersion("1.9")
                    .setEventName("Sample event name")
                    .setEventId("Sample event Id")
                    .setSourceName("Sample Source")
                    .build()
            val msg = VesEvent.newBuilder()
                    .setCommonEventHeader(commonHeader)
                    .setHvRanMeasFields(ByteString.copyFromUtf8("high volume data !!!"))
                    .build()
            val rawMessageBytes = msg.toByteData()

            it("should not accept not fully initialized message header ") {
                val vesMessage = VesMessage(commonHeader, rawMessageBytes)
                assertThat(cut.isValid(vesMessage)).describedAs("message validation result").isFalse()
            }
        }
    }
})

private fun createInitializedHeaderBuilder(): CommonEventHeader.Builder =
        newBuilder()
                .setVersion("1.9")
                .setEventName("Sample event name")
                .setDomain(Domain.HVRANMEAS)
                .setEventId("Sample event Id")
                .setSourceName("Sample Source")
                .setReportingEntityName(ByteString.copyFromUtf8("Sample byte String"))
                .setPriority(Priority.MEDIUM)
                .setStartEpochMicrosec(120034455)
                .setLastEpochMicrosec(120034459)
                .setSequence(2)