77 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			1.8 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 <sys/time.h>
 | |
| #include <gtest/gtest.h>
 | |
| #include "rpc/ob_request.h"
 | |
| #include "rpc/obmysql/ob_mysql_packet.h"
 | |
| #include "observer/ob_srv_deliver.h"
 | |
| #include "observer/ob_srv_xlator.h"
 | |
| 
 | |
| 
 | |
| using namespace oceanbase::common;
 | |
| using namespace oceanbase::observer;
 | |
| using namespace oceanbase::obmysql;
 | |
| using namespace oceanbase::obrpc;
 | |
| using namespace oceanbase::rpc;
 | |
| using namespace oceanbase::omt;
 | |
| 
 | |
| 
 | |
| class TestDeliver
 | |
|     : public ::testing::Test
 | |
| {
 | |
| public:
 | |
|   TestDeliver()
 | |
|   {}
 | |
| 
 | |
|   virtual void SetUp()
 | |
|   {
 | |
|   }
 | |
| 
 | |
|   virtual void TearDown()
 | |
|   {
 | |
|   }
 | |
| };
 | |
| 
 | |
| 
 | |
| TEST_F(TestDeliver, time_cost)
 | |
| {
 | |
|   ObGlobalContext gctx;
 | |
|   ObRequest req(ObRequest::OB_MYSQL);
 | |
|   ObMySQLRawPacket pkt;
 | |
|   ObSrvMySQLXlator xlator(gctx);
 | |
|   ObReqProcessor *processor =  NULL;
 | |
| 
 | |
|   pkt.set_cmd(oceanbase::obmysql::COM_PING);
 | |
|   req.set_packet(&pkt);
 | |
| 
 | |
| 
 | |
|   timeval start, end;
 | |
|   gettimeofday(&start, NULL);
 | |
| 
 | |
|   int times = 100000;
 | |
|   for (int i = 0; i < times; ++i) {
 | |
|     int ret = xlator.translate(req, processor);
 | |
|     EXPECT_EQ(OB_SUCCESS, ret);
 | |
|   }
 | |
| 
 | |
|   gettimeofday(&end, NULL);
 | |
|   int64_t use_time = (long int)(end.tv_sec - start.tv_sec) * 1000000 + (long int)(end.tv_usec - start.tv_usec);;
 | |
|   std::cout << " use time :" << use_time / times << std::endl;
 | |
| }
 | |
| 
 | |
| int main(int argc, char *argv[])
 | |
| {
 | |
|   ::testing::InitGoogleTest(&argc, argv);
 | |
|   return RUN_ALL_TESTS();
 | |
| }
 | 
