summaryrefslogtreecommitdiff
path: root/cppunit/source/result/treswrapper.cxx
blob: 782b263688e7ba670d2161dd7faf58ec92c3fc71 (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/*************************************************************************
 *
 *  OpenOffice.org - a multi-platform office productivity suite
 *
 *  $RCSfile: treswrapper.cxx,v $
 *
 *  $Revision: 1.1 $
 *
 *  last change: $Author: lla $ $Date: 2008-02-27 16:26:03 $
 *
 *  The Contents of this file are made available subject to
 *  the terms of GNU Lesser General Public License Version 2.1.
 *
 *
 *    GNU Lesser General Public License Version 2.1
 *    =============================================
 *    Copyright 2005 by Sun Microsystems, Inc.
 *    901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *    This library is free software; you can redistribute it and/or
 *    modify it under the terms of the GNU Lesser General Public
 *    License version 2.1, 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
 *    Lesser General Public License for more details.
 *
 *    You should have received a copy of the GNU Lesser General Public
 *    License along with this library; if not, write to the Free Software
 *    Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *    MA  02111-1307  USA
 *
 ************************************************************************/

// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_cppunit.hxx"

#include <cstdarg>
#include <stdlib.h>
#include <stdio.h>

#include <sal/types.h>
#include <cppunit/Test.h>
#include "cppunit/autoregister/htestresult.h"
#include "cppunit/autoregister/callbackfunc_fktptr.h"
#include "cppunit/result/callbackfunc.h"
#include "cppunit/result/TestResult.h"

#include <cppunit/tagvalues.hxx>

namespace
{
    void TestResult_startTest(hTestResult _pResult, hTest _pTest)
    {
        CppUnit::TestResult* pResult = (CppUnit::TestResult*)_pResult;
        CppUnit::Test*       pTest   = (CppUnit::Test*)_pTest;

        std::string sName = pTest->getName();
        CallbackDispatch(0 /* NULL */, TAG_TYPE, SIGNAL_START_TEST, TAG_RESULT_PTR, _pResult, TAG_NODENAME, sName.c_str(), TAG_DONE);

        pResult->startTest(pTest);
    }

    void TestResult_endTest( hTestResult _pResult, hTest _pTest )
    {
        CppUnit::TestResult* pResult = (CppUnit::TestResult*)_pResult;
        CppUnit::Test*       pTest   = (CppUnit::Test*)_pTest;
        pResult->endTest(pTest);

        std::string sName = pTest->getName();
        CallbackDispatch(0 /* NULL */, TAG_TYPE, SIGNAL_END_TEST, TAG_RESULT_PTR, _pResult, TAG_NODENAME, sName.c_str(), TAG_DONE);
    }

// -----------------------------------------------------------------------------

    void TestResult_addFailure( hTestResult _pResult, hTest _pTest, hException _pException )
    {
        CppUnit::TestResult* pResult = (CppUnit::TestResult*)_pResult;
        CppUnit::Test*       pTest   = (CppUnit::Test*)_pTest;
        CppUnit::Exception*      pException = (CppUnit::Exception*)_pException;
        pResult->addFailure(pTest, pException);
    }

    void TestResult_addError( hTestResult _pResult, hTest _pTest, hException _pException )
    {
        CppUnit::TestResult* pResult = (CppUnit::TestResult*)_pResult;
        CppUnit::Test*       pTest   = (CppUnit::Test*)_pTest;
        CppUnit::Exception*      pException = (CppUnit::Exception*)_pException;
        pResult->addError(pTest, pException);
    }

    sal_Int32 TestResult_shouldStop(hTestResult _pResult)
    {
        CppUnit::TestResult* pResult = (CppUnit::TestResult*)_pResult;
        return pResult->shouldStop() == true ? 1 : 0;
    }

// -----------------------------------------------------------------------------
    void TestResult_addInfo( hTestResult _pResult, hTest _pTest, const char* _sInfo )
    {
        CppUnit::TestResult* pResult = (CppUnit::TestResult*)_pResult;
        CppUnit::Test*       pTest   = (CppUnit::Test*)_pTest;
        // CppUnit::Exception*      pException = (CppUnit::Exception*)_pException;
        pResult->addInfo(pTest, _sInfo);
    }
// -----------------------------------------------------------------------------
    void TestResult_enterNode( hTestResult _pResult, const char* _sNode )
    {
        // signalPushName(getName());
        // CallbackDispatch(NULL, TAG_TYPE, EXECUTION_PUSH_NAME, TAG_RESULT_PTR, _pResult, TAG_NODENAME, _sNode, TAG_DONE);

        CppUnit::TestResult* pResult = (CppUnit::TestResult*)_pResult;
        // CppUnit::Test*       pTest   = (CppUnit::Test*)_pTest;
        // CppUnit::Exception*      pException = (CppUnit::Exception*)_pException;
        pResult->enterNode(_sNode);
    }
    void TestResult_leaveNode( hTestResult _pResult, const char* _sNode )
    {
        CppUnit::TestResult* pResult = (CppUnit::TestResult*)_pResult;
        // CppUnit::Test*       pTest   = (CppUnit::Test*)_pTest;
        // CppUnit::Exception*      pException = (CppUnit::Exception*)_pException;
        pResult->leaveNode(_sNode);

        // CallbackDispatch(NULL, TAG_TYPE, EXECUTION_POP_NAME, TAG_RESULT_PTR, _pResult, TAG_DONE);
    }

// -----------------------------------------------------------------------------
    sal_Int32 TestResult_StarterA(TagHelper const& _aTagItems)
    {
        sal_Int32 nRetValue = 0;
        TagData nTagType     = _aTagItems.GetTagData(TAG_TYPE, 0);
        hTestResult pResult  = (hTestResult) _aTagItems.GetTagData(TAG_RESULT_PTR, 0 /* NULL */);
        CppUnit::Test* pTest = (CppUnit::Test*) _aTagItems.GetTagData(TAG_TEST_PTR, 0 /* NULL */);

        try
        {
            switch(nTagType)
            {
            case RESULT_START:
                TestResult_startTest(pResult, pTest);
                break;

            case RESULT_END:
                TestResult_endTest(pResult, pTest);
                break;

            case RESULT_ADD_FAILURE:
            {
                hException pException = (hException) _aTagItems.GetTagData(TAG_EXCEPTION, 0);
                TestResult_addFailure(pResult, pTest, pException);
                break;
            }

            case RESULT_ADD_ERROR:
            {
                hException pException = (hException) _aTagItems.GetTagData(TAG_EXCEPTION, 0);
                TestResult_addError(pResult, pTest, pException);
                break;
            }

            case RESULT_ADD_INFO:
            {
                const char* pInfo = (const char* ) _aTagItems.GetTagData(TAG_INFO, 0);
                TestResult_addInfo(pResult, pTest, pInfo);
                break;
            }

            case RESULT_ENTER_NODE:
            {
                const char* pNode = (const char* )_aTagItems.GetTagData(TAG_NODENAME, 0);
                TestResult_enterNode(pResult, pNode);
                break;
            }

            case RESULT_LEAVE_NODE:
            {
                const char* pNode = (const char* ) _aTagItems.GetTagData(TAG_NODENAME, 0);
                TestResult_leaveNode(pResult, pNode);
                break;
            }

            case RESULT_SHOULD_STOP:
                nRetValue = TestResult_shouldStop(pResult);
                break;

            default:
                fprintf(stderr, "TestResult_StarterA: Can't handle the tag type %8x\n", SAL_STATIC_CAST(int, nTagType));
                fflush(stderr);
                // throw std::exception(/*std::string("Unknown TYPE_TAG Exception.")*/);
            }
        }
        catch (std::exception &e)
        {
            fprintf(stderr, "TestResult_StarterA: Exception caught: %s\n", e.what());
            // throw e;
        }

        return nRetValue;
    }
} // namespace anonymous

// --------------------------------- Prototypes ---------------------------------

sal_Int32 SignalHandlerA( TagHelper const& _aTagItems );
sal_Int32 ExecutionA( TagHelper const& _aTagItems );

// -----------------------------------------------------------------------------
sal_Int32 CallbackDispatch(int x, ...)
{
    (void) x; // avoid warning

    // The idea behind TagItems are from the Amiga OS.
    // Due to the fact that the following code does not find my ok
    // I decide to wrote a simple helper
    //
    // struct TagItem *tags = (struct TagItem *)&x + 1;

    TagHelper aTagItems;

    // the following code could also be in a #define, so other functions could
    // use this, but at the moment this function a the only one.

    // FILL_TAGS(aTagItems, x);
    std::va_list  args;
    va_start( args, x );
    Tag nTag;
    do
    {
        nTag = va_arg(args, Tag);
        if (nTag != TAG_DONE)
        {
            TagData nValue = va_arg(args, TagData);
            // printf("Tag: %8x Value:%8x\n", nTag, nValue);
            aTagItems.insert(nTag, nValue);
        }
    } while (nTag != TAG_DONE);

    va_end   ( args );

    // FILL_TAGS:END

    // printf(".\n");

    sal_Int32 nRetValue = 0;
    Tag nPreTag = aTagItems.GetTagData(TAG_TYPE);
    if ( (nPreTag & TAG_RESULT) == TAG_RESULT)
    {
        nRetValue = TestResult_StarterA( aTagItems );
    }
    else if ((nPreTag & TAG_SIGNAL) == TAG_SIGNAL)
    {
        nRetValue = SignalHandlerA(aTagItems);
    }
    else if (( nPreTag & TAG_EXECUTION) == TAG_EXECUTION)
    {
        nRetValue = ExecutionA(aTagItems);
    }
    else
    {
        fprintf(stderr, "CallbackDispatch: First tag is unknown %8x\n", SAL_STATIC_CAST(int, nPreTag));
        // unknown TAG_TYPE
    }
    return nRetValue;
}