Move BindingReflections.findAugmentationTarget()
[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         assertEquals("ModuleInfoClassName should be equal to string", "test.$YangModuleInfoImpl",
28                 BindingReflections.getModuleInfoClassName("test"));
29         assertFalse("Should not be RpcType", BindingReflections.isRpcType(DataObject.class));
30         assertTrue("Should be BindingClass", BindingReflections.isBindingClass(DataObject.class));
31         assertFalse("Should not be Notification", BindingReflections.isNotification(DataObject.class));
32
33         assertTrue(BindingReflections.isRpcMethod(TestImplementation.class.getDeclaredMethod("rpcMethodTest")));
34
35         assertEquals(QName.create("test", "test"), BindingReflections.getQName(TestIdentity.VALUE));
36     }
37
38     interface TestIdentity extends BaseIdentity {
39         QName QNAME = QName.create("test", "test");
40         TestIdentity VALUE = () -> TestIdentity.class;
41
42         @Override
43         Class<? extends TestIdentity> implementedInterface();
44     }
45
46     static final class TestImplementation implements Augmentation<TestImplementation>, RpcService {
47         public static final QName QNAME = QName.create("test", "test");
48
49         @SuppressWarnings("static-method")
50         ListenableFuture<List<Object>> rpcMethodTest() {
51             return null;
52         }
53
54         @Override
55         public Class<TestImplementation> implementedInterface() {
56             return TestImplementation.class;
57         }
58     }
59 }