166 lines
No EOL
5.3 KiB
C++
166 lines
No EOL
5.3 KiB
C++
#include "StdAfx.h"
|
|
#include "multitable_id_duplicate_test.h"
|
|
|
|
|
|
multitable_id_duplicate_test::multitable_id_duplicate_test(void)
|
|
{
|
|
}
|
|
|
|
multitable_id_duplicate_test::~multitable_id_duplicate_test(void)
|
|
{
|
|
}
|
|
|
|
// 매 테스트 마다 초기화/해제
|
|
void multitable_id_duplicate_test::SetUp( void )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void multitable_id_duplicate_test::TearDown( void )
|
|
{
|
|
|
|
}
|
|
|
|
// 테스트 케이스 전체에 해당하는 초기화/해제
|
|
void multitable_id_duplicate_test::SetUpTestCase( void )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void multitable_id_duplicate_test::TearDownTestCase( void )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
TEST_F( multitable_id_duplicate_test, TABLE_ID_DUPLICATE_TEST )
|
|
{
|
|
string strTableFileName;
|
|
vector<string> vlExtFilesToVerify;
|
|
|
|
vector<std::string> tokens;
|
|
string delimiters = ";";
|
|
|
|
TokenizeA( g_strTableName, tokens, delimiters );
|
|
|
|
std::vector<std::string>::iterator iter = tokens.begin();
|
|
for ( ; iter != tokens.end(); ++iter)
|
|
{
|
|
vlExtFilesToVerify.push_back( *iter );
|
|
}
|
|
|
|
int iNumExtToVerify = (int)vlExtFilesToVerify.size();
|
|
for( int iIndex = 0; iIndex < iNumExtToVerify; ++iIndex )
|
|
{
|
|
strTableFileName = vlExtFilesToVerify.at( iIndex );
|
|
strTableFileName.append( ".dnt" );
|
|
|
|
vector<string> vlFilePathsToVerify;
|
|
string strTableFullPath;
|
|
|
|
GatherConcernedExt( strTableFileName.c_str(), vlFilePathsToVerify, strTableFullPath );
|
|
|
|
// 모아진 풀 패스가 하나도 없다면 이 테이블은 나눠진 것이 아니므로 검증할 필요가 없다.
|
|
if( vlFilePathsToVerify.empty() )
|
|
continue;
|
|
|
|
// vlFilePathsToVerify 의 인덱스. 아이디가 중첩되었을 경우 해당 아이디가 어느 테이블 출신인지 알아내기 위해.
|
|
// -1 이면 _ 가 없는 원래 테이블 이름.
|
|
vector<string> vlFilePaths = vlFilePathsToVerify;
|
|
int iTableFilePathIndex = -1;
|
|
|
|
// 처음에 따로 로드해서 아이디 중복 체크하고 후에 중첩해서 로드한 후 루프 반복.
|
|
DNTableFileFormat* pSox = new DNTableFileFormat;
|
|
pSox->Load( strTableFileName.c_str(), false );
|
|
|
|
// 만약 원래 테이블 이름으로 파일이 존재하지 않는다면 시리즈 중 맨 끝 파일을 기준으로 처리한다.
|
|
if( 0 == pSox->GetFieldCount() )
|
|
{
|
|
delete pSox;
|
|
pSox = new DNTableFileFormat;
|
|
pSox->Load( vlFilePathsToVerify.back().c_str(), false );
|
|
|
|
// 비교대상이 되는 맨 끝 파일은 제거한다.
|
|
vlFilePathsToVerify.pop_back();
|
|
iTableFilePathIndex = (int)vlFilePaths.size()-1;
|
|
}
|
|
|
|
multimap<int, int> mmapIDToTableNameIndex;
|
|
set<int> setItemIDs;
|
|
for( int i = 0; i < pSox->GetItemCount(); ++i )
|
|
{
|
|
setItemIDs.insert( pSox->GetItemID( i ) );
|
|
mmapIDToTableNameIndex.insert( make_pair( pSox->GetItemID( i ), iTableFilePathIndex ) );
|
|
}
|
|
|
|
TCHAR atcTableSeriesFileName[ MAX_PATH ] = { 0 };
|
|
TCHAR atcTableFileName[ MAX_PATH ] = { 0 };
|
|
TCHAR atcFileName[ MAX_PATH ] = { 0 };
|
|
TCHAR atcFileExt[ MAX_PATH ] = { 0 };
|
|
TCHAR atcBuf[ 256 ] = { 0 };
|
|
for( DWORD i=0; i< vlFilePathsToVerify.size(); i++ )
|
|
{
|
|
DNTableFileFormat* pAddition = new DNTableFileFormat;
|
|
|
|
pAddition->Load( vlFilePathsToVerify[ i ].c_str(), false );
|
|
|
|
if( pSox->GetFieldCount() != pAddition->GetFieldCount() )
|
|
{
|
|
MultiByteToWideChar( CP_ACP, 0, strTableFileName.c_str(), -1, atcTableSeriesFileName, MAX_PATH );
|
|
MultiByteToWideChar( CP_ACP, 0, vlFilePathsToVerify[ i ].c_str(), -1, atcTableFileName, MAX_PATH );
|
|
_stprintf_s( atcBuf, _T("{TableSeriesName:%s, TableFilePath:%s, Note:테이블 레이블 갯수가 다릅니다.}"), atcTableSeriesFileName, atcTableFileName );
|
|
SCOPED_TRACE( atcBuf );
|
|
EXPECT_TRUE( pSox->GetFieldCount() == pAddition->GetFieldCount() );
|
|
continue;
|
|
}
|
|
|
|
set<int> setAdditionItemIDs;
|
|
for( int k = 0; k < pAddition->GetItemCount(); ++k )
|
|
setAdditionItemIDs.insert( pAddition->GetItemID( k ) );
|
|
|
|
vector<int> vlIntersection;
|
|
set_intersection( setItemIDs.begin(), setItemIDs.end(),
|
|
setAdditionItemIDs.begin(), setAdditionItemIDs.end(),
|
|
back_inserter( vlIntersection ) );
|
|
|
|
for( int k = 0; k < (int)vlIntersection.size(); ++k )
|
|
{
|
|
// 어디 테이블 파일 출신인가?
|
|
pair<multimap<int, int>::iterator, multimap<int, int>::iterator> iter_pair = mmapIDToTableNameIndex.equal_range( vlIntersection.at(k) );
|
|
multimap<int, int>::iterator iter = iter_pair.first;
|
|
string strExistingIDFilePath;
|
|
if( -1 < iter->second )
|
|
strExistingIDFilePath = vlFilePaths.at( iter->second );
|
|
else
|
|
strExistingIDFilePath = strTableFileName;
|
|
|
|
MultiByteToWideChar( CP_ACP, 0, strExistingIDFilePath.c_str(), -1, atcTableSeriesFileName, MAX_PATH );
|
|
MultiByteToWideChar( CP_ACP, 0, vlFilePathsToVerify[ i ].c_str(), -1, atcTableFileName, MAX_PATH );
|
|
//_stprintf_s( atcBuf, _T("{ExistingFilePath:%s, TableFilePath:%s, ID:%d, Note:테이블 아이디가 중복되었습니다.}"), atcTableSeriesFileName,
|
|
// atcTableFileName, vlIntersection.at(k) );
|
|
|
|
_tsplitpath_s( atcTableFileName, NULL, 0, NULL, 0, atcFileName, _countof(atcFileName), atcFileExt, _countof(atcFileName) );
|
|
tstring strFileName( atcFileName );
|
|
strFileName += atcFileExt;
|
|
_stprintf_s( atcBuf, _T("{TablenName:%s, Index:%d, Note:테이블 아이디가 중복되었습니다.}"), strFileName.c_str(), vlIntersection.at(k) );
|
|
SCOPED_TRACE( atcBuf );
|
|
EXPECT_TRUE( vlIntersection.empty() );
|
|
}
|
|
|
|
for( int k = 0; k < pAddition->GetItemCount(); ++k )
|
|
{
|
|
setItemIDs.insert( pAddition->GetItemID( k ) );
|
|
mmapIDToTableNameIndex.insert( make_pair( pAddition->GetItemID( k ), i ) );
|
|
}
|
|
|
|
delete pAddition;
|
|
}
|
|
|
|
delete pSox;
|
|
}
|
|
}
|
|
|
|
|
|
//INSTANTIATE_TEST_CASE_P( SELECTED_TABLE, multitable_id_duplicate_test, ValuesIn() );
|