~ubuntu-branches/ubuntu/saucy/sflphone/saucy

« back to all changes in this revision

Viewing changes to sflphone-common/test/instantmessagingtest.h

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2010-12-24 16:33:55 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101224163355-tkvvikqxbrbav6up
Tags: 0.9.11-1
* New upstream release
* Add new build dependencies on libwebkit-dev and libyaml-dev

* Bump Standards-Version up to 3.9.1
* Bump debhelper compatibility to 8
* Patch another typo in the upstream code (lintian notice)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright (C) 2004, 2005, 2006, 2009, 2008, 2009, 2010 Savoir-Faire Linux Inc.
 
3
 *  Author: Emmanuel Milou <emmanuel.milou@savoirfairelinux.com>
 
4
 *
 
5
 *  This program is free software; you can redistribute it and/or modify
 
6
 *  it under the terms of the GNU General Public License as published by
 
7
 *  the Free Software Foundation; either version 3 of the License, or
 
8
 *  (at your option) any later version.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
 *
 
19
 *  Additional permission under GNU GPL version 3 section 7:
 
20
 *
 
21
 *  If you modify this program, or any covered work, by linking or
 
22
 *  combining it with the OpenSSL project's OpenSSL library (or a
 
23
 *  modified version of that library), containing parts covered by the
 
24
 *  terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
 
25
 *  grants you additional permission to convey the resulting work.
 
26
 *  Corresponding Source for a non-source form of such a combination
 
27
 *  shall include the source code for the parts of OpenSSL used as well
 
28
 *  as that of the covered work.
 
29
 */
 
30
 
 
31
// Cppunit import
 
32
#include <cppunit/extensions/HelperMacros.h>
 
33
#include <cppunit/TestCaller.h>
 
34
#include <cppunit/TestCase.h>
 
35
#include <cppunit/TestSuite.h>
 
36
 
 
37
#include <assert.h>
 
38
 
 
39
// Application import
 
40
#include "im/InstantMessaging.h"
 
41
 
 
42
/*
 
43
 * @file instantmessagingtest.h 
 
44
 * @brief       Regroups unitary tests related to the instant messagin module
 
45
 */
 
46
 
 
47
#ifndef _INSTANTMANAGER_TEST_
 
48
#define _INSTANTMANAGER_TEST_
 
49
 
 
50
class InstantMessagingTest : public CppUnit::TestCase {
 
51
 
 
52
   /**
 
53
     * Use cppunit library macros to add unit test the factory
 
54
     */
 
55
    CPPUNIT_TEST_SUITE( InstantMessagingTest );
 
56
        CPPUNIT_TEST (testSaveSingleMessage);
 
57
        CPPUNIT_TEST (testSaveMultipleMessage);
 
58
        CPPUNIT_TEST (testSplitMessage);
 
59
        CPPUNIT_TEST (testGenerateXmlUriList);
 
60
        CPPUNIT_TEST (testXmlUriListParsing);
 
61
        CPPUNIT_TEST (testGetTextArea);
 
62
        CPPUNIT_TEST (testGetUriListArea);
 
63
        CPPUNIT_TEST (testIllFormatedMessage);
 
64
    CPPUNIT_TEST_SUITE_END();
 
65
 
 
66
    public:
 
67
        InstantMessagingTest() : CppUnit::TestCase("Instant messaging module Tests") {}
 
68
        
 
69
        /*
 
70
         * Code factoring - Common resources can be initialized here.
 
71
         * This method is called by unitcpp before each test
 
72
         */
 
73
        void setUp();
 
74
 
 
75
        /*
 
76
         * Code factoring - Common resources can be released here.
 
77
         * This method is called by unitcpp after each test
 
78
         */
 
79
        inline void tearDown ();
 
80
 
 
81
        void testSaveSingleMessage ();
 
82
                
 
83
        void testSaveMultipleMessage ();
 
84
 
 
85
        void testSplitMessage ();
 
86
 
 
87
        void testGenerateXmlUriList ();
 
88
 
 
89
        void testXmlUriListParsing ();
 
90
 
 
91
        void testGetTextArea ();
 
92
 
 
93
        void testGetUriListArea ();
 
94
 
 
95
        void testIllFormatedMessage ();        
 
96
 
 
97
    private:
 
98
                sfl::InstantMessaging *_im;
 
99
};
 
100
 
 
101
/* Register our test module */
 
102
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(InstantMessagingTest, "InstantMessagingTest");
 
103
CPPUNIT_TEST_SUITE_REGISTRATION( InstantMessagingTest );
 
104
 
 
105
#endif