~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/test/sdptest.h

  • Committer: Package Import Robot
  • Author(s): Francois Marier
  • Date: 2011-11-25 13:24:12 UTC
  • mfrom: (4.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20111125132412-dc4qvhyosk74cd42
Tags: 1.0.1-4
Don't assume that arch:all packages will get built (closes: #649726)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright (C) 2004, 2005, 2006, 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
 
 
32
 
 
33
/*
 
34
 * @file sdptest.h
 
35
 * @brief       Regroups unitary tests related to the SDP session
 
36
 */
 
37
 
 
38
#ifndef _SDP_TEST_
 
39
#define _SDP_TEST_
 
40
 
 
41
// Cppunit import
 
42
#include <cppunit/extensions/HelperMacros.h>
 
43
#include <cppunit/TestCaller.h>
 
44
#include <cppunit/TestCase.h>
 
45
#include <cppunit/TestSuite.h>
 
46
 
 
47
#include <cassert>
 
48
 
 
49
#include <exception>
 
50
#include <string>
 
51
 
 
52
#include <pj/pool.h>
 
53
#include <pjmedia/sdp.h>
 
54
#include <pjmedia/sdp_neg.h>
 
55
#include <pjmedia/errno.h>
 
56
#include <pjsip/sip_transport.h>
 
57
#include <pjlib.h>
 
58
#include <pjsip_ua.h>
 
59
 
 
60
#include "global.h"
 
61
#include "sip/sdp.h"
 
62
#include "noncopyable.h"
 
63
 
 
64
class SdpSessionException : public std::exception {
 
65
    public:
 
66
        SdpSessionException(const std::string& str="") throw() : errstr(str) {}
 
67
 
 
68
        virtual ~SdpSessionException() throw() {}
 
69
 
 
70
        virtual const char *what() const throw() {
 
71
            std::string expt("SdpSession: SdpSessionException occured: ");
 
72
            expt.append(errstr);
 
73
            return expt.c_str();
 
74
        }
 
75
    private:
 
76
        std::string errstr;
 
77
};
 
78
 
 
79
 
 
80
class SDPTest : public CppUnit::TestCase {
 
81
 
 
82
        /**
 
83
          * Use cppunit library macros to add unit test the factory
 
84
          */
 
85
        CPPUNIT_TEST_SUITE(SDPTest);
 
86
        CPPUNIT_TEST(testInitialOfferLastCodec);
 
87
        CPPUNIT_TEST(testInitialAnswerLastCodec);
 
88
        CPPUNIT_TEST(testInitialOfferLastCodec);
 
89
        CPPUNIT_TEST(testInitialAnswerLastCodec);
 
90
        CPPUNIT_TEST(testReinvite);
 
91
        CPPUNIT_TEST_SUITE_END();
 
92
 
 
93
    public:
 
94
        SDPTest() : CppUnit::TestCase("SDP module Tests"), session_(0),
 
95
        testPool_(0), poolCache_() {}
 
96
 
 
97
        /**
 
98
         * Code factoring - Common resources can be initialized here.
 
99
         * This method is called by unitcpp before each test
 
100
         */
 
101
        void setUp();
 
102
 
 
103
        /**
 
104
         * Code factoring - Common resources can be released here.
 
105
         * This method is called by unitcpp after each test
 
106
         */
 
107
        void tearDown();
 
108
 
 
109
        void testInitialOfferFirstCodec();
 
110
 
 
111
        void testInitialAnswerFirstCodec();
 
112
 
 
113
        void testInitialOfferLastCodec();
 
114
 
 
115
        void testInitialAnswerLastCodec();
 
116
 
 
117
        void testReinvite();
 
118
 
 
119
    private:
 
120
        NON_COPYABLE(SDPTest);
 
121
 
 
122
        Sdp *session_;
 
123
        pj_pool_t *testPool_;
 
124
        pj_caching_pool poolCache_;
 
125
};
 
126
 
 
127
/* Register our test module */
 
128
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(SDPTest, "SDPTest");
 
129
CPPUNIT_TEST_SUITE_REGISTRATION(SDPTest);
 
130
 
 
131
#endif