summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKore Nordmann <mail@kore-nordmann.de>2012-05-21 20:04:46 +0200
committerKore Nordmann <mail@kore-nordmann.de>2012-05-21 20:04:46 +0200
commit8a75af0c34a1c25787ede8d78199ee1304fbeb95 (patch)
treefde043490c5c119817c125d672498bbef0331d17
parent24e0164c1662c133404816445936e58d369f191e (diff)
downloadzetacomponents-graph-8a75af0c34a1c25787ede8d78199ee1304fbeb95.zip
zetacomponents-graph-8a75af0c34a1c25787ede8d78199ee1304fbeb95.tar.gz
Remove unused test case
This test case file was not used at all until the test suite was removed.
-rw-r--r--tests/axis_radar_renderer_test.php323
1 files changed, 0 insertions, 323 deletions
diff --git a/tests/axis_radar_renderer_test.php b/tests/axis_radar_renderer_test.php
deleted file mode 100644
index bae2c79..0000000
--- a/tests/axis_radar_renderer_test.php
+++ /dev/null
@@ -1,323 +0,0 @@
-<?php
-/**
- * ezcGraphAxisRadarRendererTest
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
- * @package Graph
- * @version //autogen//
- * @subpackage Tests
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
- */
-
-require_once dirname( __FILE__ ) . '/test_case.php';
-
-/**
- * Tests for ezcGraph class.
- *
- * @package Graph
- * @subpackage Tests
- */
-class ezcGraphAxisRadarRendererTest extends ezcGraphTestCase
-{
- protected $basePath;
-
- protected $renderer;
-
- protected $driver;
-
- protected $tempDir;
-
- public static function suite()
- {
- return new PHPUnit_Framework_TestSuite( __CLASS__ );
- }
-
- protected function setUp()
- {
- static $i = 0;
-
- if ( version_compare( phpversion(), '5.1.3', '<' ) )
- {
- $this->markTestSkipped( "This test requires PHP 5.1.3 or later." );
- }
-
- $this->tempDir = $this->createTempDir( __CLASS__ . sprintf( '_%03d_', ++$i ) ) . '/';
- $this->basePath = dirname( __FILE__ ) . '/data/';
- }
-
- protected function tearDown()
- {
- if ( !$this->hasFailed() )
- {
- $this->removeTempDir();
- }
- }
-
- public function testRenderAxisGrid()
- {
- $chart = new ezcGraphRadarChart();
- $chart->palette = new ezcGraphPaletteBlack();
- $chart->data['sampleData'] = new ezcGraphArrayDataSet( array( 'sample 1' => 234, 'sample 2' => 21, 'sample 3' => 324, 'sample 4' => 120 ) );
-
- $mockedRenderer = $this->getMock( 'ezcGraphRenderer2d', array(
- 'drawGridLine',
- ) );
-
- $mockedRenderer
- ->expects( $this->at( 0 ) )
- ->method( 'drawGridLine' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 1340., 100. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 1300., 80. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
- );
- $mockedRenderer
- ->expects( $this->at( 4 ) )
- ->method( 'drawGridLine' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 1370., 100. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 1300., 65. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
- );
-
-// $chart->renderer = $mockedRenderer;
- $chart->driver = new ezcGraphVerboseDriver();
-
- $chart->render( 500, 200 );
- }
-
- public function testRenderAxisGridZeroAxisSpace()
- {
- $chart = new ezcGraphRadarChart();
- $chart->palette = new ezcGraphPaletteBlack();
- $chart->axis->axisSpace = 0;
- $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(
- 'drawGridLine',
- ) );
-
- $mockedRenderer
- ->expects( $this->at( 0 ) )
- ->method( 'drawGridLine' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 180., 20. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 180., 180. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
- );
- $mockedRenderer
- ->expects( $this->at( 4 ) )
- ->method( 'drawGridLine' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 500., 20. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 500., 180. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
- );
-
- $chart->renderer = $mockedRenderer;
-
- $chart->render( 500, 200 );
- }
-
- public function testRenderAxisOuterGrid()
- {
- $chart = new ezcGraphRadarChart();
- $chart->palette = new ezcGraphPaletteBlack();
- $chart->axis->axisLabelRenderer->outerGrid = true;
- $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(
- 'drawGridLine',
- ) );
-
- $mockedRenderer
- ->expects( $this->at( 0 ) )
- ->method( 'drawGridLine' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 204., 0. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 204., 200. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
- );
- $mockedRenderer
- ->expects( $this->at( 4 ) )
- ->method( 'drawGridLine' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 460., 0. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 460., 200. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#888A85' ) )
- );
-
- $chart->renderer = $mockedRenderer;
-
- $chart->render( 500, 200 );
- }
-
- public function testRenderAxisSteps()
- {
- $chart = new ezcGraphRadarChart();
- $chart->palette = new ezcGraphPaletteBlack();
- $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(
- 'drawStepRadar',
- ) );
-
- $mockedRenderer
- ->expects( $this->at( 0 ) )
- ->method( 'drawStepRadar' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 204, 177. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 204, 183. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#EEEEEC' ) )
- );
- $mockedRenderer
- ->expects( $this->at( 4 ) )
- ->method( 'drawStepRadar' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 460., 177. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 460., 183. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#EEEEEC' ) )
- );
-
- $chart->renderer = $mockedRenderer;
-
- $chart->render( 500, 200 );
- }
-
- public function testRenderAxisNoOuterSteps()
- {
- $chart = new ezcGraphRadarChart();
- $chart->palette = new ezcGraphPaletteBlack();
- $chart->axis->axisLabelRenderer->outerStep = false;
- $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(
- 'drawStepRadar',
- ) );
-
- $mockedRenderer
- ->expects( $this->at( 0 ) )
- ->method( 'drawStepRadar' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 204., 177. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 204., 180. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#EEEEEC' ) )
- );
- $mockedRenderer
- ->expects( $this->at( 4 ) )
- ->method( 'drawStepRadar' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 460., 177. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 460., 180. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#EEEEEC' ) )
- );
-
- $chart->renderer = $mockedRenderer;
-
- $chart->render( 500, 200 );
- }
-
- public function testRenderAxisNoInnerSteps()
- {
- $chart = new ezcGraphRadarChart();
- $chart->palette = new ezcGraphPaletteBlack();
- $chart->axis->axisLabelRenderer->innerStep = false;
- $chart->axis->axisLabelRenderer->outerStep = true;
- $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(
- 'drawStepRadar',
- ) );
-
- $mockedRenderer
- ->expects( $this->at( 0 ) )
- ->method( 'drawStepRadar' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 204., 180. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 204., 183. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#EEEEEC' ) )
- );
- $mockedRenderer
- ->expects( $this->at( 4 ) )
- ->method( 'drawStepRadar' )
- ->with(
- $this->equalTo( new ezcGraphCoordinate( 460., 180. ), 1. ),
- $this->equalTo( new ezcGraphCoordinate( 460., 183. ), 1. ),
- $this->equalTo( ezcGraphColor::fromHex( '#EEEEEC' ) )
- );
-
- $chart->renderer = $mockedRenderer;
-
- $chart->render( 500, 200 );
- }
-
- public function testRenderAxisNoSteps()
- {
- $chart = new ezcGraphRadarChart();
- $chart->palette = new ezcGraphPaletteBlack();
- $chart->axis->axisLabelRenderer->innerStep = false;
- $chart->axis->axisLabelRenderer->outerStep = false;
- $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(
- 'drawStepRadar',
- ) );
-
- $mockedRenderer
- ->expects( $this->exactly( 0 ) )
- ->method( 'drawStepRadar' );
-
- $chart->renderer = $mockedRenderer;
-
- $chart->render( 500, 200 );
- }
-
- public function testRenderTextBoxes()
- {
- $chart = new ezcGraphRadarChart();
- $chart->palette = new ezcGraphPaletteBlack();
- $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(
- 'drawText',
- ) );
-
- $mockedRenderer
- ->expects( $this->at( 0 ) )
- ->method( 'drawText' )
- ->with(
- $this->equalTo( new ezcGraphBoundings( 142., 182., 202., 198. ), 1. ),
- $this->equalTo( 'sample 1' ),
- $this->equalTo( ezcGraph::TOP | ezcGraph::CENTER )
- );
- $mockedRenderer
- ->expects( $this->at( 4 ) )
- ->method( 'drawText' )
- ->with(
- $this->equalTo( new ezcGraphBoundings( 398., 182., 458., 198. ), 1. ),
- $this->equalTo( 'sample 5' ),
- $this->equalTo( ezcGraph::TOP | ezcGraph::CENTER )
- );
-
- $chart->renderer = $mockedRenderer;
-
- $chart->render( 500, 200 );
- }
-}
-?>
OpenPOWER on IntegriCloud