[refactor] Unify all unit tests into one binary file (#8958)
1. solved the previous delayed unit test file size is too large (1.7G+) and the unit test link time is too long problem problems 2. Unify all unit tests into one file to significantly reduce unit test execution time to less than 3 mins 3. temporarily disable stream_load_test.cpp, metrics_action_test.cpp, load_channel_mgr_test.cpp because it will re-implement part of the code and affect other tests
This commit is contained in:
@ -30,119 +30,115 @@
|
||||
namespace doris::vectorized {
|
||||
using namespace ut_type;
|
||||
|
||||
TEST(function_geo_test, function_geo_st_point_test) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_point_test) {
|
||||
std::string func_name = "st_point";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::Float64, TypeIndex::Float64};
|
||||
|
||||
GeoPoint point;
|
||||
auto cur_res = point.from_coord(24.7, 56.7);
|
||||
ASSERT_TRUE(cur_res == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(cur_res == GEO_PARSE_OK);
|
||||
std::string buf;
|
||||
point.encode_to(&buf);
|
||||
|
||||
DataSet data_set = {
|
||||
{{(double) 24.7, (double) 56.7}, buf},
|
||||
{{Null(), (double) 5}, Null()},
|
||||
{{(double) 5, Null()}, Null()}};
|
||||
DataSet data_set = {{{(double)24.7, (double)56.7}, buf},
|
||||
{{Null(), (double)5}, Null()},
|
||||
{{(double)5, Null()}, Null()}};
|
||||
|
||||
check_function<DataTypeString, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_as_text) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_as_text) {
|
||||
std::string func_name = "st_astext";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::String};
|
||||
|
||||
GeoPoint point;
|
||||
auto cur_res = point.from_coord(24.7, 56.7);
|
||||
ASSERT_TRUE(cur_res == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(cur_res == GEO_PARSE_OK);
|
||||
std::string buf;
|
||||
point.encode_to(&buf);
|
||||
|
||||
DataSet data_set = {
|
||||
{{buf}, std::string("POINT (24.7 56.7)")},
|
||||
{{Null()}, Null()}};
|
||||
DataSet data_set = {{{buf}, std::string("POINT (24.7 56.7)")}, {{Null()}, Null()}};
|
||||
|
||||
check_function<DataTypeString, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_as_wkt) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_as_wkt) {
|
||||
std::string func_name = "st_aswkt";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::String};
|
||||
|
||||
GeoPoint point;
|
||||
auto cur_res = point.from_coord(24.7, 56.7);
|
||||
ASSERT_TRUE(cur_res == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(cur_res == GEO_PARSE_OK);
|
||||
std::string buf;
|
||||
point.encode_to(&buf);
|
||||
|
||||
DataSet data_set = {
|
||||
{{buf}, std::string("POINT (24.7 56.7)")},
|
||||
{{Null()}, Null()}};
|
||||
DataSet data_set = {{{buf}, std::string("POINT (24.7 56.7)")}, {{Null()}, Null()}};
|
||||
|
||||
check_function<DataTypeString, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_x) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_x) {
|
||||
std::string func_name = "st_x";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::String};
|
||||
|
||||
GeoPoint point;
|
||||
auto cur_res = point.from_coord(24.7, 56.7);
|
||||
ASSERT_TRUE(cur_res == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(cur_res == GEO_PARSE_OK);
|
||||
std::string buf;
|
||||
point.encode_to(&buf);
|
||||
|
||||
DataSet data_set = {
|
||||
{{buf}, (double) 24.7},
|
||||
{{Null()}, Null()}};
|
||||
DataSet data_set = {{{buf}, (double)24.7}, {{Null()}, Null()}};
|
||||
|
||||
check_function<DataTypeFloat64, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_y) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_y) {
|
||||
std::string func_name = "st_y";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::String};
|
||||
|
||||
GeoPoint point;
|
||||
auto cur_res = point.from_coord(24.7, 56.7);
|
||||
ASSERT_TRUE(cur_res == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(cur_res == GEO_PARSE_OK);
|
||||
std::string buf;
|
||||
point.encode_to(&buf);
|
||||
|
||||
DataSet data_set = {
|
||||
{{buf}, (double) 56.7},
|
||||
{{Null()}, Null()}};
|
||||
DataSet data_set = {{{buf}, (double)56.7}, {{Null()}, Null()}};
|
||||
|
||||
check_function<DataTypeFloat64, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_distance_sphere) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_distance_sphere) {
|
||||
std::string func_name = "st_distance_sphere";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::Float64, TypeIndex::Float64, TypeIndex::Float64, TypeIndex::Float64};
|
||||
InputTypeSet input_types = {TypeIndex::Float64, TypeIndex::Float64, TypeIndex::Float64,
|
||||
TypeIndex::Float64};
|
||||
|
||||
DataSet data_set = {
|
||||
{{(double) 116.35620117, (double) 39.939093, (double) 116.4274406433, (double) 39.9020987219}, (double) 7336.9135549995917},
|
||||
{{(double) 116.35620117, (double) 39.939093, (double) 116.4274406433, Null()}, Null()},
|
||||
{{(double) 116.35620117, (double) 39.939093, Null(), (double) 39.9020987219}, Null()},
|
||||
{{(double) 116.35620117, Null(), (double) 116.4274406433, (double) 39.9020987219}, Null()},
|
||||
{{Null(), (double) 39.939093, (double) 116.4274406433, (double) 39.9020987219}, Null()}};
|
||||
{{(double)116.35620117, (double)39.939093, (double)116.4274406433,
|
||||
(double)39.9020987219},
|
||||
(double)7336.9135549995917},
|
||||
{{(double)116.35620117, (double)39.939093, (double)116.4274406433, Null()}, Null()},
|
||||
{{(double)116.35620117, (double)39.939093, Null(), (double)39.9020987219}, Null()},
|
||||
{{(double)116.35620117, Null(), (double)116.4274406433, (double)39.9020987219},
|
||||
Null()},
|
||||
{{Null(), (double)39.939093, (double)116.4274406433, (double)39.9020987219},
|
||||
Null()}};
|
||||
|
||||
check_function<DataTypeFloat64, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_contains) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_contains) {
|
||||
std::string func_name = "st_contains";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::String, TypeIndex::String};
|
||||
@ -153,33 +149,31 @@ TEST(function_geo_test, function_geo_st_contains) {
|
||||
GeoParseStatus status;
|
||||
|
||||
std::string shape1 = std::string("POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))");
|
||||
std::unique_ptr<GeoShape> shape(
|
||||
GeoShape::from_wkt(shape1.data(), shape1.size(), &status));
|
||||
ASSERT_TRUE(status == GEO_PARSE_OK);
|
||||
ASSERT_TRUE(shape != nullptr);
|
||||
std::unique_ptr<GeoShape> shape(GeoShape::from_wkt(shape1.data(), shape1.size(), &status));
|
||||
EXPECT_TRUE(status == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(shape != nullptr);
|
||||
shape->encode_to(&buf1);
|
||||
|
||||
GeoPoint point1;
|
||||
status = point1.from_coord(5, 5);
|
||||
ASSERT_TRUE(status == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(status == GEO_PARSE_OK);
|
||||
point1.encode_to(&buf2);
|
||||
|
||||
GeoPoint point2;
|
||||
status = point2.from_coord(50, 50);
|
||||
ASSERT_TRUE(status == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(status == GEO_PARSE_OK);
|
||||
point2.encode_to(&buf3);
|
||||
|
||||
DataSet data_set = {
|
||||
{{buf1, buf2}, (uint8_t) 1},
|
||||
{{buf1, buf3}, (uint8_t) 0},
|
||||
{{buf1, Null()}, Null()},
|
||||
{{Null(), buf3}, Null()}};
|
||||
DataSet data_set = {{{buf1, buf2}, (uint8_t)1},
|
||||
{{buf1, buf3}, (uint8_t)0},
|
||||
{{buf1, Null()}, Null()},
|
||||
{{Null(), buf3}, Null()}};
|
||||
|
||||
check_function<DataTypeUInt8 , true>(func_name, input_types, data_set);
|
||||
check_function<DataTypeUInt8, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_circle) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_circle) {
|
||||
std::string func_name = "st_circle";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::Float64, TypeIndex::Float64, TypeIndex::Float64};
|
||||
@ -187,19 +181,18 @@ TEST(function_geo_test, function_geo_st_circle) {
|
||||
GeoCircle circle;
|
||||
std::string buf;
|
||||
auto value = circle.init(111, 64, 10000);
|
||||
ASSERT_TRUE(value == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(value == GEO_PARSE_OK);
|
||||
circle.encode_to(&buf);
|
||||
DataSet data_set = {
|
||||
{{(double) 111, (double) 64, (double) 10000}, buf},
|
||||
{{Null(), (double) 64, (double) 10000}, Null()},
|
||||
{{(double) 111, Null(), (double) 10000}, Null()},
|
||||
{{(double) 111, (double) 64, Null()}, Null()}};
|
||||
DataSet data_set = {{{(double)111, (double)64, (double)10000}, buf},
|
||||
{{Null(), (double)64, (double)10000}, Null()},
|
||||
{{(double)111, Null(), (double)10000}, Null()},
|
||||
{{(double)111, (double)64, Null()}, Null()}};
|
||||
|
||||
check_function<DataTypeString , true>(func_name, input_types, data_set);
|
||||
check_function<DataTypeString, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_geometryfromtext) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_geometryfromtext) {
|
||||
std::string func_name = "st_geometryfromtext";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::String};
|
||||
@ -208,18 +201,16 @@ TEST(function_geo_test, function_geo_st_geometryfromtext) {
|
||||
std::string buf;
|
||||
std::string input = "LINESTRING (1 1, 2 2)";
|
||||
std::unique_ptr<GeoShape> shape(GeoShape::from_wkt(input.data(), input.size(), &status));
|
||||
ASSERT_TRUE(shape != nullptr);
|
||||
ASSERT_TRUE(status == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(shape != nullptr);
|
||||
EXPECT_TRUE(status == GEO_PARSE_OK);
|
||||
shape->encode_to(&buf);
|
||||
DataSet data_set = {
|
||||
{{std::string("LINESTRING (1 1, 2 2)")}, buf},
|
||||
{{Null()}, Null()}};
|
||||
DataSet data_set = {{{std::string("LINESTRING (1 1, 2 2)")}, buf}, {{Null()}, Null()}};
|
||||
|
||||
check_function<DataTypeString , true>(func_name, input_types, data_set);
|
||||
check_function<DataTypeString, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_geomfromtext) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_geomfromtext) {
|
||||
std::string func_name = "st_geomfromtext";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::String};
|
||||
@ -228,18 +219,16 @@ TEST(function_geo_test, function_geo_st_geomfromtext) {
|
||||
std::string buf;
|
||||
std::string input = "LINESTRING (1 1, 2 2)";
|
||||
std::unique_ptr<GeoShape> shape(GeoShape::from_wkt(input.data(), input.size(), &status));
|
||||
ASSERT_TRUE(shape != nullptr);
|
||||
ASSERT_TRUE(status == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(shape != nullptr);
|
||||
EXPECT_TRUE(status == GEO_PARSE_OK);
|
||||
shape->encode_to(&buf);
|
||||
DataSet data_set = {
|
||||
{{std::string("LINESTRING (1 1, 2 2)")}, buf},
|
||||
{{Null()}, Null()}};
|
||||
DataSet data_set = {{{std::string("LINESTRING (1 1, 2 2)")}, buf}, {{Null()}, Null()}};
|
||||
|
||||
check_function<DataTypeString , true>(func_name, input_types, data_set);
|
||||
check_function<DataTypeString, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_linefromtext) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_linefromtext) {
|
||||
std::string func_name = "st_linefromtext";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::String};
|
||||
@ -248,18 +237,16 @@ TEST(function_geo_test, function_geo_st_linefromtext) {
|
||||
std::string buf;
|
||||
std::string input = "LINESTRING (1 1, 2 2)";
|
||||
std::unique_ptr<GeoShape> shape(GeoShape::from_wkt(input.data(), input.size(), &status));
|
||||
ASSERT_TRUE(shape != nullptr);
|
||||
ASSERT_TRUE(status == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(shape != nullptr);
|
||||
EXPECT_TRUE(status == GEO_PARSE_OK);
|
||||
shape->encode_to(&buf);
|
||||
DataSet data_set = {
|
||||
{{std::string("LINESTRING (1 1, 2 2)")}, buf},
|
||||
{{Null()}, Null()}};
|
||||
DataSet data_set = {{{std::string("LINESTRING (1 1, 2 2)")}, buf}, {{Null()}, Null()}};
|
||||
|
||||
check_function<DataTypeString , true>(func_name, input_types, data_set);
|
||||
check_function<DataTypeString, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_linestringfromtext) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_linestringfromtext) {
|
||||
std::string func_name = "st_linestringfromtext";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::String};
|
||||
@ -268,18 +255,16 @@ TEST(function_geo_test, function_geo_st_linestringfromtext) {
|
||||
std::string buf;
|
||||
std::string input = "LINESTRING (1 1, 2 2)";
|
||||
std::unique_ptr<GeoShape> shape(GeoShape::from_wkt(input.data(), input.size(), &status));
|
||||
ASSERT_TRUE(shape != nullptr);
|
||||
ASSERT_TRUE(status == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(shape != nullptr);
|
||||
EXPECT_TRUE(status == GEO_PARSE_OK);
|
||||
shape->encode_to(&buf);
|
||||
DataSet data_set = {
|
||||
{{std::string("LINESTRING (1 1, 2 2)")}, buf},
|
||||
{{Null()}, Null()}};
|
||||
DataSet data_set = {{{std::string("LINESTRING (1 1, 2 2)")}, buf}, {{Null()}, Null()}};
|
||||
|
||||
check_function<DataTypeString , true>(func_name, input_types, data_set);
|
||||
check_function<DataTypeString, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_polygon) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_polygon) {
|
||||
std::string func_name = "st_polygon";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::String};
|
||||
@ -288,18 +273,17 @@ TEST(function_geo_test, function_geo_st_polygon) {
|
||||
std::string buf;
|
||||
std::string input = "POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))";
|
||||
std::unique_ptr<GeoShape> shape(GeoShape::from_wkt(input.data(), input.size(), &status));
|
||||
ASSERT_TRUE(shape != nullptr);
|
||||
ASSERT_TRUE(status == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(shape != nullptr);
|
||||
EXPECT_TRUE(status == GEO_PARSE_OK);
|
||||
shape->encode_to(&buf);
|
||||
DataSet data_set = {
|
||||
{{std::string("POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))")}, buf},
|
||||
{{Null()}, Null()}};
|
||||
DataSet data_set = {{{std::string("POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))")}, buf},
|
||||
{{Null()}, Null()}};
|
||||
|
||||
check_function<DataTypeString , true>(func_name, input_types, data_set);
|
||||
check_function<DataTypeString, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_polygonfromtext) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_polygonfromtext) {
|
||||
std::string func_name = "st_polygonfromtext";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::String};
|
||||
@ -308,18 +292,17 @@ TEST(function_geo_test, function_geo_st_polygonfromtext) {
|
||||
std::string buf;
|
||||
std::string input = "POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))";
|
||||
std::unique_ptr<GeoShape> shape(GeoShape::from_wkt(input.data(), input.size(), &status));
|
||||
ASSERT_TRUE(shape != nullptr);
|
||||
ASSERT_TRUE(status == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(shape != nullptr);
|
||||
EXPECT_TRUE(status == GEO_PARSE_OK);
|
||||
shape->encode_to(&buf);
|
||||
DataSet data_set = {
|
||||
{{std::string("POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))")}, buf},
|
||||
{{Null()}, Null()}};
|
||||
DataSet data_set = {{{std::string("POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))")}, buf},
|
||||
{{Null()}, Null()}};
|
||||
|
||||
check_function<DataTypeString , true>(func_name, input_types, data_set);
|
||||
check_function<DataTypeString, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(function_geo_test, function_geo_st_polyfromtext) {
|
||||
TEST(VGeoFunctionsTest, function_geo_st_polyfromtext) {
|
||||
std::string func_name = "st_polyfromtext";
|
||||
{
|
||||
InputTypeSet input_types = {TypeIndex::String};
|
||||
@ -328,21 +311,14 @@ TEST(function_geo_test, function_geo_st_polyfromtext) {
|
||||
std::string buf;
|
||||
std::string input = "POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))";
|
||||
std::unique_ptr<GeoShape> shape(GeoShape::from_wkt(input.data(), input.size(), &status));
|
||||
ASSERT_TRUE(shape != nullptr);
|
||||
ASSERT_TRUE(status == GEO_PARSE_OK);
|
||||
EXPECT_TRUE(shape != nullptr);
|
||||
EXPECT_TRUE(status == GEO_PARSE_OK);
|
||||
shape->encode_to(&buf);
|
||||
DataSet data_set = {
|
||||
{{std::string("POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))")}, buf},
|
||||
{{Null()}, Null()}};
|
||||
DataSet data_set = {{{std::string("POLYGON ((0 0, 10 0, 10 10, 0 10, 0 0))")}, buf},
|
||||
{{Null()}, Null()}};
|
||||
|
||||
check_function<DataTypeString , true>(func_name, input_types, data_set);
|
||||
check_function<DataTypeString, true>(func_name, input_types, data_set);
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace doris::vectorized
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
doris::CpuInfo::init();
|
||||
::testing::InitGoogleTest(&argc, argv);
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user