Bug 1254 - added test method for AbstractErrorTranslator#translate
[openflowplugin.git] / openflowplugin / src / test / java / org / opendaylight / openflowplugin / openflow / md / core / translator / ErrorTranslatorTest.java
index c6eb0296014b0b01d01b35c20d7d4d0b37122653..725bea39986f3b62422a777b2d5d55f08b88ffea 100644 (file)
@@ -1,64 +1,83 @@
 /**
  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
- * 
+ *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 package org.opendaylight.openflowplugin.openflow.md.core.translator;
 
-import java.lang.reflect.Method;
+import static org.junit.Assert.assertNotNull;
 
+import java.lang.reflect.Method;
+import java.util.List;
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
+import org.mockito.MockitoAnnotations;
+import org.opendaylight.openflowplugin.api.openflow.md.core.SwitchConnectionDistinguisher;
+import org.opendaylight.openflowplugin.openflow.md.core.session.SessionContext;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.errors.rev131116.ErrorMessage;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.errors.rev131116.ErrorType;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.transaction.rev131103.TransactionId;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.ErrorMessageBuilder;
+import org.opendaylight.yangtools.yang.binding.DataObject;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
 /**
- * 
+ *
  */
 public class ErrorTranslatorTest {
-    
-    private ErrorTranslator errorTranslator;
+
+    private final ErrorTranslator errorTranslator = new ErrorTranslator();
+    private final ErrorMessageBuilder builder = new ErrorMessageBuilder();;
     private static Logger LOG = LoggerFactory
             .getLogger(ErrorTranslatorTest.class);
-    
+
+    @MockitoAnnotations.Mock
+    SwitchConnectionDistinguisher cookie;
+    @MockitoAnnotations.Mock
+    SessionContext sc;
+
     /**
      * startup method
      */
     @Before
     public void setUp() {
-        errorTranslator = new ErrorTranslator();
+        builder.setCode(21);
+        builder.setXid(42L);
+        builder.setData(new byte[]{42});
+
+    }
+
+
+    @Test
+    public void testTranslate() {
+        builder.setType(1);
+        List<DataObject> data = errorTranslator.translate(cookie, sc, builder.build());
+        assertNotNull(data);
     }
 
     /**
      * Test method for {@link org.opendaylight.openflowplugin.openflow.md.core.translator.ErrorTranslator#getGranularNodeErrors(org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.ErrorMessage, org.opendaylight.yang.gen.v1.urn.opendaylight.flow.errors.rev131116.ErrorType)}.
-     * @throws Exception 
+     *
+     * @throws Exception
      */
     @Test
     public void testGetGranularNodeErrors() throws Exception {
         for (ErrorType eType : ErrorType.values()) {
-            ErrorMessageBuilder builder = new ErrorMessageBuilder();
             builder.setType(eType.getIntValue());
-            builder.setCode(21);
-            builder.setXid(42L);
-            builder.setData(new byte[]{42});
-
             ErrorMessage errorMessage = errorTranslator.getGranularNodeErrors(builder.build(), eType);
             LOG.debug("translating errorMessage of type {}", eType);
-            Assert.assertNotNull("translated error is null", errorMessage);
+            assertNotNull("translated error is null", errorMessage);
             Assert.assertEquals(21, errorMessage.getCode().intValue());
             Assert.assertEquals(eType, errorMessage.getType());
             Method getXid = errorMessage.getClass().getMethod("getTransactionId", new Class[0]);
             getXid.setAccessible(true);
             TransactionId xid = (TransactionId) getXid.invoke(errorMessage, new Object[0]);
             Assert.assertEquals(42L, xid.getValue().longValue());
-            Assert.assertNotNull("data is null", errorMessage.getData());
+            assertNotNull("data is null", errorMessage.getData());
         }
     }
 
@@ -72,4 +91,5 @@ public class ErrorTranslatorTest {
             Assert.assertEquals(eType, result);
         }
     }
+
 }