tdeabc: update the tests for vcardparser to run them in a new way

Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
pull/1/head
Alexander Golubev 8 years ago committed by Slávek Banko
parent 37c9f23df5
commit 64b2c52817

@ -2,6 +2,8 @@
# #
# (C) 2010 Serghei Amelian # (C) 2010 Serghei Amelian
# serghei (DOT) amelian (AT) gmail.com # serghei (DOT) amelian (AT) gmail.com
# (C) 2016 Alexander Golubev
# fatzer2 (AT) gmail.com
# #
# Improvements and feedback are welcome # Improvements and feedback are welcome
# #
@ -60,56 +62,27 @@ tde_add_library( ${target} STATIC_PIC
##### test programs ############################## ##### test programs ##############################
tde_add_executable( testread tde_add_check_executable( testread AUTOMOC LINK ${TDEABC_TESTS_LINK} )
SOURCES testread.cpp AUTOMOC tde_add_check_executable( testwrite AUTOMOC LINK ${TDEABC_TESTS_LINK} )
LINK ${TDEABC_TESTS_LINK} tde_add_check_executable( testwrite2 AUTOMOC LINK ${TDEABC_TESTS_LINK} )
) tde_add_check_executable( testvcardformat AUTOMOC LINK ${TDEABC_TESTS_LINK} )
tde_add_check_executable( testvcardformatimpl AUTOMOC LINK ${TDEABC_TESTS_LINK} )
tde_add_executable( testread2 tde_add_check_executable( testread2
SOURCES testread2.cpp testutils.cpp AUTOMOC SOURCES testread2.cpp testutils.cpp AUTOMOC
LINK ${TDEABC_TESTS_LINK} LINK ${TDEABC_TESTS_LINK}
) )
tde_add_executable( testwrite add_test( NAME tdeabc/vcardparser/testread2 COMMAND testread2 WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" )
SOURCES testwrite.cpp AUTOMOC
LINK ${TDEABC_TESTS_LINK}
)
tde_add_executable( testwrite2
SOURCES testwrite2.cpp AUTOMOC
LINK ${TDEABC_TESTS_LINK}
)
tde_add_executable( testvcardformat
SOURCES testvcardformat.cpp AUTOMOC
LINK ${TDEABC_TESTS_LINK}
)
tde_add_executable( testvcardformatimpl
SOURCES testvcardformatimpl.cpp AUTOMOC
LINK ${TDEABC_TESTS_LINK}
)
add_custom_target( vcardparser_tests ALL
COMMENT "[VCardParser] Performing tests"
COMMAND rm -f ${CMAKE_CURRENT_BINARY_DIR}/FAILED
DEPENDS
testvcardformatimpl testvcardformat testwrite2 testwrite testread2 testread
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
)
# testread tests
file( GLOB vcardparser_testfiles "tests/*.vcf" ) file( GLOB vcardparser_testfiles "tests/*.vcf" )
list( REMOVE_ITEM vcardparser_testfiles "${CMAKE_CURRENT_SOURCE_DIR}/tests/vcard5.vcf" ) list( REMOVE_ITEM vcardparser_testfiles "${CMAKE_CURRENT_SOURCE_DIR}/tests/vcard5.vcf" )
list( SORT vcardparser_testfiles ) list( SORT vcardparser_testfiles )
foreach(testfile ${vcardparser_testfiles}) foreach(testfile ${vcardparser_testfiles})
add_custom_command( get_filename_component(testfile_name "${testfile}" NAME_WE )
TARGET vcardparser_tests add_test( NAME tdeabc/vcardparser/testread-${testfile_name} COMMAND
COMMAND perl ${CMAKE_CURRENT_SOURCE_DIR}/checkvcard.pl ${testfile} perl ${CMAKE_CURRENT_SOURCE_DIR}/checkvcard.pl ${testfile}
) )
endforeach(testfile) endforeach(testfile)
add_custom_command(
TARGET vcardparser_tests
COMMAND test ! -f ${CMAKE_CURRENT_BINARY_DIR}/FAILED
)

@ -8,6 +8,7 @@ using namespace TDEABC;
int int
main() main()
{ {
int rc=0;
Addressee::List l = vCardsAsAddresseeList(); Addressee::List l = vCardsAsAddresseeList();
TQString vcards = vCardsAsText(); TQString vcards = vCardsAsText();
@ -17,6 +18,7 @@ main()
if ( l.size() != parsed.size() ) { if ( l.size() != parsed.size() ) {
kdDebug()<<"\tSize - FAILED : "<<l.size()<<" vs. parsed "<<parsed.size()<<endl; kdDebug()<<"\tSize - FAILED : "<<l.size()<<" vs. parsed "<<parsed.size()<<endl;
rc=1;
} else { } else {
kdDebug()<<"\tSize - PASSED"<<endl; kdDebug()<<"\tSize - PASSED"<<endl;
} }
@ -39,6 +41,9 @@ main()
kdDebug()<<">>>>>>>Addressee from file<<<<<<<<"<<endl; kdDebug()<<">>>>>>>Addressee from file<<<<<<<<"<<endl;
(*itr2).dump(); (*itr2).dump();
//kdDebug()<<"\t\t"<< (*itr1).fullEmail() << " VS. " << (*itr2).fullEmail()<<endl; //kdDebug()<<"\t\t"<< (*itr1).fullEmail() << " VS. " << (*itr2).fullEmail()<<endl;
rc=1;
} }
} }
return rc;
} }

Loading…
Cancel
Save