Merge pull request #16469 from civicrm/5.22
[civicrm-core.git] / tests / phpunit / api / v3 / UtilsTest.php
index 6c0de52a73243aaee0ba6bdb45f4cee7c0490c99..f11fa585ccb053b54d26d1d9efba7b00bb562308 100644 (file)
@@ -1,27 +1,11 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 5                                                  |
- +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2020                                |
- +--------------------------------------------------------------------+
- | This file is a part of CiviCRM.                                    |
- |                                                                    |
- | CiviCRM is free software; you can copy, modify, and distribute it  |
- | under the terms of the GNU Affero General Public License           |
- | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
- |                                                                    |
- | CiviCRM is distributed in the hope that it will be useful, but     |
- | WITHOUT ANY WARRANTY; without even the implied warranty of         |
- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               |
- | See the GNU Affero General Public License for more details.        |
+ | Copyright CiviCRM LLC. All rights reserved.                        |
  |                                                                    |
- | You should have received a copy of the GNU Affero General Public   |
- | License and the CiviCRM Licensing Exception along                  |
- | with this program; if not, contact CiviCRM LLC                     |
- | at info[AT]civicrm[DOT]org. If you have questions about the        |
- | GNU Affero General Public License or the licensing of CiviCRM,     |
- | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
+ | This work is published under the GNU AGPLv3 license with some      |
+ | permitted exceptions and without any warranty. For full license    |
+ | and copyright information, see https://civicrm.org/licensing       |
  +--------------------------------------------------------------------+
  */
 
@@ -444,6 +428,8 @@ class api_v3_UtilsTest extends CiviUnitTestCase {
 
   /**
    * CRM-20892 Add Tests of new timestamp checking function
+   *
+   * @throws \CRM_Core_Exception
    */
   public function testTimeStampChecking() {
     CRM_Core_DAO::executeQuery("INSERT INTO civicrm_mailing (id, modified_date) VALUES (25, '2016-06-30 12:52:52')");
@@ -453,4 +439,24 @@ class api_v3_UtilsTest extends CiviUnitTestCase {
     $this->callAPISuccess('Mailing', 'delete', ['id' => 25]);
   }
 
+  /**
+   * Test that the foreign key constraint test correctly interprets pseudoconstants.
+   *
+   * @throws \CRM_Core_Exception
+   * @throws \API_Exception
+   */
+  public function testKeyConstraintCheck() {
+    $fieldInfo = $this->callAPISuccess('Contribution', 'getfields', [])['values']['financial_type_id'];
+    _civicrm_api3_validate_constraint(1, 'financial_type_id', $fieldInfo, 'Contribution');
+    _civicrm_api3_validate_constraint('Donation', 'financial_type_id', $fieldInfo, 'Contribution');
+    try {
+      _civicrm_api3_validate_constraint('Blah', 'financial_type_id', $fieldInfo, 'Contribution');
+    }
+    catch (API_Exception $e) {
+      $this->assertEquals("'Blah' is not a valid option for field financial_type_id", $e->getMessage());
+      return;
+    }
+    $this->fail('Last function call should have thrown an exception');
+  }
+
 }