Merge pull request #8119 from eileenmcnaughton/CRM-18303
[civicrm-core.git] / tests / phpunit / CRM / Contact / BAO / GroupTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
6a488035
TO
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
6a488035
TO
28/**
29 * Test class for CRM_Contact_BAO_Group BAO
30 *
6c6e6187 31 * @package CiviCRM
acb109b7 32 * @group headless
6a488035
TO
33 */
34class CRM_Contact_BAO_GroupTest extends CiviUnitTestCase {
35
36 /**
37 * Sets up the fixture, for example, opens a network connection.
9b1e4469 38 *
6a488035 39 * This method is called before a test is executed.
6a488035
TO
40 */
41 protected function setUp() {
42 parent::setUp();
43 }
44
45 /**
46 * Tears down the fixture, for example, closes a network connection.
9b1e4469 47 *
6a488035 48 * This method is called after a test is executed.
6a488035 49 */
959528d2
EM
50 protected function tearDown() {
51 $this->quickCleanup(array('civicrm_mapping_field', 'civicrm_mapping', 'civicrm_group', 'civicrm_saved_search'));
52 }
6a488035
TO
53
54 /**
9b1e4469 55 * Test case for add( ).
6a488035 56 */
00be9182 57 public function testAddSimple() {
6a488035
TO
58
59 $checkParams = $params = array(
60 'title' => 'Group Uno',
61 'description' => 'Group One',
62 'visibility' => 'User and User Admin Only',
63 'is_active' => 1,
64 );
65
66 $group = CRM_Contact_BAO_Group::create($params);
67
68 $this->assertDBCompareValues(
69 'CRM_Contact_DAO_Group',
70 array('id' => $group->id),
71 $checkParams
72 );
73 }
74
9b1e4469 75 /**
76 * Test adding a smart group.
77 */
00be9182 78 public function testAddSmart() {
6a488035
TO
79
80 $checkParams = $params = array(
81 'title' => 'Group Dos',
82 'description' => 'Group Two',
83 'visibility' => 'User and User Admin Only',
84 'is_active' => 1,
85 'formValues' => array('sort_name' => 'Adams'),
86 );
87
88 $group = CRM_Contact_BAO_Group::createSmartGroup($params);
89
90 unset($checkParams['formValues']);
91 $this->assertDBCompareValues(
92 'CRM_Contact_DAO_Group',
93 array('id' => $group->id),
94 $checkParams
95 );
96 }
959528d2
EM
97
98 /**
9b1e4469 99 * Load all sql data sets & return an array of saved searches.
100 *
959528d2
EM
101 * @return array
102 */
00be9182 103 public function dataProviderSavedSearch() {
959528d2
EM
104
105 $this->loadSavedSearches();
106 $results = CRM_Core_DAO::singleValueQuery('SELECT GROUP_CONCAT(id) FROM civicrm_group WHERE saved_search_id IS NOT NULL');
107 return array(explode(',', $results));
108 }
109
110 /**
eceb18cc 111 * Load saved search sql files into the DB.
959528d2 112 */
00be9182 113 public function loadSavedSearches() {
959528d2 114 foreach (glob(dirname(__FILE__) . "/SavedSearchDataSets/*.sql") as $file) {
e95fbe72 115 CRM_Utils_File::sourceSQLFile(NULL, $file);
959528d2
EM
116 }
117 }
118
119 /**
9b1e4469 120 * Check we can load smart groups based on config from 'real DBs' without fatal errors.
121 *
122 * Note that we are only testing lack of errors at this stage
959528d2
EM
123 * @todo - for some reason the data was getting truncated from the group table using dataprovider - would be preferable to get that working
124 * //@notdataProvider dataProviderSavedSearch
125 * //@notparam integer $groupID
126 *
127 * To add to this dataset do
128 *
129 * SET @groupID = x;
130 * SELECT mapping_id FROM civicrm_group g LEFT JOIN civicrm_saved_search s ON saved_search_id = s.id WHERE g.id = @groupID INTO @mappingID;
959528d2
EM
131 * SELECT * FROM civicrm_mapping WHERE id = @mappingID;
132 * SELECT * FROM civicrm_mapping_field WHERE mapping_id = @mappingID;
133 * SELECT * FROM civicrm_saved_search WHERE mapping_id = @mappingID;
134 * SELECT g.* FROM civicrm_saved_search s LEFT JOIN civicrm_group g ON g.saved_search_id = s.id WHERE mapping_id = @mappingID;
135 *
a455be55 136 * Copy the output to a single sql file and place in the SavedSearchDataSets folder - use the group number as the prefix.
959528d2
EM
137 * Try to keep as much of the real world irregular glory as you can! Don't change the table ids to be number 1 as this can hide errors
138 */
00be9182 139 public function testGroupData() {
959528d2
EM
140 $groups = $this->dataProviderSavedSearch();
141 foreach ($groups[0] as $groupID) {
142 $group = new CRM_Contact_BAO_Group();
143 $group->id = $groupID;
144 $group->find(TRUE);
a455be55 145
959528d2
EM
146 CRM_Contact_BAO_GroupContactCache::load($group, TRUE);
147 }
148 }
96025800 149
6a488035 150}