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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.dcaegen2.collectors.datafile.model;
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;
28 class ConsumerDmaapModelTest {
31 void consumerDmaapModelBuilder_shouldBuildAnObject() {
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()
45 Assertions.assertNotNull(consumerDmaapModel);
46 Assertions.assertEquals(pnfName, consumerDmaapModel.getPnfName());
47 Assertions.assertEquals(ipv4, consumerDmaapModel.getIpv4());
48 Assertions.assertEquals(ipv6, consumerDmaapModel.getIpv6());