Move BindingReflections.isNotificationCallback()
[mdsal.git] / binding / mdsal-binding-spec-util / src / test / java / org / opendaylight / mdsal / binding / spec / reflect / BindingReflectionsTest.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, 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.spec.reflect;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertFalse;
12 import static org.junit.Assert.assertTrue;
13
14 import com.google.common.util.concurrent.ListenableFuture;
15 import java.util.List;
16 import org.junit.Test;
17 import org.opendaylight.yangtools.yang.binding.Augmentation;
18 import org.opendaylight.yangtools.yang.binding.BaseIdentity;
19 import org.opendaylight.yangtools.yang.binding.DataObject;
20 import org.opendaylight.yangtools.yang.binding.RpcService;
21 import org.opendaylight.yangtools.yang.common.QName;
22
23 public class BindingReflectionsTest {
24
25     @Test
26     public void testBindingWithDummyObject() throws Exception {
27         assertFalse("Should not be RpcType", BindingReflections.isRpcType(DataObject.class));
28         assertTrue("Should be BindingClass", BindingReflections.isBindingClass(DataObject.class));
29
30         assertEquals(QName.create("test", "test"), BindingReflections.getQName(TestIdentity.VALUE));
31     }
32
33     interface TestIdentity extends BaseIdentity {
34         QName QNAME = QName.create("test", "test");
35         TestIdentity VALUE = () -> TestIdentity.class;
36
37         @Override
38         Class<? extends TestIdentity> implementedInterface();
39     }
40
41     static final class TestImplementation implements Augmentation<TestImplementation>, RpcService {
42         public static final QName QNAME = QName.create("test", "test");
43
44         @SuppressWarnings("static-method")
45         ListenableFuture<List<Object>> rpcMethodTest() {
46             return null;
47         }
48
49         @Override
50         public Class<TestImplementation> implementedInterface() {
51             return TestImplementation.class;
52         }
53     }
54 }