50eb434beb764752a81eccc3bedb5a8060415738
[dcaegen2/collectors/datafile.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * Datafile Collector Service
4  * ================================================================================
5  * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.dcaegen2.collectors.datafile.model;
22
23 import org.junit.jupiter.api.Assertions;
24 import org.junit.jupiter.api.Test;
25 import org.onap.dcaegen2.collectors.datafile.model.ConsumerDmaapModel;
26 import org.onap.dcaegen2.collectors.datafile.model.ImmutableConsumerDmaapModel;
27
28 class ConsumerDmaapModelTest {
29
30     @Test
31     void consumerDmaapModelBuilder_shouldBuildAnObject() {
32
33         // When
34         // Given
35         String pnfName = "NOKnhfsadhff";
36         String ipv4 = "11.22.33.155";
37         String ipv6 = "2001:0db8:85a3:0000:0000:8a2e:0370:7334";
38         ConsumerDmaapModel consumerDmaapModel = ImmutableConsumerDmaapModel.builder()
39             .pnfName(pnfName)
40             .ipv4(ipv4)
41             .ipv6(ipv6)
42             .build();
43
44         // Then
45         Assertions.assertNotNull(consumerDmaapModel);
46         Assertions.assertEquals(pnfName, consumerDmaapModel.getPnfName());
47         Assertions.assertEquals(ipv4, consumerDmaapModel.getIpv4());
48         Assertions.assertEquals(ipv6, consumerDmaapModel.getIpv6());
49     }
50 }