225 lines
10 KiB
C++
225 lines
10 KiB
C++
/**
|
|
* Copyright (c) 2021 OceanBase
|
|
* OceanBase CE is licensed under Mulan PubL v2.
|
|
* You can use this software according to the terms and conditions of the Mulan PubL v2.
|
|
* You may obtain a copy of Mulan PubL v2 at:
|
|
* http://license.coscl.org.cn/MulanPubL-2.0
|
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
* See the Mulan PubL v2 for more details.
|
|
*/
|
|
|
|
#include "sql/engine/expr/ob_expr_is.h"
|
|
#include "ob_expr_test_utils.h"
|
|
#include <gtest/gtest.h>
|
|
using namespace oceanbase::common;
|
|
using namespace oceanbase::sql;
|
|
|
|
class ObExprIsTest: public ::testing::Test
|
|
{
|
|
public:
|
|
ObExprIsTest();
|
|
virtual ~ObExprIsTest();
|
|
virtual void SetUp();
|
|
virtual void TearDown();
|
|
private:
|
|
// disallow copy
|
|
ObExprIsTest(const ObExprIsTest &other);
|
|
ObExprIsTest& operator=(const ObExprIsTest &other);
|
|
protected:
|
|
// data members
|
|
};
|
|
|
|
ObExprIsTest::ObExprIsTest()
|
|
{
|
|
}
|
|
|
|
ObExprIsTest::~ObExprIsTest()
|
|
{
|
|
}
|
|
|
|
void ObExprIsTest::SetUp()
|
|
{
|
|
}
|
|
|
|
void ObExprIsTest::TearDown()
|
|
{
|
|
}
|
|
|
|
#define COMPARE_EXPECT_(cmp_op, ctx, func, type1, v1, type2, v2, res) \
|
|
{ \
|
|
ObObj t1; \
|
|
ObObj t2; \
|
|
ObObj t3; \
|
|
t3.set_bool(false); \
|
|
ObObj vres; \
|
|
ObArenaAllocator alloc;\
|
|
cmp_op op(alloc); \
|
|
t1.set_##type1(v1); \
|
|
t2.set_##type2(v2); \
|
|
int err = op.func(vres, t1, t2, t3, ctx); \
|
|
if (res == MY_ERROR) \
|
|
{ \
|
|
ASSERT_NE(OB_SUCCESS, err); \
|
|
} \
|
|
else \
|
|
{ \
|
|
ASSERT_EQ(OB_SUCCESS, err); \
|
|
switch(res) \
|
|
{ \
|
|
case MY_TRUE: \
|
|
ASSERT_TRUE(vres.is_true()); \
|
|
break; \
|
|
case MY_FALSE: \
|
|
ASSERT_TRUE(vres.is_false()); \
|
|
break; \
|
|
default: \
|
|
ASSERT_TRUE(vres.is_null()); \
|
|
break; \
|
|
} \
|
|
}\
|
|
} while(0)
|
|
|
|
#define COMPARE_EXPECT_NULL1(cmp_op, ctx, func, type1, type2, v2, res) \
|
|
{ \
|
|
ObObj t1; \
|
|
ObObj t2; \
|
|
ObObj t3; \
|
|
t3.set_bool(false); \
|
|
ObObj vres; \
|
|
ObArenaAllocator alloc;\
|
|
cmp_op op(alloc); \
|
|
t1.set_##type1(); \
|
|
t2.set_##type2(v2); \
|
|
int err = op.func(vres, t1, t2, t3, ctx); \
|
|
if (res == MY_ERROR) \
|
|
{ \
|
|
ASSERT_NE(OB_SUCCESS, err); \
|
|
} \
|
|
else \
|
|
{ \
|
|
ASSERT_EQ(OB_SUCCESS, err); \
|
|
switch(res) \
|
|
{ \
|
|
case MY_TRUE: \
|
|
ASSERT_TRUE(vres.is_true()); \
|
|
break; \
|
|
case MY_FALSE: \
|
|
ASSERT_TRUE(vres.is_false()); \
|
|
break; \
|
|
default: \
|
|
ASSERT_TRUE(vres.is_null()); \
|
|
break; \
|
|
} \
|
|
}\
|
|
} while(0)
|
|
|
|
#define COMPARE_EXPECT_NULL2(cmp_op, ctx, func, type1, v1, type2, res) \
|
|
{ \
|
|
ObObj t1; \
|
|
ObObj t2; \
|
|
ObObj t3; \
|
|
t3.set_bool(false); \
|
|
ObObj vres; \
|
|
ObArenaAllocator alloc;\
|
|
cmp_op op(alloc); \
|
|
t1.set_##type1(v1); \
|
|
t2.set_##type2(); \
|
|
int err = op.func(vres, t1, t2, t3, ctx); \
|
|
if (res == MY_ERROR) \
|
|
{ \
|
|
ASSERT_NE(OB_SUCCESS, err); \
|
|
} \
|
|
else \
|
|
{ \
|
|
ASSERT_EQ(OB_SUCCESS, err); \
|
|
switch(res) \
|
|
{ \
|
|
case MY_TRUE: \
|
|
ASSERT_TRUE(vres.is_true()); \
|
|
break; \
|
|
case MY_FALSE: \
|
|
ASSERT_TRUE(vres.is_false()); \
|
|
break; \
|
|
default: \
|
|
ASSERT_TRUE(vres.is_null()); \
|
|
break; \
|
|
} \
|
|
}\
|
|
} while(0)
|
|
|
|
#define COMPARE_EXPECT_NULL1_NULL2(cmp_op, ctx, func, type1, type2, res) \
|
|
{ \
|
|
ObObj t1; \
|
|
ObObj t2; \
|
|
ObObj t3; \
|
|
t3.set_bool(false); \
|
|
ObObj vres; \
|
|
ObArenaAllocator alloc;\
|
|
cmp_op op(alloc); \
|
|
t1.set_##type1(); \
|
|
t2.set_##type2(); \
|
|
int err = op.func(vres, t1, t2, t3, ctx); \
|
|
if (res == MY_ERROR) \
|
|
{ \
|
|
ASSERT_NE(OB_SUCCESS, err); \
|
|
} \
|
|
else \
|
|
{ \
|
|
ASSERT_EQ(OB_SUCCESS, err); \
|
|
switch(res) \
|
|
{ \
|
|
case MY_TRUE: \
|
|
ASSERT_TRUE(vres.is_true()); \
|
|
break; \
|
|
case MY_FALSE: \
|
|
ASSERT_TRUE(vres.is_false()); \
|
|
break; \
|
|
default: \
|
|
ASSERT_TRUE(vres.is_null()); \
|
|
break; \
|
|
} \
|
|
}\
|
|
} while(0)
|
|
|
|
#define T(t1, v1, t2, v2, res) COMPARE_EXPECT_(ObExprIs, ctx, calc_result3, t1, v1, t2, v2, res)
|
|
#define T_NULL1(t1, t2, v2, res) COMPARE_EXPECT_NULL1(ObExprIs, ctx, calc_result3, t1, t2, v2, res)
|
|
#define T_NULL2(t1, v1, t2, res) COMPARE_EXPECT_NULL2(ObExprIs, ctx, calc_result3, t1, v1, t2, res)
|
|
#define T_NULL1_NULL2(t1, t2, res) COMPARE_EXPECT_NULL1_NULL2(ObExprIs, ctx, calc_result3, t1, t2, res)
|
|
TEST_F(ObExprIsTest, basic_test)
|
|
{
|
|
ObExprStringBuf buf;
|
|
ObExprCtx ctx(NULL, NULL, NULL, &buf);
|
|
T(bool, true, bool, true, MY_TRUE);
|
|
T(bool, true, bool, false, MY_FALSE);
|
|
T_NULL2(bool, true, null, MY_FALSE);
|
|
T(bool, false, bool, true, MY_FALSE);
|
|
T(bool, false, bool, false, MY_TRUE);
|
|
T_NULL2(bool, true, null, MY_FALSE);
|
|
T_NULL1(null, bool, true, MY_FALSE);
|
|
T_NULL1(null, bool, false, MY_FALSE);
|
|
T_NULL1_NULL2(null, null, MY_TRUE);
|
|
|
|
T(int, 0, bool, true, MY_FALSE);
|
|
T(int, 0, bool, false, MY_TRUE);
|
|
T_NULL2(int, 0, null, MY_FALSE);
|
|
T_NULL2(float, 0.0, null, MY_FALSE);
|
|
T_NULL2(double, 0.0, null, MY_FALSE);
|
|
//T(precise_datetime, 0, null, 0, MY_TRUE);
|
|
//T(ctime, 0, null, 0, MY_TRUE);
|
|
//T(mtime, 0, null, 0, MY_TRUE);
|
|
|
|
T(varchar, "20080115", bool, true, MY_TRUE);
|
|
T(varchar, "a", bool, true, MY_FALSE);
|
|
T(varchar, "231#dsank2", bool, true, MY_TRUE);
|
|
T(int, 1, bool, true, MY_TRUE);
|
|
}
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
::testing::InitGoogleTest(&argc,argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|