Merge pull request #15773 from civicrm/5.20
[civicrm-core.git] / tests / phpunit / CRM / Core / BAO / PrevNextCacheTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2020 |
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
28 /**
29 * Class CRM_Core_BAO_PrevNextCacheTest
30 * @group headless
31 */
32 class CRM_Core_BAO_PrevNextCacheTest extends CiviUnitTestCase {
33
34 public function testFlipData() {
35 $dao = new CRM_Core_BAO_PrevNextCache();
36 $dao->entity_id1 = 1;
37 $dao->entity_id2 = 2;
38 $dao->data = serialize([
39 'srcID' => 1,
40 'srcName' => 'Ms. Meliissa Mouse II',
41 'dstID' => 2,
42 'dstName' => 'Mr. Maurice Mouse II',
43 'weight' => 20,
44 'canMerge' => TRUE,
45 ]);
46 $dao->save();
47 $dao = new CRM_Core_BAO_PrevNextCache();
48 $dao->id = 1;
49 CRM_Core_BAO_PrevNextCache::flipPair([1], 0);
50 $dao->find(TRUE);
51 $this->assertEquals(1, $dao->entity_id1);
52 $this->assertEquals(2, $dao->entity_id2);
53 $this->assertEquals(serialize([
54 'srcName' => 'Mr. Maurice Mouse II',
55 'dstID' => 1,
56 'dstName' => 'Ms. Meliissa Mouse II',
57 'weight' => 20,
58 'canMerge' => TRUE,
59 'srcID' => 2,
60 ]), $dao->data);
61
62 $this->quickCleanup(['civicrm_prevnext_cache']);
63 }
64
65 public function testSetItem() {
66 $cacheKeyString = 'TestCacheKeyString';
67 $data = '1234afgbghh';
68 $values = [];
69 $values[] = " ( 'civicrm_contact', 0, 0, '{$cacheKeyString}_stats', '$data' ) ";
70 $valueArray = CRM_Core_BAO_PrevNextCache::convertSetItemValues($values[0]);
71 // verify as SetItem would do that it converts the original values style into a sensible array format
72 $this->assertEquals(['civicrm_contact', 0, 0, 'TestCacheKeyString_stats', '1234afgbghh'], $valueArray);
73 CRM_Core_BAO_PrevNextCache::setItem($valueArray[0], $valueArray[1], $valueArray[2], $valueArray[3], $valueArray[4]);
74 $dao = new CRM_Core_BAO_PrevNextCache();
75 $dao->cacheKey = 'TestCacheKeyString_stats';
76 $dao->find(TRUE);
77 $this->assertEquals('1234afgbghh', $dao->data);
78 $this->assertEquals(0, $dao->entity_id1);
79 $this->assertEquals(0, $dao->entity_id2);
80 $this->assertEquals('civicrm_contact', $dao->entity_table);
81 }
82
83 }