summaryrefslogtreecommitdiffstats
path: root/tests/odometer_test.php
blob: 984bcbee380bd648f57f53ce2cf23df35d068a5a (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
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
<?php
/**
 * ezcGraphOdometerChartTest 
 * 
 * @package Graph
 * @version //autogen//
 * @subpackage Tests
 * @copyright Copyright (C) 2005-2009 eZ Systems AS. All rights reserved.
 * @license http://ez.no/licenses/new_bsd New BSD License
 */

require_once dirname( __FILE__ ) . '/test_case.php';

/**
 * Tests for ezcGraph class.
 * 
 * @package Graph
 * @subpackage Tests
 */
class ezcGraphOdometerChartTest extends ezcGraphTestCase
{
    protected $basePath;

    protected $tempDir;

	public static function suite()
	{
		return new PHPUnit_Framework_TestSuite( "ezcGraphOdometerChartTest" );
	}

    protected function setUp()
    {
        static $i = 0;
        if ( version_compare( phpversion(), '5.1.3', '<' ) )
        {
            $this->markTestSkipped( "These tests required atleast PHP 5.1.3" );
        }
        $this->tempDir = $this->createTempDir( __CLASS__ . sprintf( '_%03d_', ++$i ) ) . '/';
        $this->basePath = dirname( __FILE__ ) . '/data/';
    }

    protected function tearDown()
    {
        if ( !$this->hasFailed() )
        {
            $this->removeTempDir();
        }
    }

    public function testOdometerChartOptionsPropertyBorderColor()
    {
        $options = new ezcGraphOdometerChartOptions();

        $this->assertEquals(
            ezcGraphColor::create( '#000000' ),
            $options->borderColor,
            'Wrong default value for property borderColor in class ezcGraphOdometerChartOptions'
        );

        $options->borderColor = '#FF0000';
        $this->assertEquals(
            ezcGraphColor::create( '#FF0000' ),
            $options->borderColor,
            'Setting property value did not work for property borderColor in class ezcGraphOdometerChartOptions'
        );

        try
        {
            $options->borderColor = false;
        }
        catch ( ezcGraphUnknownColorDefinitionException $e )
        {
            return true;
        }

        $this->fail( 'Expected ezcGraphUnknownColorDefinitionException.' );
    }

    public function testOdometerChartOptionsPropertyBorderWidth()
    {
        $options = new ezcGraphOdometerChartOptions();

        $this->assertEquals(
            0,
            $options->borderWidth,
            'Wrong default value for property borderWidth in class ezcGraphOdometerChartOptions'
        );

        $options->borderWidth = 4;
        $this->assertEquals(
            4,
            $options->borderWidth,
            'Setting property value did not work for property borderWidth in class ezcGraphOdometerChartOptions'
        );

        try
        {
            $options->borderWidth = false;
        }
        catch ( ezcBaseValueException $e )
        {
            return true;
        }

        $this->fail( 'Expected ezcBaseValueException.' );
    }

    public function testOdometerChartOptionsPropertyStartColor()
    {
        $options = new ezcGraphOdometerChartOptions();

        $this->assertEquals(
            ezcGraphColor::create( '#4e9a06A0' ),
            $options->startColor,
            'Wrong default value for property startColor in class ezcGraphOdometerChartOptions'
        );

        $options->startColor = '#00FF00';
        $this->assertEquals(
            ezcGraphColor::create( '#00FF00' ),
            $options->startColor,
            'Setting property value did not work for property startColor in class ezcGraphOdometerChartOptions'
        );

        try
        {
            $options->startColor = false;
        }
        catch ( ezcGraphUnknownColorDefinitionException $e )
        {
            return true;
        }

        $this->fail( 'Expected ezcGraphUnknownColorDefinitionException.' );
    }

    public function testOdometerChartOptionsPropertyEndColor()
    {
        $options = new ezcGraphOdometerChartOptions();

        $this->assertEquals(
            ezcGraphColor::create( '#A40000A0' ),
            $options->endColor,
            'Wrong default value for property endColor in class ezcGraphOdometerChartOptions'
        );

        $options->endColor = '#FF0000';
        $this->assertEquals(
            ezcGraphColor::create( '#FF0000' ),
            $options->endColor,
            'Setting property value did not work for property endColor in class ezcGraphOdometerChartOptions'
        );

        try
        {
            $options->endColor = false;
        }
        catch ( ezcGraphUnknownColorDefinitionException $e )
        {
            return true;
        }

        $this->fail( 'Expected ezcGraphUnknownColorDefinitionException.' );
    }

    public function testOdometerChartOptionsPropertyMarkerWidth()
    {
        $options = new ezcGraphOdometerChartOptions();

        $this->assertEquals(
            2,
            $options->markerWidth,
            'Wrong default value for property markerWidth in class ezcGraphOdometerChartOptions'
        );

        $options->markerWidth = 4;
        $this->assertEquals(
            4,
            $options->markerWidth,
            'Setting property value did not work for property markerWidth in class ezcGraphOdometerChartOptions'
        );

        try
        {
            $options->markerWidth = false;
        }
        catch ( ezcBaseValueException $e )
        {
            return true;
        }

        $this->fail( 'Expected ezcBaseValueException.' );
    }

    public function testOdometerChartOptionsPropertyOdometerHeight()
    {
        $options = new ezcGraphOdometerChartOptions();

        $this->assertEquals(
            .5,
            $options->odometerHeight,
            'Wrong default value for property odometerHeight in class ezcGraphOdometerChartOptions'
        );

        $options->odometerHeight = .3;
        $this->assertEquals(
            .3,
            $options->odometerHeight,
            'Setting property value did not work for property odometerHeight in class ezcGraphOdometerChartOptions'
        );

        try
        {
            $options->odometerHeight = 1.2;
        }
        catch ( ezcBaseValueException $e )
        {
            return true;
        }

        $this->fail( 'Expected ezcBaseValueException.' );
    }

    public function testOdometerChartPropertyAxis()
    {
        $chart = new ezcGraphOdometerChart();

        $this->assertTrue(
            $chart->axis instanceof ezcGraphChartElementNumericAxis,
            'Wrong default value for property axis in class ezcGraphOdometerChart'
        );

        $chart->axis = new ezcGraphChartElementLabeledAxis();
        $this->assertTrue(
            $chart->axis instanceof ezcGraphChartElementLabeledAxis,
            'Setting property value did not work for property axis in class ezcGraphOdometerChart'
        );

        try
        {
            $chart->axis = true;
        }
        catch ( ezcBaseValueException $e )
        {
            return true;
        }

        $this->fail( 'Expected ezcBaseValueException.' );
    }

    public function testRenderOdometer()
    {
        $chart = new ezcGraphOdometerChart();
        $chart->data['sampleData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => 21, 'sample 3' => 324, 'sample 4' => 120, 'sample 5' => 1 ) );

        $mockedRenderer = $this->getMock( 'ezcGraphRenderer2d', array(
            'drawOdometer',
        ) );

        $mockedRenderer
            ->expects( $this->at( 0 ) )
            ->method( 'drawOdometer' )
            ->with(
                $this->equalTo( new ezcGraphBoundings( 0., 0., 500., 200. ), 1. ),
                $this->equalTo( $chart->axis ),
                $this->equalTo( $chart->options )
            )
            ->will(
                $this->returnValue( new ezcGraphBoundings(  0., 0., 500., 200. ) )
            );

        $chart->renderer = $mockedRenderer;

        $chart->render( 500, 200 );
    }

    public function testRenderOdometerMarker()
    {
        $chart = new ezcGraphOdometerChart();
        $chart->data['sampleData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => 21, 'sample 3' => 324, 'sample 4' => 1, 'sample 5' => 120 ) );

        $mockedRenderer = $this->getMock( 'ezcGraphRenderer2d', array(
            'drawOdometerMarker',
        ) );

        $mockedRenderer
            ->expects( $this->at( 0 ) )
            ->method( 'drawOdometerMarker' )
            ->with(
                $this->equalTo( new ezcGraphBoundings( 25., 50., 475., 150. ), 1. ),
                $this->equalTo( new ezcGraphCoordinate( .585, .0 ), .001 ),
                $this->equalTo( ezcGraph::NO_SYMBOL ),
                $this->equalTo( ezcGraphColor::create( '#3465A4' ) ),
                $this->equalTo( 2 )
            );

        $mockedRenderer
            ->expects( $this->at( 1 ) )
            ->method( 'drawOdometerMarker' )
            ->with(
                $this->equalTo( new ezcGraphBoundings( 25., 50., 475., 150. ), 1. ),
                $this->equalTo( new ezcGraphCoordinate( .0525, .0 ), .001 ),
                $this->equalTo( ezcGraph::NO_SYMBOL ),
                $this->equalTo( ezcGraphColor::create( '#4E9A06' ) ),
                $this->equalTo( 2 )
            );

        $mockedRenderer
            ->expects( $this->at( 2 ) )
            ->method( 'drawOdometerMarker' )
            ->with(
                $this->equalTo( new ezcGraphBoundings( 25., 50., 475., 150. ), 1. ),
                $this->equalTo( new ezcGraphCoordinate( .81, .0 ), .001 ),
                $this->equalTo( ezcGraph::NO_SYMBOL ),
                $this->equalTo( ezcGraphColor::create( '#CC0000' ) ),
                $this->equalTo( 2 )
            );

        $chart->renderer = $mockedRenderer;

        $chart->render( 500, 200 );
    }

    public function testAddMultipleDatasets()
    {
        $chart = new ezcGraphOdometerChart();

        try
        {
            $chart->data['sampleData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => 21, 'sample 3' => 324, 'sample 4' => 1, 'sample 5' => 120 ) );
            $chart->data['moreData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => 21, 'sample 3' => 324, 'sample 4' => 1, 'sample 5' => 120 ) );

            $chart->render( 500, 200 );
        }
        catch ( ezcGraphTooManyDataSetsExceptions $e )
        {
            return;
        }

        $this->fail( 'Expected ezcGraphTooManyDataSetsExceptions.' );
    }

    public function testNoDatasets()
    {
        $chart = new ezcGraphOdometerChart();

        try
        {
            $chart->render( 500, 200 );
        }
        catch ( ezcGraphNoDataException $e )
        {
            return;
        }

        $this->fail( 'Expected ezcGraphNoDataException.' );
    }

    public function testIncompatibleRenderer()
    {
        $chart = new ezcGraphOdometerChart();
        $chart->data['sampleData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => 21, 'sample 3' => 324, 'sample 4' => 1, 'sample 5' => 120 ) );

        try
        {
            $chart->renderer = new ezcGraphRenderer3d();
            $chart->render( 500, 200 );
        }
        catch ( ezcBaseValueException $e )
        {
            return;
        }

        $this->fail( 'Expected ezcBaseValueException.' );
    }

    public function testRenderCompleteOdometer()
    {
        $filename = $this->tempDir . __FUNCTION__ . '.svg';

        $chart = new ezcGraphOdometerChart();

        $chart->data['data'] = new ezcGraphArrayDataSet(
            array( 1, 7, 18 )
        );

        $chart->render( 500, 200, $filename );

        $this->compare(
            $filename,
            $this->basePath . 'compare/' . __CLASS__ . '_' . __FUNCTION__ . '.svg'
        );
    }

    public function testRenderCompleteOdometerWithDifferentOptions()
    {
        $filename = $this->tempDir . __FUNCTION__ . '.svg';

        $chart = new ezcGraphOdometerChart();

        $chart->data['data'] = new ezcGraphArrayDataSet(
            array( 1, 7, 18 )
        );

        $chart->options->borderWidth = 2;
        $chart->options->borderColor = '#2e3436';

        $chart->options->startColor = '#EEEEEC';
        $chart->options->endColor = '#A00000';

        $chart->options->markerWidth = 5;
        $chart->options->odometerHeight = .7;

        $chart->render( 300, 100, $filename );

        $this->compare(
            $filename,
            $this->basePath . 'compare/' . __CLASS__ . '_' . __FUNCTION__ . '.svg'
        );
    }

    public function testRenderCompleteOdometerToOutput()
    {
        $filename = $this->tempDir . __FUNCTION__ . '.svg';

        $chart = new ezcGraphOdometerChart();

        $chart->data['data'] = new ezcGraphArrayDataSet(
            array( 1, 7, 18 )
        );

        ob_start();
        // Suppress header already sent warning
        @$chart->renderToOutput( 500, 200 );
        file_put_contents( $filename, ob_get_clean() );

        $this->compare(
            $filename,
            $this->basePath . 'compare/' . __CLASS__ . '_' . __FUNCTION__ . '.svg'
        );
    }
}
?>
OpenPOWER on IntegriCloud