T-API notification JUnit test
[transportpce.git] / nbinotifications / src / test / java / org / opendaylight / transportpce / nbinotifications / serialization / NotificationTapiServiceDeserializerTest.java
1 /*
2  * Copyright © 2021 Nokia, Inc. and others.  All rights reserved.
3  *
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
7  */
8 package org.opendaylight.transportpce.nbinotifications.serialization;
9
10 import static org.junit.Assert.assertEquals;
11
12 import java.io.IOException;
13 import java.nio.file.Files;
14 import java.nio.file.Paths;
15 import java.util.Map;
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.rev211013.NotificationTapiService;
20 import org.opendaylight.yang.gen.v1.urn.onf.otcc.yang.tapi.notification.rev181210.get.notification.list.output.Notification;
21
22 public class NotificationTapiServiceDeserializerTest extends AbstractTest {
23
24     @Test
25     public void deserializeTest() throws IOException {
26         JsonStringConverter<NotificationTapiService> converter = new JsonStringConverter<>(
27                 getDataStoreContextUtil().getBindingDOMCodecServices());
28         TapiNotificationDeserializer deserializer = new TapiNotificationDeserializer();
29         Map<String, Object> configs = Map.of(ConfigConstants.CONVERTER, converter);
30         deserializer.configure(configs, false);
31         Notification readEvent = deserializer.deserialize("76d8f07b-ead5-4132-8eb8-cf3fdef7e079",
32                 Files.readAllBytes(Paths.get("src/test/resources/tapi_event.json")));
33         deserializer.close();
34         assertEquals("Service uuid should be 76d8f07b-ead5-4132-8eb8-cf3fdef7e079",
35             "76d8f07b-ead5-4132-8eb8-cf3fdef7e079", readEvent.getTargetObjectIdentifier().getValue());
36     }
37 }