greenplumn CParseHandlerTest 源码
greenplumn CParseHandlerTest 代码
文件路径:/src/backend/gporca/server/include/unittest/dxl/CParseHandlerTest.h
//---------------------------------------------------------------------------
// Greenplum Database
// Copyright (C) 2010 Greenplum, Inc.
//
// @filename:
// CParseHandlerTest.h
//
// @doc:
// Tests parsing of DXL into DXL trees
//---------------------------------------------------------------------------
#ifndef GPOPT_CParseHandlerTest_H
#define GPOPT_CParseHandlerTest_H
#include "gpos/base.h"
namespace gpdxl
{
using namespace gpos;
//---------------------------------------------------------------------------
// @class:
// CParseHandlerTest
//
// @doc:
// Static unit tests
//
//---------------------------------------------------------------------------
class CParseHandlerTest
{
private:
// metadata request file
static const CHAR *m_szMDRequestFile;
// files for testing parsing of different DXL nodes
static const CHAR *m_rgszPlanDXLFileNames[];
// files for tests involving dxl representation of queries
static const CHAR *m_rgszQueryDXLFileNames[];
// files for the statistics tests
static const CHAR *m_rgszStatsDXLFileNames[];
// files for the metadata tests
static const CHAR *m_rgszMetadataDXLFileNames[];
// input files for scalar expression tests
static const CHAR *m_rgszScalarExprDXLFileNames[];
// files for testing Xerces
static const CHAR *m_rgszXerceTestFileNames[];
// files for testing exception handling in DXL parsing
static const CHAR *m_rgszNegativeTestsFileNames[];
// test parsing and serializing of plans
static GPOS_RESULT EresParseAndSerializePlan(CMemoryPool *, const CHAR *,
BOOL fValidate);
// test parsing and serializing of queries
static GPOS_RESULT EresParseAndSerializeQuery(CMemoryPool *, const CHAR *,
BOOL fValidate);
// test parsing and serializing of metadata
static GPOS_RESULT EresParseAndSerializeMetadata(CMemoryPool *,
const CHAR *,
BOOL fValidate);
// test parsing and serializing of metadata requests
static GPOS_RESULT EresParseAndSerializeMDRequest(CMemoryPool *,
const CHAR *,
BOOL fValidate);
// test parsing and serializing of stats
static GPOS_RESULT EresParseAndSerializeStatistics(CMemoryPool *,
const CHAR *,
BOOL fValidate);
// test parsing and serializing of scalar expressions
static GPOS_RESULT EresParseAndSerializeScalarExpr(CMemoryPool *,
const CHAR *,
BOOL fValidate);
public:
// unittests
static GPOS_RESULT EresUnittest();
// run all plan tests
static GPOS_RESULT EresUnittest_RunPlanTests();
// run all positive tests
static GPOS_RESULT EresUnittest_RunAllPositiveTests(
const CHAR *rgszFileNames[], ULONG ulFiles,
GPOS_RESULT (*testFunc)(CMemoryPool *, const CHAR *, BOOL),
BOOL fValidate);
// run medata tests
static GPOS_RESULT EresUnittest_Metadata();
// run MD request test
static GPOS_RESULT EresUnittest_MDRequest();
// run stats test
static GPOS_RESULT EresUnittest_Statistics();
// run scalar expression tests
static GPOS_RESULT EresUnittest_ScalarExpr();
// tests checking handling exception cases (e.g. due to invalid DXL
// or unsupported operators)
static GPOS_RESULT EresUnittest_ErrSAXParseException();
// tests checking the parsing DXL representing queries
static GPOS_RESULT EresUnittest_RunQueryTests();
// tests checking the "failing" tests
static GPOS_RESULT EresUnittest_RunAllNegativeTests();
}; // class CParseHandlerTest
} // namespace gpdxl
#endif // !GPOPT_CParseHandlerTest_H
// EOF
相关信息
相关文章
greenplumn CDXLMemoryManagerTest 源码
greenplumn CParseHandlerCostModelTest 源码
greenplumn CParseHandlerManagerTest 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦