blob: c2645e2a6beff6939d452ea66adef1011565e951 [file] [log] [blame]
Marcel Hlopko42abfc82021-08-09 07:03:17 +00001// Part of the Crubit project, under the Apache License v2.0 with LLVM
2// Exceptions. See /LICENSE for license information.
3// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
5#include "rs_bindings_from_cc/ir.h"
6
Googler4dda73e2021-12-03 09:13:42 +00007#include <iomanip>
Marcel Hlopko80441c12021-11-12 10:43:18 +00008#include <string>
9
10#include "rs_bindings_from_cc/bazel_types.h"
Marcel Hlopko42abfc82021-08-09 07:03:17 +000011#include "testing/base/public/gunit.h"
Marcel Hlopko7aa38a72021-11-11 07:39:51 +000012#include "third_party/absl/hash/hash_testing.h"
Marcel Hlopko42abfc82021-08-09 07:03:17 +000013#include "third_party/json/src/json.hpp"
14
15namespace rs_bindings_from_cc {
16
17namespace {
18
Googler4dda73e2021-12-03 09:13:42 +000019MATCHER_P(EqualsJson, expected_json, "") {
20 if (arg == expected_json) {
21 return true;
22 }
23 *result_listener << "Diff:\n"
24 << std::setw(2) << nlohmann::json::diff(arg, expected_json);
25 return false;
26}
27
Googlerea1aff82021-09-16 08:40:21 +000028TEST(IrTest, TypeToJson) {
Devin Jeanpierre5c87a722021-09-16 10:35:58 +000029 nlohmann::json expected = nlohmann::json::parse(R"j({
Devin Jeanpierre09c6f452021-09-29 07:34:24 +000030 "rs_type": {
31 "name": "CompoundRs",
Googler64e4edb2021-12-03 12:17:38 +000032 "lifetime_args": [],
33 "type_args": [{"name": "i32", "lifetime_args": [], "type_args": []}]
Devin Jeanpierre09c6f452021-09-29 07:34:24 +000034 },
35 "cc_type": {
36 "name": "CompoundCc",
37 "is_const": false,
Googlerff7fc232021-12-02 09:43:00 +000038 "type_args": [
39 {"is_const": false, "name": "int", "type_args": []}
Devin Jeanpierre09c6f452021-09-29 07:34:24 +000040 ]
41 }
Devin Jeanpierre5c87a722021-09-16 10:35:58 +000042 })j");
Marcel Hlopko9c150da2021-11-12 10:30:03 +000043 auto type = MappedType{
Googlerff7fc232021-12-02 09:43:00 +000044 .rs_type = RsType{.name = "CompoundRs", .type_args = {RsType{"i32"}}},
Marcel Hlopko9c150da2021-11-12 10:30:03 +000045 .cc_type = CcType{.name = "CompoundCc",
46 .is_const = false,
Googlerff7fc232021-12-02 09:43:00 +000047 .type_args = {CcType{"int"}}}};
Googler4dda73e2021-12-03 09:13:42 +000048 EXPECT_THAT(type.ToJson(), EqualsJson(expected));
Marcel Hlopko9c150da2021-11-12 10:30:03 +000049}
50
51TEST(IrTest, TypeWithDeclIdToJson) {
52 nlohmann::json expected = nlohmann::json::parse(R"j({
Googler64e4edb2021-12-03 12:17:38 +000053 "rs_type": {"lifetime_args": [], "type_args": [], "decl_id": 42},
Marcel Hlopko9c150da2021-11-12 10:30:03 +000054 "cc_type": {
55 "is_const": false,
Googlerff7fc232021-12-02 09:43:00 +000056 "type_args": [],
Marcel Hlopko9c150da2021-11-12 10:30:03 +000057 "decl_id": 43
58 }
59 })j");
60 auto type = MappedType{.rs_type = {RsType{"Status", DeclId(42)}},
61 .cc_type = {CcType{"Result", DeclId(43)}}};
Googler4dda73e2021-12-03 09:13:42 +000062 EXPECT_THAT(type.ToJson(), EqualsJson(expected));
Marcel Hlopko42abfc82021-08-09 07:03:17 +000063}
64
Googlerea1aff82021-09-16 08:40:21 +000065TEST(IrTest, IR) {
Marcel Hlopko42abfc82021-08-09 07:03:17 +000066 nlohmann::json expected = nlohmann::json::parse(
67 R"j({
Marcel Hlopko80441c12021-11-12 10:43:18 +000068 "current_target": "//foo:bar",
Marcel Hlopkof1123c82021-08-19 11:38:52 +000069 "used_headers": [{ "name": "foo/bar.h" }],
Michael Forster7ef80732021-10-01 18:12:19 +000070 "items": [
Michael Forster7ef80732021-10-01 18:12:19 +000071 { "Record": {
72 "identifier": { "identifier": "SomeStruct" },
Marcel Hlopko264b9ad2021-12-02 21:06:44 +000073 "id": 42,
Marcel Hlopko80441c12021-11-12 10:43:18 +000074 "owning_target": "//foo:bar",
Michael Forster7ef80732021-10-01 18:12:19 +000075 "fields": [
76 {
77 "identifier": { "identifier": "public_int" },
78 "type": {
Googler64e4edb2021-12-03 12:17:38 +000079 "rs_type": { "name": "i32", "lifetime_args": [], "type_args": [] },
Michael Forster7ef80732021-10-01 18:12:19 +000080 "cc_type": {
81 "is_const": false,
82 "name": "int",
Googlerff7fc232021-12-02 09:43:00 +000083 "type_args": []
Michael Forster7ef80732021-10-01 18:12:19 +000084 }
85 },
86 "access": "Public",
87 "offset": 0
88 },
89 {
90 "identifier": { "identifier": "protected_int" },
91 "type": {
Googler64e4edb2021-12-03 12:17:38 +000092 "rs_type": { "name": "i32", "lifetime_args": [], "type_args": [] },
Michael Forster7ef80732021-10-01 18:12:19 +000093 "cc_type": {
94 "is_const": false,
95 "name": "int",
Googlerff7fc232021-12-02 09:43:00 +000096 "type_args": []
Michael Forster7ef80732021-10-01 18:12:19 +000097 }
98 },
99 "access": "Protected",
100 "offset": 32
101 },
102 {
103 "identifier": { "identifier": "private_int" },
104 "type": {
Googler64e4edb2021-12-03 12:17:38 +0000105 "rs_type": { "name": "i32", "lifetime_args": [], "type_args": [] },
Michael Forster7ef80732021-10-01 18:12:19 +0000106 "cc_type": {
107 "is_const": false,
108 "name": "int",
Googlerff7fc232021-12-02 09:43:00 +0000109 "type_args": []
Michael Forster7ef80732021-10-01 18:12:19 +0000110 }
111 },
112 "access": "Private",
113 "offset": 64
Devin Jeanpierre09c6f452021-09-29 07:34:24 +0000114 }
Michael Forster7ef80732021-10-01 18:12:19 +0000115 ],
Googler64e4edb2021-12-03 12:17:38 +0000116 "lifetime_params": [],
Michael Forster7ef80732021-10-01 18:12:19 +0000117 "size": 12,
118 "alignment": 4,
Devin Jeanpierre07931272021-10-05 11:40:13 +0000119 "copy_constructor": {
Devin Jeanpierre7b62e952021-12-08 21:43:30 +0000120 "definition": "NontrivialUserDefined",
Devin Jeanpierre07931272021-10-05 11:40:13 +0000121 "access": "Private"
122 },
123 "move_constructor": {
124 "definition": "Deleted",
125 "access": "Protected"
126 },
Devin Jeanpierree78b2fb2021-10-05 11:40:33 +0000127 "destructor": {
128 "definition": "Trivial",
129 "access": "Public"
130 },
Devin Jeanpierree6e16652021-12-22 15:54:46 +0000131 "is_trivial_abi": true,
132 "is_final": true
Michael Forster7ef80732021-10-01 18:12:19 +0000133 }}
Marcel Hlopkob4b28742021-09-15 12:45:20 +0000134 ]
Devin Jeanpierre09c6f452021-09-29 07:34:24 +0000135 })j");
Googler6a638572021-10-07 07:34:13 +0000136 IR ir = {.used_headers = {HeaderName("foo/bar.h")},
Marcel Hlopko80441c12021-11-12 10:43:18 +0000137 .current_target = Label(std::string("//foo:bar")),
Googler6a638572021-10-07 07:34:13 +0000138 .items = {Record{.identifier = Identifier("SomeStruct"),
Marcel Hlopko264b9ad2021-12-02 21:06:44 +0000139 .id = DeclId(42),
Marcel Hlopko80441c12021-11-12 10:43:18 +0000140 .owning_target = Label(std::string("//foo:bar")),
Googler6a638572021-10-07 07:34:13 +0000141 .fields =
142 {
143 Field{
144 .identifier = Identifier("public_int"),
145 .type =
146 MappedType::Simple("i32", "int"),
147 .access = kPublic,
148 .offset = 0},
149 Field{.identifier =
150 Identifier("protected_int"),
Marcel Hlopko80441c12021-11-12 10:43:18 +0000151 .type = MappedType::Simple("i32",
152 "int"),
Googler6a638572021-10-07 07:34:13 +0000153 .access = kProtected,
154 .offset = 32},
155 Field{
156 .identifier = Identifier("private_int"),
157 .type = MappedType::Simple("i32",
158 "int"),
159 .access = kPrivate,
160 .offset = 64},
161 },
162 .size = 12,
163 .alignment = 4,
164 .copy_constructor =
165 SpecialMemberFunc{
166 .definition = SpecialMemberFunc::
Devin Jeanpierre7b62e952021-12-08 21:43:30 +0000167 Definition::kNontrivialUserDefined,
Googler6a638572021-10-07 07:34:13 +0000168 .access = kPrivate},
169 .move_constructor =
170 SpecialMemberFunc{
171 .definition =
172 SpecialMemberFunc::Definition::kDeleted,
173 .access = kProtected},
174 .destructor =
175 SpecialMemberFunc{
176 .definition =
177 SpecialMemberFunc::Definition::kTrivial,
178 .access = kPublic},
Devin Jeanpierree6e16652021-12-22 15:54:46 +0000179 .is_trivial_abi = true,
180 .is_final = true}}};
Googler4dda73e2021-12-03 09:13:42 +0000181 EXPECT_THAT(ir.ToJson(), EqualsJson(expected));
Marcel Hlopko42abfc82021-08-09 07:03:17 +0000182}
183
Marcel Hlopko7aa38a72021-11-11 07:39:51 +0000184TEST(HeaderName, Hash) {
185 EXPECT_TRUE(absl::VerifyTypeImplementsAbslHashCorrectly({
186 HeaderName("foo.h"),
187 HeaderName("bar.h"),
188 }));
189}
190
Marcel Hlopko42abfc82021-08-09 07:03:17 +0000191} // namespace
192} // namespace rs_bindings_from_cc