You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdelibs/tdeabc/vcardparser/testread2.cpp

43 lines
1.3 KiB

#include "testutils.h"
#include <tdeabc/addressee.h>
#include <vcardconverter.h>
#include <kdebug.h>
using namespace KABC;
int
main()
{
Addressee::List l = vCardsAsAddresseeList();
TQString vcards = vCardsAsText();
VCardConverter vct;
Addressee::List parsed = vct.parseVCards( vcards );
if ( l.size() != parsed.size() ) {
kdDebug()<<"\tSize - FAILED : "<<l.size()<<" vs. parsed "<<parsed.size()<<endl;
} else {
kdDebug()<<"\tSize - PASSED"<<endl;
}
Addressee::List::iterator itr1;
Addressee::List::iterator itr2;
for ( itr1 = l.begin(), itr2 = parsed.begin();
itr1 != l.end(); ++itr1, ++itr2 ) {
if ( (*itr1).fullEmail() == (*itr2).fullEmail() &&
(*itr1).organization() == (*itr2).organization() &&
(*itr1).phoneNumbers() == (*itr2).phoneNumbers() &&
(*itr1).emails() == (*itr2).emails() &&
(*itr1).role() == (*itr2).role() ) {
kdDebug()<<"\tAddressee - PASSED"<<endl;
kdDebug()<<"\t\t"<< (*itr1).fullEmail() << " VS. " << (*itr2).fullEmail()<<endl;
} else {
kdDebug()<<"\tAddressee - FAILED"<<endl;
(*itr1).dump();
(*itr2).dump();
//kdDebug()<<"\t\t"<< (*itr1).fullEmail() << " VS. " << (*itr2).fullEmail()<<endl;
}
}
}