Prettier JQuery tables
[contractdashboard.git] / media / unit_testing / unit_test.js
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
/*
 * File:        unit_test.js
 * Version:     0.0.1
 * CVS:         $Id$
 * Description: Unit test framework
 * Author:      Allan Jardine (www.sprymedia.co.uk)
 * Created:     Sun Mar  8 22:02:49 GMT 2009
 * Modified:    $Date$ by $Author$
 * Language:    Javascript
 * License:     GPL v2 or BSD 3 point style
 * Project:     DataTables
 * Contact:     allan.jardine@sprymedia.co.uk
 * 
 * Copyright 2009 Allan Jardine, all rights reserved.
 *
 * Description:
 * This is a javascript library suitable for use as a unit testing framework. Employing a queuing
 * mechanisim to take account of async events in javascript, this library will communicates with
 * a controller frame (to report individual test status).
 * 
 */
 
 
var oTest = {
        /* Block further tests from occuring - might be end of tests or due to async wait */
        bBlock: false,
        
        /* Number of times to try retesting for a blocking test */
        iReTestLimit: 20,
        
        /* Amount of time to wait between trying for an async test */
        iReTestDelay: 150,
        
        /* End tests - external control */
        bEnd: false,
        
        /* Internal variables */
        _aoQueue: [],
        _iReTest: 0,
        _bFinished: false,
        
        
        /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
         * Recommened public functions
         */
        
        /*
         * Function: fnTest
         * Purpose:  Add a test to the queue
         * Returns:  -
         * Inputs:   string:sMessage - name of the test
         *           function:fnTest - function which will be evaludated to get the test result
         */
        "fnTest": function ( sMessage, fnSetup, fnTest )
        {
                this._aoQueue.push( {
                        "sMessage": sMessage,
                        "fnSetup": fnSetup,
                        "fnTest": fnTest,
                        "bPoll": false
                } );
                this._fnNext();
        },
        
        /*
         * Function: fnWaitTest
         * Purpose:  Add a test to the queue which has a re-test cycle
         * Returns:  -
         * Inputs:   string:sMessage - name of the test
         *           function:fnTest - function which will be evaludated to get the test result
         */
        "fnWaitTest": function ( sMessage, fnSetup, fnTest )
        {
                this._aoQueue.push( {
                        "sMessage": sMessage,
                        "fnSetup": fnSetup,
                        "fnTest": fnTest,
                        "bPoll": true
                } );
                this._fnNext();
        },
        
        /*
         * Function: fnStart
         * Purpose:  Indicate that this is a new unit and what it is testing (message to end user)
         * Returns:  -
         * Inputs:   string:sMessage - message to give to the user about this unit
         */
        "fnStart": function ( sMessage )
        {
                window.parent.controller.fnStartMessage( sMessage );
        },
        
        /*
         * Function: fnComplete
         * Purpose:  Tell the controller that we are all done here
         * Returns:  -
         * Inputs:   -
         */
        "fnComplete": function ()
        {
                this._bFinished = true;
                this._fnNext();
        },
        
        /*
         * Function: fnCookieDestroy
         * Purpose:  Destroy a cookie of a given name
         * Returns:  -
         * Inputs:   -
         */
        "fnCookieDestroy": function ( oTable )
        {
                var sName = oTable.fnSettings().sCookiePrefix+oTable.fnSettings().sInstance;
                var aParts = window.location.pathname.split('/');
                var sNameFile = sName + '_' + aParts.pop().replace(/[\/:]/g,"").toLowerCase();
                document.cookie = sNameFile+"=; expires=Thu, 01-Jan-1970 00:00:01 GMT; path="+
                        aParts.join('/') + "/";
        },
        
        
        
        /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
         * Internal functions
         */
        
        
        "_fnReTest": function ( oTestInfo )
        {
                var bResult = oTestInfo.fnTest( );
                if ( bResult )
                {
                        /* Test passed on retry */
                        this._fnResult( true );
                        this._fnNext();
                }
                else
                {
                        if ( this._iReTest < this.iReTestLimit )
                        {
                                this._iReTest++;
                                setTimeout( function() {
                                        oTest._fnReTest( oTestInfo );
                                }, this.iReTestDelay );
                        }
                        else
                        {
                                this._fnResult( false );
                        }
                }
        },
        
        "_fnNext": function ()
        {
                if ( this.bEnd )
                {
                        return;
                }
                
                if ( !this.bBlock && this._aoQueue.length > 0 )
                {
                        var oNextTest = this._aoQueue.shift();
                        window.parent.controller.fnTestStart( oNextTest.sMessage );
                        this.bBlock = true;
                        
                        if ( typeof oNextTest.fnSetup == 'function' )
                        {
                                oNextTest.fnSetup( );
                        }
                        var bResult = oNextTest.fnTest( );
                        //bResult = false;
                        
                        if ( oNextTest.bPoll )
                        {
                                if ( bResult )
                                {
                                        this._fnResult( true );
                                        this._fnNext();
                                }
                                else
                                {
                                        _iReTest = 0;
                                        setTimeout( function() {
                                                oTest._fnReTest( oNextTest );
                                        }, this.iReTestDelay );
                                }
                        }
                        else
                        {
                                this._fnResult( bResult );
                                this._fnNext();
                        }
                }
                else if ( !this.bBlock && this._aoQueue.length == 0 && this._bFinished )
                {
                        window.parent.controller.fnUnitComplete( );
                }
        },
        
        "_fnResult": function ( b )
        {
                window.parent.controller.fnTestResult( b );
                this.bBlock = false;
                if ( !b )
                {
                        this.bEnd = true;
                }
        }
};
 
 
var oDispacher = {
        "click": function ( nNode, oSpecial )
        {
                var evt = this.fnCreateEvent( 'click', nNode, oSpecial );
                if ( nNode.dispatchEvent )
                        nNode.dispatchEvent(evt);
                else
                        nNode.fireEvent('onclick', evt);
        },
        
        "change": function ( nNode )
        {
                var evt = this.fnCreateEvent( 'change', nNode );
                if ( nNode.dispatchEvent )
                nNode.dispatchEvent(evt);
                else
                        nNode.fireEvent('onchange', evt);
        },
        
        
        /*
         * Function: fnCreateEvent
         * Purpose:  Create an event oject based on the type to trigger an event - x-platform
         * Returns:  event:evt
         * Inputs:   string:sType - type of event
         *           node:nTarget - target node of the event
         */
        fnCreateEvent: function( sType, nTarget, oSpecial )
        {
                var evt = null;
                var oTargetPos = this._fnGetPos( nTarget );
                var sTypeGroup = this._fnEventTypeGroup( sType );
                if ( typeof oSpecial == 'undefined' )
                {
                        oSpecial = {};
                }
                
                var ctrlKey = false;
                var altKey = false;
                var shiftKey = (typeof oSpecial.shift != 'undefined') ? oSpecial.shift : false;
                var metaKey = false;
                var button = false;
                
                if ( document.createEvent )
                {
                        switch ( sTypeGroup )
                        {
                                case 'mouse':
                                        evt = document.createEvent( "MouseEvents" );
                                        evt.initMouseEvent( sType, true, true, window, 0, oTargetPos[0], oTargetPos[1], 
                                                oTargetPos[0], oTargetPos[1], ctrlKey, altKey, shiftKey, 
                                                metaKey, button, null );
                                        break;
                                
                                case 'html':
                                        evt = document.createEvent( "HTMLEvents" );
                                        evt.initEvent( sType, true, true );
                                        break;
                                        
                                case 'ui':
                                        evt = document.createEvent( "UIEvents" );
                                        evt.initUIEvent( sType, true, true, window, 0 );
                                        break;
                                
                                default:
                                        break;
                        }
                }
                else if ( document.createEventObject )
                {
                        switch ( sTypeGroup )
                        {
                                case 'mouse':
                                        evt = document.createEventObject();
                                        evt.screenX = oTargetPos[0];
                                        evt.screenX = oTargetPos[1];
                                        evt.clientX = oTargetPos[0];
                                        evt.clientY = oTargetPos[1];
                                        evt.ctrlKey = ctrlKey;
                                        evt.altKey = altKey;
                                        evt.shiftKey = shiftKey;
                                        evt.metaKey = metaKey;
                                        evt.button = button;
                                        evt.relatedTarget = null;
                                        break;
                                
                                case 'html':
                                        /* fall through to basic event object */
                                        
                                case 'ui':
                                        evt = document.createEventObject();
                                        break;
                                
                                default:
                                        break;
                        }
                }
                
                return evt;
        },
        
        /* 
         * Function: DesignCore.fnGetPos
         * Purpose:  Get the position of an element on the page
         * Returns:  array[ 0-int:left, 1-int:top ]
         * Inputs:   node:obj - node to analyse
         */
        _fnGetPos: function ( obj ) 
        {
                var curleft = 0;
                var curtop = 0;
                
                if (obj.offsetParent) 
                {
                        curleft = obj.offsetLeft;
                        curtop = obj.offsetTop;
                        while (obj = obj.offsetParent ) 
                        {
                                curleft += obj.offsetLeft;
                                curtop += obj.offsetTop;
                        }
                }
                return [curleft,curtop];
        },
        
        
        /*
         * Function: _fnEventTypeGroup
         * Purpose:  Group the event types as per w3c groupings
         * Returns:  -
         * Inputs:   string:sType
         */
        _fnEventTypeGroup: function ( sType )
        {
                switch ( sType )
                {
                        case 'click':
                        case 'dblclick':
                        case 'mousedown':
                        case 'mousemove':
                        case 'mouseout':
                        case 'mouseover':
                        case 'mouseup':
                                return 'mouse';
                        
                        case 'change':
                        case 'focus':
                        case 'blur':
                        case 'select':
                        case 'submit':
                                return 'html';
                                
                        case 'keydown':
                        case 'keypress':
                        case 'keyup':
                        case 'load':
                        case 'unload':
                                return 'ui';
                        
                        default:
                                return 'custom';
                }
        }
}
 
 
var oSession =