2 * Copyright © 2021 Orange, Inc. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
8 package org.opendaylight.transportpce.nbinotifications.serialization;
10 import static org.junit.Assert.assertEquals;
12 import java.io.IOException;
13 import java.nio.file.Files;
14 import java.nio.file.Paths;
16 import org.junit.Test;
17 import org.opendaylight.transportpce.common.converter.JsonStringConverter;
18 import org.opendaylight.transportpce.test.AbstractTest;
19 import org.opendaylight.yang.gen.v1.nbi.notifications.rev210628.get.notifications.service.output.NotificationService;
21 public class NotificationServiceDeserializerTest extends AbstractTest {
24 public void deserializeTest() throws IOException {
25 JsonStringConverter<org.opendaylight.yang.gen.v1.nbi.notifications.rev210628.NotificationService> converter =
26 new JsonStringConverter<>(getDataStoreContextUtil().getBindingDOMCodecServices());
27 NotificationServiceDeserializer deserializer = new NotificationServiceDeserializer();
28 Map<String, Object> configs = Map.of(ConfigConstants.CONVERTER, converter);
29 deserializer.configure(configs, false);
30 NotificationService readEvent = deserializer.deserialize("Test",
31 Files.readAllBytes(Paths.get("src/test/resources/event.json")));
33 assertEquals("Service name should be service1", "service1", readEvent.getServiceName());