Merge pull request #4940 from mlutfy/crm15824
[civicrm-core.git] / tests / phpunit / CiviTest / CiviCaseTestCase.php
CommitLineData
1d8a8d12
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
1d8a8d12
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 * Class CiviReportTestCase
32 */
33class CiviCaseTestCase extends CiviUnitTestCase {
34
bb68492c
TO
35 /**
36 * @var string symbolic-name
37 */
38 protected $caseType;
39
1d8a8d12 40 protected $caseTypeId;
bb68492c 41
1d8a8d12 42 protected $caseStatusGroup;
bb68492c 43
1d8a8d12 44 protected $optionValues;
bb68492c 45
1d8a8d12
TO
46 protected $_loggedInUser;
47
48 public function setUp() {
49 parent::setUp();
bb68492c
TO
50
51 /** @var $hooks \CRM_Utils_Hook_UnitTests */
52 $hooks = \CRM_Utils_Hook::singleton();
53 $hooks->setHook('civicrm_caseTypes', array($this, 'hook_caseTypes'));
54 \CRM_Case_XMLRepository::singleton(TRUE);
32f1c917 55 \CRM_Case_XMLProcessor::flushStaticCaches();
bb68492c 56
1d8a8d12
TO
57 // CRM-9404 - set-up is a bit cumbersome but had to put something in place to set up activity types & case types
58 //. Using XML was causing breakage as id numbers were changing over time
59 // & was really hard to troubleshoot as involved truncating option_value table to mitigate this & not leaving DB in a
60 // state where tests could run afterwards without re-loading.
61 $this->caseStatusGroup = $this->callAPISuccess('option_group', 'get', array(
62 'name' => 'case_status',
21dfd5f5 63 'format.only_id' => 1,
1d8a8d12
TO
64 )
65 );
66 $optionValues = array(
67 'Medical evaluation' => 'Medical evaluation',
68 'Mental health evaluation' => "Mental health evaluation",
69 'Secure temporary housing' => 'Secure temporary housing',
70 'Long-term housing plan' => 'Long-term housing plan',
71 'ADC referral' => 'ADC referral',
72 'Income and benefits stabilization' => 'Income and benefits stabilization',
73 );
74 foreach ($optionValues as $name => $label) {
75 $activityTypes = $this->callAPISuccess('option_value', 'Create', array(
76 'option_group_id' => 2,
77 'name' => $name,
78 'label' => $label,
79 'component_id' => 7,
80 ));
81 // store for cleanup
82 $this->optionValues[] = $activityTypes['id'];
83 }
bb68492c 84
82de141d
TO
85 // We used to be inconsistent about "HousingSupport" vs "housing_support".
86 // Now, the rule is simply: use the "name" from "civicrm_case_type.name".
87 $this->caseType = 'housing_support';
1d8a8d12
TO
88 $this->caseTypeId = 1;
89 $this->tablesToTruncate = array(
90 'civicrm_activity',
91 'civicrm_contact',
92 'civicrm_custom_group',
93 'civicrm_custom_field',
94 'civicrm_case',
95 'civicrm_case_contact',
96 'civicrm_case_activity',
97 'civicrm_case_type',
98 'civicrm_activity_contact',
10ffff26 99 'civicrm_managed',
1d8a8d12
TO
100 'civicrm_relationship',
101 'civicrm_relationship_type',
102 );
103
104 $this->quickCleanup($this->tablesToTruncate);
105
106 $this->loadAllFixtures();
107
108 // enable the default custom templates for the case type xml files
109 $this->customDirectories(array('template_path' => TRUE));
110
111 // case is not enabled by default
112 $enableResult = CRM_Core_BAO_ConfigSetting::enableComponent('CiviCase');
113 $this->assertTrue($enableResult, 'Cannot enable CiviCase in line ' . __LINE__);
114
115 // create a logged in USER since the code references it for source_contact_id
116 $this->createLoggedInUser();
117 $session = CRM_Core_Session::singleton();
118 $this->_loggedInUser = $session->get('userID');
119 /// note that activityType options are cached by the FULL set of options you pass in
120 // ie. because Activity api includes campaign in it's call cache is not flushed unless
121 // included in this call. Also note flush function doesn't work on this property as it sets to null not empty array
122 CRM_Core_PseudoConstant::activityType(TRUE, TRUE, TRUE, 'name', TRUE);
123 }
124
125 /**
126 * Tears down the fixture, for example, closes a network connection.
127 * This method is called after a test is executed.
1d8a8d12 128 */
00be9182 129 public function tearDown() {
1d8a8d12
TO
130 $this->quickCleanup($this->tablesToTruncate, TRUE);
131 $this->customDirectories(array('template_path' => FALSE));
bb68492c
TO
132 CRM_Case_XMLRepository::singleton(TRUE);
133 }
134
135 /**
136 * Subclasses may override this if they want to be explicit about the case-type definition.
137 *
138 * @param $caseTypes
139 * @see CRM_Utils_Hook::caseTypes
140 */
00be9182 141 public function hook_caseTypes(&$caseTypes) {
1d8a8d12 142 }
ef10e0b5 143}