FilledSplineTest.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. namespace Test\CpChart;
  3. use Codeception\Test\Unit;
  4. use CpChart\Data;
  5. use CpChart\Image;
  6. use UnitTester;
  7. class FilledSplineTest extends Unit
  8. {
  9. /**
  10. * @var UnitTester
  11. */
  12. protected $tester;
  13. public function testChartRender()
  14. {
  15. $data = new Data();
  16. $data->setAxisName(0, "Strength");
  17. for ($i = 0; $i <= 720; $i = $i + 20) {
  18. $data->addPoints(cos(deg2rad($i)) * 100, "Probe 1");
  19. $data->addPoints(cos(deg2rad($i + 90)) * 60, "Probe 2");
  20. }
  21. $image = new Image(847, 304, $data);
  22. $image->drawGradientArea(0, 0, 847, 304, DIRECTION_VERTICAL, ["StartR" => 47, "StartG" => 47, "StartB" => 47, "EndR" => 17, "EndG" => 17, "EndB" => 17, "Alpha" => 100]);
  23. $image->drawGradientArea(0, 250, 847, 304, DIRECTION_VERTICAL, ["StartR" => 47, "StartG" => 47, "StartB" => 47, "EndR" => 27, "EndG" => 27, "EndB" => 27, "Alpha" => 100]);
  24. $image->drawLine(0, 249, 847, 249, ["R" => 0, "G" => 0, "B" => 0]);
  25. $image->drawLine(0, 250, 847, 250, ["R" => 70, "G" => 70, "B" => 70]);
  26. $image->drawRectangle(0, 0, 846, 303, ["R" => 204, "G" => 204, "B" => 204]);
  27. $image->setFontProperties(["FontName" => "pf_arma_five.ttf", "FontSize" => 6]);
  28. $image->drawText(423, 14, "Cyclic magnetic field strength", ["R" => 255, "G" => 255, "B" => 255, "Align" => TEXT_ALIGN_MIDDLEMIDDLE]);
  29. $image->setGraphArea(58, 27, 816, 228);
  30. $image->drawFilledRectangle(58, 27, 816, 228, ["R" => 0, "G" => 0, "B" => 0, "Dash" => true, "DashR" => 0, "DashG" => 51, "DashB" => 51, "BorderR" => 0, "BorderG" => 0, "BorderB" => 0]);
  31. $image->setShadow(true, ["X" => 1, "Y" => 1, "R" => 0, "G" => 0, "B" => 0, "Alpha" => 20]);
  32. $image->setFontProperties(["R" => 255, "G" => 255, "B" => 255]);
  33. $ScaleSettings = ["XMargin" => 4, "DrawSubTicks" => true, "GridR" => 255, "GridG" => 255, "GridB" => 255, "AxisR" => 255, "AxisG" => 255, "AxisB" => 255, "GridAlpha" => 30, "CycleBackground" => true];
  34. $image->drawScale($ScaleSettings);
  35. $image->drawFilledSplineChart();
  36. $BoundsSettings = ["MaxDisplayR" => 237, "MaxDisplayG" => 23, "MaxDisplayB" => 48, "MinDisplayR" => 23, "MinDisplayG" => 144, "MinDisplayB" => 237];
  37. $image->writeBounds(BOUND_BOTH, $BoundsSettings);
  38. $image->drawThreshold(0, ["WriteCaption" => true]);
  39. $image->setFontProperties(["R" => 255, "G" => 255, "B" => 255]);
  40. $image->drawLegend(560, 266, ["Style" => LEGEND_NOBORDER]);
  41. $settings = ["R" => 188, "G" => 224, "B" => 46, "Align" => TEXT_ALIGN_BOTTOMLEFT];
  42. $image->drawText(620, 270, "Max : " . ceil($data->getMax("Probe 1")), $settings);
  43. $image->drawText(680, 270, "Min : " . ceil($data->getMin("Probe 1")), $settings);
  44. $image->drawText(740, 270, "Avg : " . ceil($data->getSerieAverage("Probe 1")), $settings);
  45. $settings = ["R" => 224, "G" => 100, "B" => 46, "Align" => TEXT_ALIGN_BOTTOMLEFT];
  46. $image->drawText(620, 283, "Max : " . ceil($data->getMax("Probe 2")), $settings);
  47. $image->drawText(680, 283, "Min : " . ceil($data->getMin("Probe 2")), $settings);
  48. $image->drawText(740, 283, "Avg : " . ceil($data->getSerieAverage("Probe 2")), $settings);
  49. $filename = $this->tester->getOutputPathForChart('drawFilledSplineChart.png');
  50. $image->render($filename);
  51. $image->stroke();
  52. $this->tester->seeFileFound($filename);
  53. }
  54. }