Refactor AbstractDataBrokerTestCustomizer
[mdsal.git] / binding / mdsal-binding-dom-adapter / src / test / java / org / opendaylight / mdsal / binding / dom / adapter / test / AbstractBaseDataBrokerTest.java
1 /*
2  * Copyright (c) 2017 Red Hat, 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.mdsal.binding.dom.adapter.test;
9
10 import com.google.common.util.concurrent.ListenableFuture;
11 import java.util.concurrent.ExecutionException;
12 import java.util.concurrent.TimeUnit;
13 import java.util.concurrent.TimeoutException;
14 import org.opendaylight.mdsal.binding.api.DataBroker;
15 import org.opendaylight.mdsal.binding.runtime.api.BindingRuntimeContext;
16 import org.opendaylight.mdsal.dom.api.DOMDataBroker;
17
18 public abstract class AbstractBaseDataBrokerTest extends AbstractSchemaAwareTest {
19     private static final int ASSERT_COMMIT_DEFAULT_TIMEOUT = 5000;
20
21     private AbstractDataBrokerTestCustomizer testCustomizer;
22     private DataBroker dataBroker;
23     private DOMDataBroker domBroker;
24
25     protected abstract AbstractDataBrokerTestCustomizer createDataBrokerTestCustomizer();
26
27     public AbstractDataBrokerTestCustomizer getDataBrokerTestCustomizer() {
28         if (testCustomizer == null) {
29             throw new IllegalStateException("testCustomizer not yet set by call to createDataBrokerTestCustomizer()");
30         }
31         return testCustomizer;
32     }
33
34     @Override
35     protected void setupWithRuntimeContext(final BindingRuntimeContext runtimeContext) {
36         testCustomizer = createDataBrokerTestCustomizer();
37         dataBroker = testCustomizer.createDataBroker();
38         domBroker = testCustomizer.getDOMDataBroker();
39         testCustomizer.updateSchema(runtimeContext);
40         super.setupWithRuntimeContext(runtimeContext);
41     }
42
43     public DataBroker getDataBroker() {
44         return dataBroker;
45     }
46
47     public DOMDataBroker getDomBroker() {
48         return domBroker;
49     }
50
51     protected static final void assertCommit(final ListenableFuture<?> commit) {
52         assertCommit(commit, ASSERT_COMMIT_DEFAULT_TIMEOUT);
53     }
54
55     protected static final void assertCommit(final ListenableFuture<?> commit, final long timeoutInMS) {
56         try {
57             commit.get(timeoutInMS, TimeUnit.MILLISECONDS);
58         } catch (InterruptedException | ExecutionException | TimeoutException e) {
59             throw new IllegalStateException(e);
60         }
61     }
62 }