BUG 2412 - Remove CompositeNode from sal-dom-*
[controller.git] / opendaylight / md-sal / sal-binding-dom-it / src / test / java / org / opendaylight / controller / sal / binding / test / bugfix / DOMCodecBug02Test.java
diff --git a/opendaylight/md-sal/sal-binding-dom-it/src/test/java/org/opendaylight/controller/sal/binding/test/bugfix/DOMCodecBug02Test.java b/opendaylight/md-sal/sal-binding-dom-it/src/test/java/org/opendaylight/controller/sal/binding/test/bugfix/DOMCodecBug02Test.java
deleted file mode 100644 (file)
index d5ddc9f..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- * Copyright (c) 2014 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.controller.sal.binding.test.bugfix;
-
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNotNull;
-
-import com.google.common.util.concurrent.ListeningExecutorService;
-import com.google.common.util.concurrent.MoreExecutors;
-import java.util.Collections;
-import java.util.concurrent.Callable;
-import java.util.concurrent.ExecutorService;
-import java.util.concurrent.Executors;
-import java.util.concurrent.Future;
-import org.junit.Test;
-import org.opendaylight.controller.md.sal.common.api.TransactionStatus;
-import org.opendaylight.controller.sal.binding.api.data.DataModificationTransaction;
-import org.opendaylight.controller.sal.binding.test.AbstractDataServiceTest;
-import org.opendaylight.controller.sal.binding.test.util.BindingBrokerTestFactory;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.list.rev140701.Top;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.list.rev140701.TopBuilder;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.list.rev140701.two.level.list.TopLevelList;
-import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
-import org.opendaylight.yangtools.yang.common.RpcResult;
-
-@SuppressWarnings("deprecation")
-public class DOMCodecBug02Test extends AbstractDataServiceTest {
-
-    private static final InstanceIdentifier<Top> TOP_INSTANCE_ID_BA = InstanceIdentifier.builder(Top.class) //
-            .toInstance();
-
-    /**
-     * This test is ignored, till found out better way to test generation of
-     * classes without leaking of instances from previous run
-     *
-     * @throws Exception
-     */
-
-    @Override
-    public void setUp() {
-        ListeningExecutorService executor = MoreExecutors.sameThreadExecutor();
-        BindingBrokerTestFactory factory = new BindingBrokerTestFactory();
-        factory.setExecutor(executor);
-        factory.setStartWithParsedSchema(getStartWithSchema());
-        testContext = factory.getTestContext();
-        testContext.start();
-
-        baDataService = testContext.getBindingDataBroker();
-        biDataService = testContext.getDomDataBroker();
-    };
-
-    @Test
-    public void testSchemaContextNotAvailable() throws Exception {
-
-        ExecutorService testExecutor = Executors.newFixedThreadPool(1);
-        testContext.loadYangSchemaFromClasspath();
-        Future<Future<RpcResult<TransactionStatus>>> future = testExecutor
-                .submit(new Callable<Future<RpcResult<TransactionStatus>>>() {
-                    @Override
-                    public Future<RpcResult<TransactionStatus>> call() throws Exception {
-                        TopBuilder topBuilder = new TopBuilder();
-                        topBuilder.setTopLevelList(Collections.<TopLevelList> emptyList());
-                        DataModificationTransaction transaction = baDataService.beginTransaction();
-                        transaction.putOperationalData(TOP_INSTANCE_ID_BA, topBuilder.build());
-                        return transaction.commit();
-                    }
-                });
-
-        RpcResult<TransactionStatus> result = future.get().get();
-        assertEquals(TransactionStatus.COMMITED, result.getResult());
-
-        Top top = checkForTop();
-        assertNotNull(top);
-
-    }
-
-    private Top checkForTop() {
-        return (Top) baDataService.readOperationalData(TOP_INSTANCE_ID_BA);
-
-    }
-
-    @Override
-    protected boolean getStartWithSchema() {
-        return false;
-    }
-
-}