Merge pull request #14812 from eileenmcnaughton/ee
[civicrm-core.git] / tests / phpunit / CRM / Core / BAO / PrevNextCacheTest.php
CommitLineData
808c05a9 1<?php
2/*
3 +--------------------------------------------------------------------+
2fe49090 4 | CiviCRM version 5 |
808c05a9 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
808c05a9 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 */
32class 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(array(
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(array(1), 0);
50 $dao->find(TRUE);
08cde01f 51 $this->assertEquals(1, $dao->entity_id1);
52 $this->assertEquals(2, $dao->entity_id2);
808c05a9 53 $this->assertEquals(serialize(array(
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(array('civicrm_prevnext_cache'));
63 }
64
65}