636 lines
18 KiB
C++
636 lines
18 KiB
C++
/**
|
|
* @file user.cpp
|
|
* @author slguan (slguan@taosdata.com)
|
|
* @brief MNODE module user tests
|
|
* @version 1.0
|
|
* @date 2022-01-04
|
|
*
|
|
* @copyright Copyright (c) 2022
|
|
*
|
|
*/
|
|
|
|
#include "sut.h"
|
|
|
|
class MndTestUser : public ::testing::Test {
|
|
protected:
|
|
static void SetUpTestSuite() { test.Init("/tmp/mnode_test_user", 9011); }
|
|
static void TearDownTestSuite() { test.Cleanup(); }
|
|
|
|
static Testbase test;
|
|
|
|
public:
|
|
void SetUp() override {}
|
|
void TearDown() override {}
|
|
};
|
|
|
|
Testbase MndTestUser::test;
|
|
|
|
TEST_F(MndTestUser, 01_Show_User) {
|
|
test.SendShowMetaReq(TSDB_MGMT_TABLE_USER, "");
|
|
CHECK_META("show users", 4);
|
|
|
|
CHECK_SCHEMA(0, TSDB_DATA_TYPE_BINARY, TSDB_USER_LEN + VARSTR_HEADER_SIZE, "name");
|
|
CHECK_SCHEMA(1, TSDB_DATA_TYPE_BINARY, 10 + VARSTR_HEADER_SIZE, "privilege");
|
|
CHECK_SCHEMA(2, TSDB_DATA_TYPE_TIMESTAMP, 8, "create_time");
|
|
CHECK_SCHEMA(3, TSDB_DATA_TYPE_BINARY, TSDB_USER_LEN + VARSTR_HEADER_SIZE, "account");
|
|
|
|
test.SendShowRetrieveReq();
|
|
EXPECT_EQ(test.GetShowRows(), 1);
|
|
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("super", 10);
|
|
CheckTimestamp();
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
}
|
|
|
|
TEST_F(MndTestUser, 02_Create_User) {
|
|
{
|
|
SCreateUserReq createReq = {0};
|
|
strcpy(createReq.user, "");
|
|
strcpy(createReq.pass, "p1");
|
|
|
|
int32_t contLen = tSerializeSCreateUserReq(NULL, 0, &createReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSCreateUserReq(pReq, contLen, &createReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, TSDB_CODE_MND_INVALID_USER_FORMAT);
|
|
}
|
|
|
|
{
|
|
SCreateUserReq createReq = {0};
|
|
strcpy(createReq.user, "u1");
|
|
strcpy(createReq.pass, "");
|
|
|
|
int32_t contLen = tSerializeSCreateUserReq(NULL, 0, &createReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSCreateUserReq(pReq, contLen, &createReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, TSDB_CODE_MND_INVALID_PASS_FORMAT);
|
|
}
|
|
|
|
{
|
|
SCreateUserReq createReq = {0};
|
|
strcpy(createReq.user, "root");
|
|
strcpy(createReq.pass, "1");
|
|
|
|
int32_t contLen = tSerializeSCreateUserReq(NULL, 0, &createReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSCreateUserReq(pReq, contLen, &createReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, TSDB_CODE_MND_USER_ALREADY_EXIST);
|
|
}
|
|
|
|
{
|
|
SCreateUserReq createReq = {0};
|
|
strcpy(createReq.user, "u1");
|
|
strcpy(createReq.pass, "p1");
|
|
|
|
int32_t contLen = tSerializeSCreateUserReq(NULL, 0, &createReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSCreateUserReq(pReq, contLen, &createReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
|
|
test.SendShowMetaReq(TSDB_MGMT_TABLE_USER, "");
|
|
test.SendShowRetrieveReq();
|
|
EXPECT_EQ(test.GetShowRows(), 2);
|
|
|
|
CheckBinary("u1", TSDB_USER_LEN);
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("normal", 10);
|
|
CheckBinary("super", 10);
|
|
CheckTimestamp();
|
|
CheckTimestamp();
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
}
|
|
|
|
{
|
|
SDropUserReq dropReq = {0};
|
|
strcpy(dropReq.user, "u1");
|
|
|
|
int32_t contLen = tSerializeSDropUserReq(NULL, 0, &dropReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSDropUserReq(pReq, contLen, &dropReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_DROP_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
|
|
test.SendShowMetaReq(TSDB_MGMT_TABLE_USER, "");
|
|
test.SendShowRetrieveReq();
|
|
EXPECT_EQ(test.GetShowRows(), 1);
|
|
}
|
|
|
|
{
|
|
SCreateUserReq createReq = {0};
|
|
strcpy(createReq.user, "u2");
|
|
strcpy(createReq.pass, "p1");
|
|
createReq.superUser = 1;
|
|
|
|
int32_t contLen = tSerializeSCreateUserReq(NULL, 0, &createReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSCreateUserReq(pReq, contLen, &createReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
|
|
test.SendShowMetaReq(TSDB_MGMT_TABLE_USER, "");
|
|
test.SendShowRetrieveReq();
|
|
EXPECT_EQ(test.GetShowRows(), 2);
|
|
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("u2", TSDB_USER_LEN);
|
|
CheckBinary("super", 10);
|
|
CheckBinary("super", 10);
|
|
CheckTimestamp();
|
|
CheckTimestamp();
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
}
|
|
|
|
{
|
|
SDropUserReq dropReq = {0};
|
|
strcpy(dropReq.user, "u2");
|
|
|
|
int32_t contLen = tSerializeSDropUserReq(NULL, 0, &dropReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSDropUserReq(pReq, contLen, &dropReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_DROP_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
|
|
test.SendShowMetaReq(TSDB_MGMT_TABLE_USER, "");
|
|
test.SendShowRetrieveReq();
|
|
EXPECT_EQ(test.GetShowRows(), 1);
|
|
}
|
|
}
|
|
|
|
TEST_F(MndTestUser, 03_Alter_User) {
|
|
{
|
|
SCreateUserReq createReq = {0};
|
|
strcpy(createReq.user, "u3");
|
|
strcpy(createReq.pass, "p1");
|
|
createReq.superUser = 1;
|
|
|
|
int32_t contLen = tSerializeSCreateUserReq(NULL, 0, &createReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSCreateUserReq(pReq, contLen, &createReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
|
|
test.SendShowMetaReq(TSDB_MGMT_TABLE_USER, "");
|
|
test.SendShowRetrieveReq();
|
|
EXPECT_EQ(test.GetShowRows(), 2);
|
|
}
|
|
|
|
{
|
|
SAlterUserReq alterReq = {0};
|
|
alterReq.alterType = TSDB_ALTER_USER_PASSWD;
|
|
strcpy(alterReq.user, "");
|
|
strcpy(alterReq.pass, "p1");
|
|
|
|
int32_t contLen = tSerializeSAlterUserReq(NULL, 0, &alterReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSAlterUserReq(pReq, contLen, &alterReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_ALTER_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, TSDB_CODE_MND_INVALID_USER_FORMAT);
|
|
}
|
|
|
|
{
|
|
SAlterUserReq alterReq = {0};
|
|
alterReq.alterType = TSDB_ALTER_USER_PASSWD;
|
|
strcpy(alterReq.user, "u3");
|
|
strcpy(alterReq.pass, "");
|
|
|
|
int32_t contLen = tSerializeSAlterUserReq(NULL, 0, &alterReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSAlterUserReq(pReq, contLen, &alterReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_ALTER_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, TSDB_CODE_MND_INVALID_PASS_FORMAT);
|
|
}
|
|
|
|
{
|
|
SAlterUserReq alterReq = {0};
|
|
alterReq.alterType = TSDB_ALTER_USER_PASSWD;
|
|
strcpy(alterReq.user, "u4");
|
|
strcpy(alterReq.pass, "1");
|
|
|
|
int32_t contLen = tSerializeSAlterUserReq(NULL, 0, &alterReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSAlterUserReq(pReq, contLen, &alterReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_ALTER_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, TSDB_CODE_MND_USER_NOT_EXIST);
|
|
}
|
|
|
|
{
|
|
SAlterUserReq alterReq = {0};
|
|
alterReq.alterType = TSDB_ALTER_USER_PASSWD;
|
|
strcpy(alterReq.user, "u3");
|
|
strcpy(alterReq.pass, "1");
|
|
|
|
int32_t contLen = tSerializeSAlterUserReq(NULL, 0, &alterReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSAlterUserReq(pReq, contLen, &alterReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_ALTER_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
{
|
|
SAlterUserReq alterReq = {0};
|
|
alterReq.alterType = TSDB_ALTER_USER_SUPERUSER;
|
|
strcpy(alterReq.user, "u3");
|
|
strcpy(alterReq.pass, "1");
|
|
alterReq.superUser = 1;
|
|
|
|
int32_t contLen = tSerializeSAlterUserReq(NULL, 0, &alterReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSAlterUserReq(pReq, contLen, &alterReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_ALTER_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
{
|
|
SAlterUserReq alterReq = {0};
|
|
alterReq.alterType = TSDB_ALTER_USER_CLEAR_WRITE_DB;
|
|
strcpy(alterReq.user, "u3");
|
|
strcpy(alterReq.pass, "1");
|
|
|
|
int32_t contLen = tSerializeSAlterUserReq(NULL, 0, &alterReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSAlterUserReq(pReq, contLen, &alterReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_ALTER_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
{
|
|
SAlterUserReq alterReq = {0};
|
|
alterReq.alterType = TSDB_ALTER_USER_CLEAR_READ_DB;
|
|
strcpy(alterReq.user, "u3");
|
|
strcpy(alterReq.pass, "1");
|
|
|
|
int32_t contLen = tSerializeSAlterUserReq(NULL, 0, &alterReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSAlterUserReq(pReq, contLen, &alterReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_ALTER_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
{
|
|
SAlterUserReq alterReq = {0};
|
|
alterReq.alterType = TSDB_ALTER_USER_ADD_READ_DB;
|
|
strcpy(alterReq.user, "u3");
|
|
strcpy(alterReq.pass, "1");
|
|
strcpy(alterReq.dbname, "d1");
|
|
|
|
int32_t contLen = tSerializeSAlterUserReq(NULL, 0, &alterReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSAlterUserReq(pReq, contLen, &alterReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_ALTER_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, TSDB_CODE_MND_DB_NOT_EXIST);
|
|
}
|
|
|
|
{
|
|
SCreateDbReq createReq = {0};
|
|
strcpy(createReq.db, "1.d2");
|
|
createReq.numOfVgroups = 2;
|
|
createReq.cacheBlockSize = 16;
|
|
createReq.totalBlocks = 10;
|
|
createReq.daysPerFile = 10;
|
|
createReq.daysToKeep0 = 3650;
|
|
createReq.daysToKeep1 = 3650;
|
|
createReq.daysToKeep2 = 3650;
|
|
createReq.minRows = 100;
|
|
createReq.maxRows = 4096;
|
|
createReq.commitTime = 3600;
|
|
createReq.fsyncPeriod = 3000;
|
|
createReq.walLevel = 1;
|
|
createReq.precision = 0;
|
|
createReq.compression = 2;
|
|
createReq.replications = 1;
|
|
createReq.quorum = 1;
|
|
createReq.update = 0;
|
|
createReq.cacheLastRow = 0;
|
|
createReq.ignoreExist = 1;
|
|
|
|
int32_t contLen = tSerializeSCreateDbReq(NULL, 0, &createReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSCreateDbReq(pReq, contLen, &createReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_DB, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
{
|
|
SAlterUserReq alterReq = {0};
|
|
alterReq.alterType = TSDB_ALTER_USER_ADD_READ_DB;
|
|
strcpy(alterReq.user, "u3");
|
|
strcpy(alterReq.pass, "1");
|
|
strcpy(alterReq.dbname, "1.d2");
|
|
|
|
int32_t contLen = tSerializeSAlterUserReq(NULL, 0, &alterReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSAlterUserReq(pReq, contLen, &alterReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_ALTER_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
{
|
|
SAlterUserReq alterReq = {0};
|
|
alterReq.alterType = TSDB_ALTER_USER_ADD_READ_DB;
|
|
strcpy(alterReq.user, "u3");
|
|
strcpy(alterReq.pass, "1");
|
|
strcpy(alterReq.dbname, "1.d2");
|
|
|
|
int32_t contLen = tSerializeSAlterUserReq(NULL, 0, &alterReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSAlterUserReq(pReq, contLen, &alterReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_ALTER_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
{
|
|
SGetUserAuthReq authReq = {0};
|
|
strcpy(authReq.user, "u3");
|
|
int32_t contLen = tSerializeSGetUserAuthReq(NULL, 0, &authReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSGetUserAuthReq(pReq, contLen, &authReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_GET_USER_AUTH, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
|
|
SGetUserAuthRsp authRsp = {0};
|
|
tDeserializeSGetUserAuthRsp(pRsp->pCont, pRsp->contLen, &authRsp);
|
|
EXPECT_STREQ(authRsp.user, "u3");
|
|
EXPECT_EQ(authRsp.superAuth, 1);
|
|
int32_t numOfReadDbs = taosHashGetSize(authRsp.readDbs);
|
|
int32_t numOfWriteDbs = taosHashGetSize(authRsp.writeDbs);
|
|
EXPECT_EQ(numOfReadDbs, 1);
|
|
EXPECT_EQ(numOfWriteDbs, 0);
|
|
|
|
char* dbname = (char*)taosHashGet(authRsp.readDbs, "1.d2", 5);
|
|
EXPECT_STREQ(dbname, "1.d2");
|
|
|
|
taosHashCleanup(authRsp.readDbs);
|
|
taosHashCleanup(authRsp.writeDbs);
|
|
}
|
|
|
|
{
|
|
SAlterUserReq alterReq = {0};
|
|
alterReq.alterType = TSDB_ALTER_USER_REMOVE_READ_DB;
|
|
strcpy(alterReq.user, "u3");
|
|
strcpy(alterReq.pass, "1");
|
|
strcpy(alterReq.dbname, "1.d2");
|
|
|
|
int32_t contLen = tSerializeSAlterUserReq(NULL, 0, &alterReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSAlterUserReq(pReq, contLen, &alterReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_ALTER_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
{
|
|
SDropUserReq dropReq = {0};
|
|
strcpy(dropReq.user, "u3");
|
|
|
|
int32_t contLen = tSerializeSDropUserReq(NULL, 0, &dropReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSDropUserReq(pReq, contLen, &dropReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_DROP_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
|
|
test.SendShowMetaReq(TSDB_MGMT_TABLE_USER, "");
|
|
test.SendShowRetrieveReq();
|
|
EXPECT_EQ(test.GetShowRows(), 1);
|
|
}
|
|
}
|
|
|
|
TEST_F(MndTestUser, 05_Drop_User) {
|
|
{
|
|
SDropUserReq dropReq = {0};
|
|
strcpy(dropReq.user, "");
|
|
|
|
int32_t contLen = tSerializeSDropUserReq(NULL, 0, &dropReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSDropUserReq(pReq, contLen, &dropReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_DROP_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, TSDB_CODE_MND_INVALID_USER_FORMAT);
|
|
}
|
|
|
|
{
|
|
SDropUserReq dropReq = {0};
|
|
strcpy(dropReq.user, "u4");
|
|
|
|
int32_t contLen = tSerializeSDropUserReq(NULL, 0, &dropReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSDropUserReq(pReq, contLen, &dropReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_DROP_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, TSDB_CODE_MND_USER_NOT_EXIST);
|
|
}
|
|
|
|
{
|
|
SCreateUserReq createReq = {0};
|
|
strcpy(createReq.user, "u1");
|
|
strcpy(createReq.pass, "p1");
|
|
|
|
int32_t contLen = tSerializeSCreateUserReq(NULL, 0, &createReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSCreateUserReq(pReq, contLen, &createReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
{
|
|
SDropUserReq dropReq = {0};
|
|
strcpy(dropReq.user, "u1");
|
|
|
|
int32_t contLen = tSerializeSDropUserReq(NULL, 0, &dropReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSDropUserReq(pReq, contLen, &dropReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_DROP_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
test.SendShowMetaReq(TSDB_MGMT_TABLE_USER, "");
|
|
CHECK_META("show users", 4);
|
|
|
|
test.SendShowRetrieveReq();
|
|
EXPECT_EQ(test.GetShowRows(), 1);
|
|
}
|
|
|
|
TEST_F(MndTestUser, 06_Create_Drop_Alter_User) {
|
|
{
|
|
SCreateUserReq createReq = {0};
|
|
strcpy(createReq.user, "u1");
|
|
strcpy(createReq.pass, "p1");
|
|
|
|
int32_t contLen = tSerializeSCreateUserReq(NULL, 0, &createReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSCreateUserReq(pReq, contLen, &createReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
{
|
|
SCreateUserReq createReq = {0};
|
|
strcpy(createReq.user, "u2");
|
|
strcpy(createReq.pass, "p2");
|
|
|
|
int32_t contLen = tSerializeSCreateUserReq(NULL, 0, &createReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSCreateUserReq(pReq, contLen, &createReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_CREATE_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
test.SendShowMetaReq(TSDB_MGMT_TABLE_USER, "");
|
|
CHECK_META("show users", 4);
|
|
|
|
test.SendShowRetrieveReq();
|
|
EXPECT_EQ(test.GetShowRows(), 3);
|
|
|
|
CheckBinary("u1", TSDB_USER_LEN);
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("u2", TSDB_USER_LEN);
|
|
CheckBinary("normal", 10);
|
|
CheckBinary("super", 10);
|
|
CheckBinary("normal", 10);
|
|
CheckTimestamp();
|
|
CheckTimestamp();
|
|
CheckTimestamp();
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
|
|
{
|
|
SAlterUserReq alterReq = {0};
|
|
alterReq.alterType = TSDB_ALTER_USER_PASSWD;
|
|
strcpy(alterReq.user, "u1");
|
|
strcpy(alterReq.pass, "p2");
|
|
|
|
int32_t contLen = tSerializeSAlterUserReq(NULL, 0, &alterReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSAlterUserReq(pReq, contLen, &alterReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_ALTER_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
test.SendShowMetaReq(TSDB_MGMT_TABLE_USER, "");
|
|
CHECK_META("show users", 4);
|
|
|
|
test.SendShowRetrieveReq();
|
|
EXPECT_EQ(test.GetShowRows(), 3);
|
|
|
|
CheckBinary("u1", TSDB_USER_LEN);
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("u2", TSDB_USER_LEN);
|
|
CheckBinary("normal", 10);
|
|
CheckBinary("super", 10);
|
|
CheckBinary("normal", 10);
|
|
CheckTimestamp();
|
|
CheckTimestamp();
|
|
CheckTimestamp();
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
|
|
{
|
|
SDropUserReq dropReq = {0};
|
|
strcpy(dropReq.user, "u1");
|
|
|
|
int32_t contLen = tSerializeSDropUserReq(NULL, 0, &dropReq);
|
|
void* pReq = rpcMallocCont(contLen);
|
|
tSerializeSDropUserReq(pReq, contLen, &dropReq);
|
|
|
|
SRpcMsg* pRsp = test.SendReq(TDMT_MND_DROP_USER, pReq, contLen);
|
|
ASSERT_NE(pRsp, nullptr);
|
|
ASSERT_EQ(pRsp->code, 0);
|
|
}
|
|
|
|
test.SendShowMetaReq(TSDB_MGMT_TABLE_USER, "");
|
|
CHECK_META("show users", 4);
|
|
|
|
test.SendShowRetrieveReq();
|
|
EXPECT_EQ(test.GetShowRows(), 2);
|
|
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("u2", TSDB_USER_LEN);
|
|
CheckBinary("super", 10);
|
|
CheckBinary("normal", 10);
|
|
CheckTimestamp();
|
|
CheckTimestamp();
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
|
|
// restart
|
|
test.Restart();
|
|
|
|
taosMsleep(1000);
|
|
test.SendShowMetaReq(TSDB_MGMT_TABLE_USER, "");
|
|
CHECK_META("show users", 4);
|
|
|
|
test.SendShowRetrieveReq();
|
|
EXPECT_EQ(test.GetShowRows(), 2);
|
|
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("u2", TSDB_USER_LEN);
|
|
CheckBinary("super", 10);
|
|
CheckBinary("normal", 10);
|
|
CheckTimestamp();
|
|
CheckTimestamp();
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
CheckBinary("root", TSDB_USER_LEN);
|
|
}
|