summaryrefslogtreecommitdiffstats
path: root/kabc/tests/testaddressfmt.cpp
blob: c9369d75619a506fa02dd1d6474808dcf38aa053 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <kaboutdata.h>
#include <kapplication.h>
#include <kdebug.h>
#include <klocale.h>
#include <kcmdlineargs.h>
#include <kstandarddirs.h>

#include "addressbook.h"
#include "address.h"

using namespace KABC;

static const KCmdLineOptions options[] =
{
  { "save", "", 0 },
  { "number", "", 0 },
  KCmdLineLastOption
};

int main(int argc,char **argv)
{
  KAboutData aboutData("testaddressfmt","TestAddressFormat","0.1");
  TDECmdLineArgs::init(argc, argv, &aboutData);
  TDECmdLineArgs::addCmdLineOptions(options);

  TDEApplication app;

  Address a;
  a.setStreet("Lummerlandstr. 1");
  a.setPostalCode("12345");
  a.setLocality("Lummerstadt");
  a.setCountry ("Germany");

  Address b;
  b.setStreet("457 Foobar Ave");
  b.setPostalCode("1A2B3C");
  b.setLocality("Nervousbreaktown");
  b.setRegion("DC");
  b.setCountry("United States of America");

  Address c;
  c.setStreet("Lummerlandstr. 1");
  c.setPostalCode("12345");
  c.setLocality("Lummerstadt");
  c.setCountry ("Deutschland");

  Address d;
  d.setStreet("Lummerlandstr. 1");
  d.setPostalCode("12345");
  d.setLocality("Lummerstadt");
  d.setCountry ("");

  tqDebug( "-------------------------------------\nShould have german address formatting, local country formatting\n" );
  tqDebug( a.formattedAddress("Jim Knopf").latin1() );
  tqDebug( "-------------------------------------\nShould have US address formatting, local country formatting\n" );
  tqDebug( b.formattedAddress("Huck Finn").latin1() );
  tqDebug( "-------------------------------------\nShould have german address formatting, local country formatting\n" );
  tqDebug( c.formattedAddress("Jim Knopf").latin1() );
  tqDebug( "-------------------------------------\nShould have local address formatting, local country formatting\n" );
  tqDebug( d.formattedAddress("Jim Knopf").latin1() );
}