Merge pull request #7451 from josephlacey/datatables-update
[civicrm-core.git] / tests / phpunit / api / v3 / MappingFieldTest.php
CommitLineData
927f93e2
TM
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28require_once 'CiviTest/CiviUnitTestCase.php';
29
30
31/**
32 * Test APIv3 civicrm_mapping_field_* functions
33 *
34 * @package CiviCRM_APIv3
35 * @subpackage API_Contact
36 */
37class api_v3_MappingFieldTest extends CiviUnitTestCase {
38
39 protected $_apiversion = 3;
40 protected $params;
41 protected $id;
42 protected $_entity;
43
44 public $DBResetRequired = FALSE;
45
46 public function setUp() {
47 parent::setUp();
48 $this->useTransaction(TRUE);
49
50 $this->_entity = 'mapping_field';
ddfe3ced 51 $mappingID = $this->mappingCreate();
927f93e2 52 $this->params = array(
ddfe3ced 53 'mapping_id' => $mappingID->id,
927f93e2
TM
54 'name' => 'last_name',
55 'contact_type' => 'Individual',
56 'column_number' => 2,
57 'grouping' => 1,
58 );
59 }
60
61 public function testCreateMappingField() {
62 $result = $this->callAPIAndDocument($this->_entity, 'create', $this->params, __FUNCTION__, __FILE__);
63 $this->assertEquals(1, $result['count']);
64 $this->getAndCheck($this->params, $result['id'], $this->_entity);
65 $this->assertNotNull($result['values'][$result['id']]['id']);
66 }
67
68 public function testGetMappingField() {
69 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
70 $result = $this->callAPIAndDocument($this->_entity, 'get', $this->params, __FUNCTION__, __FILE__);
71 $this->assertEquals(1, $result['count']);
72 $this->assertNotNull($result['values'][$result['id']]['id']);
73 $this->callAPISuccess($this->_entity, 'delete', array('id' => $result['id']));
74 }
75
76 public function testDeleteMappingField() {
77 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
78 $deleteParams = array('id' => $result['id']);
79 $result = $this->callAPIAndDocument($this->_entity, 'delete', $deleteParams, __FUNCTION__, __FILE__);
80 $checkDeleted = $this->callAPISuccess($this->_entity, 'get', array());
81 $this->assertEquals(0, $checkDeleted['count']);
82 }
83
84 public function testDeleteMappingFieldInvalid() {
85 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
86 $deleteParams = array('id' => 600);
87 $result = $this->callAPIFailure($this->_entity, 'delete', $deleteParams);
88 $checkDeleted = $this->callAPISuccess($this->_entity, 'get', array());
89 $this->assertEquals(1, $checkDeleted['count']);
90 }
91
92}