Migrate netconf-client-mdsal tests to JUnit5
[netconf.git] / plugins / netconf-client-mdsal / src / test / java / org / opendaylight / netconf / client / mdsal / NetconfNestedNotificationTest.java
index 47926db7ed2606ab47ac7746dd5caea304d895bc..75c1feba5e06703c8f7e85137e910087c578f4c4 100644 (file)
@@ -7,32 +7,27 @@
  */
 package org.opendaylight.netconf.client.mdsal;
 
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertNotNull;
 
-import java.io.IOException;
 import java.io.InputStream;
-import java.util.Collection;
-import java.util.Collections;
-import org.junit.Test;
+import java.util.Set;
+import org.junit.jupiter.api.Test;
 import org.opendaylight.mdsal.dom.api.DOMEvent;
 import org.opendaylight.mdsal.dom.api.DOMNotification;
-import org.opendaylight.netconf.api.NetconfMessage;
+import org.opendaylight.netconf.api.messages.NetconfMessage;
 import org.opendaylight.netconf.api.messages.NotificationMessage;
 import org.opendaylight.netconf.api.xml.XmlUtil;
+import org.opendaylight.netconf.client.mdsal.api.NetconfSessionPreferences;
 import org.opendaylight.netconf.client.mdsal.impl.NetconfMessageTransformer;
 import org.opendaylight.yangtools.yang.common.QName;
 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
 import org.opendaylight.yangtools.yang.data.api.schema.MountPointContext;
-import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
-import org.opendaylight.yangtools.yang.model.api.Module;
 import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier.Absolute;
 import org.opendaylight.yangtools.yang.test.util.YangParserTestUtils;
 import org.w3c.dom.Document;
-import org.xml.sax.SAXException;
 
-public class NetconfNestedNotificationTest extends AbstractBaseSchemasTest {
+class NetconfNestedNotificationTest extends AbstractBaseSchemasTest {
     private static final QName INTERFACES_QNAME = QName
             .create("org:opendaylight:notification:test:ns:yang:nested-notification", "2014-07-08", "interfaces");
     private static final QName INTERFACE_QNAME = QName.create(INTERFACES_QNAME, "interface");
@@ -40,12 +35,14 @@ public class NetconfNestedNotificationTest extends AbstractBaseSchemasTest {
             .create(INTERFACE_QNAME, "interface-enabled");
 
     @Test
-    public void testNestedNotificationToNotificationFunction() throws Exception {
-        final EffectiveModelContext schemaContext =
-                getNotificationSchemaContext(Collections.singleton("/schemas/nested-notification.yang"));
+    void testNestedNotificationToNotificationFunction() throws Exception {
+        final var context = YangParserTestUtils.parseYangResources(
+            NetconfNestedNotificationTest.class, "/schemas/nested-notification.yang");
+
         final NetconfMessage notificationMessage = prepareNotification("/nested-notification-payload.xml");
         NetconfMessageTransformer messageTransformer = new NetconfMessageTransformer(
-            MountPointContext.of(schemaContext), true, BASE_SCHEMAS.getBaseSchema());
+            MountPointContext.of(context), true,
+            BASE_SCHEMAS.baseSchemaForCapabilities(NetconfSessionPreferences.fromStrings(Set.of())));
         final DOMNotification domNotification = messageTransformer.toNotification(notificationMessage);
         final ContainerNode root = domNotification.getBody();
         assertNotNull(root);
@@ -57,14 +54,7 @@ public class NetconfNestedNotificationTest extends AbstractBaseSchemasTest {
                 domNotification.getType());
     }
 
-    private EffectiveModelContext getNotificationSchemaContext(final Collection<String> yangResources) {
-        final EffectiveModelContext context = YangParserTestUtils.parseYangResources(getClass(), yangResources);
-        final Collection<? extends Module> modules = context.getModules();
-        assertFalse(modules.isEmpty());
-        return context;
-    }
-
-    private NetconfMessage prepareNotification(final String notificationPayloadPath) throws IOException, SAXException {
+    private NetconfMessage prepareNotification(final String notificationPayloadPath) throws Exception {
         InputStream notifyPayloadStream = getClass().getResourceAsStream(notificationPayloadPath);
         assertNotNull(notifyPayloadStream);