PageRenderTime 25ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/app/protected/tests/common/PhpUnitServiceUtil.php

https://bitbucket.org/andreustimm/zurmo
PHP | 91 lines | 48 code | 4 blank | 39 comment | 4 complexity | b2bd434070c988b11fe792bb93d3d606 MD5 | raw file
Possible License(s): BSD-3-Clause, GPL-2.0, LGPL-3.0, LGPL-2.1, BSD-2-Clause
  1. <?php
  2. /*********************************************************************************
  3. * Zurmo is a customer relationship management program developed by
  4. * Zurmo, Inc. Copyright (C) 2015 Zurmo Inc.
  5. *
  6. * Zurmo is free software; you can redistribute it and/or modify it under
  7. * the terms of the GNU Affero General Public License version 3 as published by the
  8. * Free Software Foundation with the addition of the following permission added
  9. * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
  10. * IN WHICH THE COPYRIGHT IS OWNED BY ZURMO, ZURMO DISCLAIMS THE WARRANTY
  11. * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
  12. *
  13. * Zurmo is distributed in the hope that it will be useful, but WITHOUT
  14. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  15. * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License along with
  19. * this program; if not, see http://www.gnu.org/licenses or write to the Free
  20. * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  21. * 02110-1301 USA.
  22. *
  23. * You can contact Zurmo, Inc. with a mailing address at 27 North Wacker Drive
  24. * Suite 370 Chicago, IL 60606. or at email address contact@zurmo.com.
  25. *
  26. * The interactive user interfaces in original and modified versions
  27. * of this program must display Appropriate Legal Notices, as required under
  28. * Section 5 of the GNU Affero General Public License version 3.
  29. *
  30. * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
  31. * these Appropriate Legal Notices must retain the display of the Zurmo
  32. * logo and Zurmo copyright notice. If the display of the logo is not reasonably
  33. * feasible for technical reasons, the Appropriate Legal Notices must display the words
  34. * "Copyright Zurmo Inc. 2015. All rights reserved".
  35. ********************************************************************************/
  36. class PhpUnitServiceUtil
  37. {
  38. // Installed version must be equal or higher then phpUnitMinimumVersion
  39. public static $phpUnitMinimumVersion = '3.5';
  40. // Installed version must be less then phpUnitMaximumVersion
  41. public static $phpUnitMaximumVersion = '4.5.0';
  42. public static function checkVersion()
  43. {
  44. try
  45. {
  46. // For PHPUnit < 3.7
  47. if (is_file('PHPUnit/Runner/Version.php') && is_readable('PHPUnit/Runner/Version.php'))
  48. {
  49. include_once 'PHPUnit/Runner/Version.php';
  50. $actualVersion = PHPUnit_Runner_Version::id();
  51. }
  52. // For PHPUnit > 3.7
  53. elseif (method_exists('PHPUnit_Runner_Version', 'id'))
  54. {
  55. $actualVersion = PHPUnit_Runner_Version::id();
  56. }
  57. else
  58. {
  59. // PHPUnit probably is not installed.
  60. throw new Exception();
  61. }
  62. if (version_compare($actualVersion, self::$phpUnitMinimumVersion) < 0)
  63. {
  64. echo "\n Zurmo tests are not working with PHPUnit {$actualVersion} \n";
  65. echo "PHPUnit version must be equal and higher then PHPUnit " . self::$phpUnitMinimumVersion . " and ";
  66. echo "lower then " .self::$phpUnitMaximumVersion . "\n";
  67. echo "Please upgrade your PHPUnit version \n\n";
  68. exit;
  69. }
  70. if (version_compare($actualVersion, self::$phpUnitMaximumVersion) >= 0)
  71. {
  72. echo "\n Zurmo tests are not working with PHPUnit {$actualVersion} \n";
  73. echo "PHPUnit version must be equal and higher then PHPUnit " . self::$phpUnitMinimumVersion . " and ";
  74. echo "lower then " .self::$phpUnitMaximumVersion . "\n";
  75. echo "Please downgrade your PHPUnit version \n\n";
  76. exit;
  77. }
  78. return;
  79. }
  80. catch (Exception $e)
  81. {
  82. echo "You must install PHPUnit, before running tests";
  83. exit;
  84. }
  85. }
  86. }
  87. ?>