summaryrefslogtreecommitdiffstats
path: root/libtdepim/tests/testlinklocator.cpp
blob: 0ed3f1f95638b80befca9c36b4be0b6256b6a459 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* This file is part of the KDE project
   Copyright (C) 2005 Ingo Kloecker <kloecker@kde.org>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License version 2 as published by the Free Software Foundation.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301, USA.
*/

// Test program for libtdepim/linklocator.*
#include <linklocator.h>

#include <kcmdlineargs.h>
#include <kapplication.h>
#include <kdebug.h>

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>

static bool check(const TQString& txt, const TQString& a, const TQString& b)
{
  if (a == b) {
    kdDebug() << txt << " : checking '" << a << "' against expected value '" << b << "'... " << "ok" << endl;
  }
  else {
    kdDebug() << txt << " : checking '" << a << "' against expected value '" << b << "'... " << "KO !" << endl;
    exit(1);
  }
  return true;
}

static bool checkGetEmailAddress( const TQString & input,
                                  int atPos,
                                  const TQString & expRetVal,
                                  bool allowBadAtPos = false )
{
  if ( !allowBadAtPos && ( input[atPos] != '@' ) ) {
    kdDebug() << "atPos (" << atPos << ") doesn't point to '@' in \""
              << input << "\". Fix the check!" << endl;
    exit(1);
  }
  LinkLocator ll( input, atPos );
  const TQString retVal = ll.getEmailAddress();
  check( "getEmailAddress() \"" + input + "\", " + TQString::number( atPos ),
         retVal, expRetVal );
  return true;
}

int main(int argc, char *argv[])
{
  TDEApplication::disableAutoDcopRegistration();
  TDECmdLineArgs::init( argc, argv, "testlinklocator", 0, 0, 0, 0 );
  TDEApplication app( false, false );

  // empty input
  checkGetEmailAddress( TQString(), 0, TQString(), true );

  // no '@' at scan position
  checkGetEmailAddress( "foo@bar.baz", 0, TQString(), true );

  // '@' in local part
  checkGetEmailAddress( "foo@bar@bar.baz", 7, TQString() );

  // empty local part
  checkGetEmailAddress( "@bar.baz", 0, TQString() );
  checkGetEmailAddress( ".@bar.baz", 1, TQString() );
  checkGetEmailAddress( " @bar.baz", 1, TQString() );
  checkGetEmailAddress( ".!#$%&'*+-/=?^_`{|}~@bar.baz", strlen(".!#$%&'*+-/=?^_`{|}~"), TQString() );

  // allowed special chars in local part of address
  checkGetEmailAddress( "a.!#$%&'*+-/=?^_`{|}~@bar.baz", strlen("a.!#$%&'*+-/=?^_`{|}~"), "a.!#$%&'*+-/=?^_`{|}~@bar.baz" );

  // '@' in domain part
  checkGetEmailAddress( "foo@bar@bar.baz", 3, TQString() );

  // domain part without dot
  checkGetEmailAddress( "foo@bar", 3, TQString() );
  checkGetEmailAddress( "foo@bar.", 3, TQString() );
  checkGetEmailAddress( ".foo@bar", 4, TQString() );
  checkGetEmailAddress( "foo@bar ", 3, TQString() );
  checkGetEmailAddress( " foo@bar", 4, TQString() );
  checkGetEmailAddress( "foo@bar-bar", 3, TQString() );

  // empty domain part
  checkGetEmailAddress( "foo@", 3, TQString() );
  checkGetEmailAddress( "foo@.", 3, TQString() );
  checkGetEmailAddress( "foo@-", 3, TQString() );

  // simple address
  checkGetEmailAddress( "foo@bar.baz", 3, "foo@bar.baz" );
  checkGetEmailAddress( "foo@bar.baz.", 3, "foo@bar.baz" );
  checkGetEmailAddress( ".foo@bar.baz", 4, "foo@bar.baz" );
  checkGetEmailAddress( "foo@bar.baz-", 3, "foo@bar.baz" );
  checkGetEmailAddress( "-foo@bar.baz", 4, "foo@bar.baz" );
  checkGetEmailAddress( "foo@bar.baz ", 3, "foo@bar.baz" );
  checkGetEmailAddress( " foo@bar.baz", 4, "foo@bar.baz" );
  checkGetEmailAddress( "foo@bar-bar.baz", 3, "foo@bar-bar.baz" );

  printf("\nTest OK !\n");

  return 0;
}