blob: 9770b33d0475d45b0bc200c00112d9c1244628a7 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <unittest/unittest.h>
#include <fidl/tables_generator.h>
#include "test_library.h"
namespace {
bool CodedTypesOfArrays() {
BEGIN_TEST;
TestLibrary library(R"FIDL(
library example;
struct Arrays {
array<uint8>:7 prime;
array<array<uint8>:7>:11 next_prime;
array<array<array<uint8>:7>:11>:13 next_next_prime;
};
)FIDL");
ASSERT_TRUE(library.Compile());
fidl::CodedTypesGenerator gen(library.library());
gen.CompileCodedTypes();
ASSERT_EQ(4, gen.coded_types().size());
auto type0 = gen.coded_types().at(0).get();
ASSERT_STR_EQ("uint8", type0->coded_name.c_str());
ASSERT_EQ(fidl::coded::CodingNeeded::kNotNeeded, type0->coding_needed);
ASSERT_EQ(fidl::coded::Type::Kind::kPrimitive, type0->kind);
auto type0_primitive = static_cast<const fidl::coded::PrimitiveType*>(type0);
ASSERT_EQ(fidl::types::PrimitiveSubtype::kUint8, type0_primitive->subtype);
auto type1 = gen.coded_types().at(1).get();
ASSERT_STR_EQ("Arrayuint87", type1->coded_name.c_str());
ASSERT_EQ(fidl::coded::CodingNeeded::kNotNeeded, type1->coding_needed);
ASSERT_EQ(fidl::coded::Type::Kind::kArray, type1->kind);
auto type1_array = static_cast<const fidl::coded::ArrayType*>(type1);
ASSERT_EQ(1, type1_array->element_size);
ASSERT_EQ(type0, type1_array->element_type);
auto type2 = gen.coded_types().at(2).get();
ASSERT_STR_EQ("ArrayArrayuint8777", type2->coded_name.c_str());
ASSERT_EQ(fidl::coded::CodingNeeded::kNotNeeded, type2->coding_needed);
ASSERT_EQ(fidl::coded::Type::Kind::kArray, type2->kind);
auto type2_array = static_cast<const fidl::coded::ArrayType*>(type2);
ASSERT_EQ(7 * 1, type2_array->element_size);
ASSERT_EQ(type1, type2_array->element_type);
auto type3 = gen.coded_types().at(3).get();
ASSERT_STR_EQ("ArrayArrayArrayuint87771001", type3->coded_name.c_str());
ASSERT_EQ(fidl::coded::CodingNeeded::kNotNeeded, type3->coding_needed);
ASSERT_EQ(fidl::coded::Type::Kind::kArray, type3->kind);
auto type3_array = static_cast<const fidl::coded::ArrayType*>(type3);
ASSERT_EQ(11 * 7 * 1, type3_array->element_size);
ASSERT_EQ(type2, type3_array->element_type);
END_TEST;
}
bool CodedTypesOfVectors() {
BEGIN_TEST;
TestLibrary library(R"FIDL(
library example;
struct SomeStruct {};
struct Vectors {
vector<SomeStruct>:10 bytes1;
vector<vector<SomeStruct>:10>:20 bytes12;
};
)FIDL");
ASSERT_TRUE(library.Compile());
fidl::CodedTypesGenerator gen(library.library());
gen.CompileCodedTypes();
auto name_some_struct = fidl::flat::Name(library.library(), "SomeStruct");
auto type_some_struct = gen.CodedTypeFor(&name_some_struct);
ASSERT_NONNULL(type_some_struct);
ASSERT_STR_EQ("example_SomeStruct", type_some_struct->coded_name.c_str());
ASSERT_EQ(fidl::coded::CodingNeeded::kNeeded, type_some_struct->coding_needed);
ASSERT_EQ(fidl::coded::Type::Kind::kStruct, type_some_struct->kind);
auto type_some_struct_struct = static_cast<const fidl::coded::StructType*>(type_some_struct);
ASSERT_EQ(0, type_some_struct_struct->fields.size());
ASSERT_STR_EQ("example_SomeStructPointer", type_some_struct_struct->pointer_name.c_str());
ASSERT_STR_EQ("example/SomeStruct", type_some_struct_struct->qname.c_str());
ASSERT_FALSE(type_some_struct_struct->referenced_by_pointer);
ASSERT_EQ(2, gen.coded_types().size());
auto type0 = gen.coded_types().at(0).get();
ASSERT_STR_EQ("Vectorexample_SomeStruct10nonnullable", type0->coded_name.c_str());
ASSERT_EQ(fidl::coded::CodingNeeded::kNeeded, type0->coding_needed);
ASSERT_EQ(fidl::coded::Type::Kind::kVector, type0->kind);
auto type0_vector = static_cast<const fidl::coded::VectorType*>(type0);
ASSERT_EQ(type_some_struct, type0_vector->element_type);
ASSERT_EQ(10, type0_vector->max_count);
ASSERT_EQ(1, type0_vector->element_size);
ASSERT_EQ(fidl::types::Nullability::kNonnullable, type0_vector->nullability);
auto type1 = gen.coded_types().at(1).get();
ASSERT_STR_EQ("VectorVectorexample_SomeStruct10nonnullable20nonnullable", type1->coded_name.c_str());
ASSERT_EQ(fidl::coded::CodingNeeded::kNeeded, type1->coding_needed);
ASSERT_EQ(fidl::coded::Type::Kind::kVector, type1->kind);
auto type1_vector = static_cast<const fidl::coded::VectorType*>(type1);
ASSERT_EQ(type0, type1_vector->element_type);
ASSERT_EQ(20, type1_vector->max_count);
ASSERT_EQ(16, type1_vector->element_size);
ASSERT_EQ(fidl::types::Nullability::kNonnullable, type1_vector->nullability);
END_TEST;
}
bool CodedTypesOfInterface() {
BEGIN_TEST;
TestLibrary library(R"FIDL(
library example;
protocol SomeInterface {};
protocol UseOfInterface {
Call(SomeInterface arg);
};
)FIDL");
ASSERT_TRUE(library.Compile());
fidl::CodedTypesGenerator gen(library.library());
gen.CompileCodedTypes();
ASSERT_EQ(2, gen.coded_types().size());
auto type0 = gen.coded_types().at(0).get();
ASSERT_STR_EQ("example_SomeInterfaceInterfacenonnullable", type0->coded_name.c_str());
ASSERT_EQ(fidl::coded::CodingNeeded::kNeeded, type0->coding_needed);
ASSERT_EQ(fidl::coded::Type::Kind::kInterfaceHandle, type0->kind);
ASSERT_EQ(4, type0->size);
auto type0_ihandle = static_cast<const fidl::coded::InterfaceHandleType*>(type0);
ASSERT_EQ(fidl::types::Nullability::kNonnullable, type0_ihandle->nullability);
auto type1 = gen.coded_types().at(1).get();
ASSERT_STR_EQ("example_UseOfInterfaceCallRequest", type1->coded_name.c_str());
ASSERT_EQ(fidl::coded::CodingNeeded::kNeeded, type1->coding_needed);
ASSERT_EQ(fidl::coded::Type::Kind::kMessage, type1->kind);
ASSERT_EQ(24, type1->size);
auto type1_message = static_cast<const fidl::coded::MessageType*>(type1);
ASSERT_STR_EQ("example/UseOfInterfaceCallRequest", type1_message->qname.c_str());
ASSERT_EQ(1, type1_message->fields.size());
auto type1_message_field0 = type1_message->fields.at(0);
ASSERT_EQ(16, type1_message_field0.offset);
ASSERT_EQ(type0, type1_message_field0.type);
END_TEST;
}
bool CodedTypesOfRequestOfInterface() {
BEGIN_TEST;
TestLibrary library(R"FIDL(
library example;
protocol SomeInterface {};
protocol UseOfRequestOfInterface {
Call(request<SomeInterface> arg);
};
)FIDL");
ASSERT_TRUE(library.Compile());
fidl::CodedTypesGenerator gen(library.library());
gen.CompileCodedTypes();
ASSERT_EQ(2, gen.coded_types().size());
auto type0 = gen.coded_types().at(0).get();
ASSERT_STR_EQ("example_SomeInterfaceRequestnonnullable", type0->coded_name.c_str());
ASSERT_EQ(fidl::coded::CodingNeeded::kNeeded, type0->coding_needed);
ASSERT_EQ(fidl::coded::Type::Kind::kRequestHandle, type0->kind);
ASSERT_EQ(4, type0->size);
auto type0_ihandle = static_cast<const fidl::coded::RequestHandleType*>(type0);
ASSERT_EQ(fidl::types::Nullability::kNonnullable, type0_ihandle->nullability);
auto type1 = gen.coded_types().at(1).get();
ASSERT_STR_EQ("example_UseOfRequestOfInterfaceCallRequest", type1->coded_name.c_str());
ASSERT_EQ(fidl::coded::CodingNeeded::kNeeded, type1->coding_needed);
ASSERT_EQ(fidl::coded::Type::Kind::kMessage, type1->kind);
ASSERT_EQ(24, type1->size);
auto type1_message = static_cast<const fidl::coded::MessageType*>(type1);
ASSERT_STR_EQ("example/UseOfRequestOfInterfaceCallRequest", type1_message->qname.c_str());
ASSERT_EQ(1, type1_message->fields.size());
auto type1_message_field0 = type1_message->fields.at(0);
ASSERT_EQ(16, type1_message_field0.offset);
ASSERT_EQ(type0, type1_message_field0.type);
END_TEST;
}
} // namespace
BEGIN_TEST_CASE(coded_types_generator_tests);
RUN_TEST(CodedTypesOfArrays);
RUN_TEST(CodedTypesOfVectors);
RUN_TEST(CodedTypesOfInterface);
RUN_TEST(CodedTypesOfRequestOfInterface);
END_TEST_CASE(coded_types_generator_tests);