• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2019 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 // This is a compilation test only, to see that types are generated as
18 // expected.
19 
20 #include <hidl2aidl/test/BnBar.h>
21 #include <hidl2aidl/test/BnFoo.h>
22 #include <hidl2aidl/test/BpBar.h>
23 #include <hidl2aidl/test/BpFoo.h>
24 #include <hidl2aidl/test/IBar.h>
25 #include <hidl2aidl/test/IBarInner.h>
26 #include <hidl2aidl/test/IFoo.h>
27 #include <hidl2aidl/test/IFooBigStruct.h>
28 #include <hidl2aidl/test/NameCollision.h>
29 #include <hidl2aidl/test/OnlyIn10.h>
30 #include <hidl2aidl/test/OnlyIn11.h>
31 #include <hidl2aidl/test/Outer.h>
32 #include <hidl2aidl/test/OuterInner.h>
33 #include <hidl2aidl/test/OverrideMe.h>
34 #include <hidl2aidl/test/Value.h>
35 #include <hidl2aidl/test2/BnFoo.h>
36 #include <hidl2aidl/test2/BpFoo.h>
37 #include <hidl2aidl/test2/IFoo.h>
38 
39 using android::sp;
40 using android::String16;
41 using android::binder::Status;
42 
testIFoo(const sp<hidl2aidl::test::IFoo> & foo)43 void testIFoo(const sp<hidl2aidl::test::IFoo>& foo) {
44     Status status1 = foo->someBar(String16(), String16());
45     (void)status1;
46     String16 f;
47     Status status2 = foo->oneOutput(&f);
48     (void)status2;
49     hidl2aidl::test::IFooBigStruct big_struct;
50     big_struct.type = 2;
51     big_struct.value = 3;
52     // Test some of the types here as well
53     hidl2aidl::test::Outer outer;
54     outer.inner.a = 1;
55     outer.a = 2;
56     hidl2aidl::test::OverrideMe override;
57     override.a = String16();
58     hidl2aidl::test::NameCollision collision;
59     collision.a = 1;
60     collision.b = String16();
61     collision.c = String16();
62 }
63 
testIBar(const sp<hidl2aidl::test::IBar> & bar)64 void testIBar(const sp<hidl2aidl::test::IBar>& bar) {
65     String16 out;
66     Status status1 = bar->someBar(String16(), 3, &out);
67     (void)status1;
68     hidl2aidl::test::IBarInner inner;
69     inner.a = 3;
70     Status status2 = bar->extraMethod(inner);
71     (void)status2;
72 }
73 
74 static_assert(static_cast<int>(hidl2aidl::test::Value::A) == 3);
75 static_assert(static_cast<int>(hidl2aidl::test::Value::B) == 7);
76 static_assert(static_cast<int>(hidl2aidl::test::Value::C) == 8);
77 static_assert(static_cast<int>(hidl2aidl::test::Value::D) == 9);
78 static_assert(static_cast<int>(hidl2aidl::test::Value::E) == 27);
79 static_assert(static_cast<int>(hidl2aidl::test::Value::F) == 28);
80 
testIFoo2(const sp<hidl2aidl::test2::IFoo> & foo)81 void testIFoo2(const sp<hidl2aidl::test2::IFoo>& foo) {
82     Status status = foo->someFoo(3);
83     (void)status;
84 }
85