Merge pull request #15184 from eileenmcnaughton/dedupe9
[civicrm-core.git] / tests / phpunit / api / v4 / Action / ContactChecksumTest.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | CiviCRM version 5 |
6 +--------------------------------------------------------------------+
7 | Copyright CiviCRM LLC (c) 2004-2019 |
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27 */
28
29 /**
30 *
31 * @package CRM
32 * @copyright CiviCRM LLC (c) 2004-2019
33 * $Id$
34 *
35 */
36
37
38 namespace api\v4\Action;
39
40 use Civi\Api4\Contact;
41
42 /**
43 * @group headless
44 */
45 class ContactChecksumTest extends \api\v4\UnitTestCase {
46
47 public function testGetChecksum() {
48 $contact = Contact::create()
49 ->setCheckPermissions(FALSE)
50 ->addValue('first_name', 'Check')
51 ->addValue('last_name', 'Sum')
52 ->addChain('cs', Contact::getChecksum()->setContactId('$id')->setTtl(500), 0)
53 ->execute()
54 ->first();
55
56 $result = Contact::validateChecksum()
57 ->setContactId($contact['id'])
58 ->setChecksum($contact['cs']['checksum'])
59 ->execute()
60 ->first();
61
62 $this->assertTrue($result['valid']);
63 }
64
65 public function testValidateChecksum() {
66 $cid = Contact::create()
67 ->setCheckPermissions(FALSE)
68 ->addValue('first_name', 'Checker')
69 ->addValue('last_name', 'Sum')
70 ->execute()
71 ->first()['id'];
72
73 $goodCs = \CRM_Contact_BAO_Contact_Utils::generateChecksum($cid, NULL, 500);
74 $badCs = \CRM_Contact_BAO_Contact_Utils::generateChecksum($cid, strtotime('now - 1 week'), 1);
75
76 $result1 = Contact::validateChecksum()
77 ->setContactId($cid)
78 ->setChecksum($goodCs)
79 ->execute()
80 ->first();
81 $this->assertTrue($result1['valid']);
82
83 $result2 = Contact::validateChecksum()
84 ->setContactId($cid)
85 ->setChecksum($badCs)
86 ->execute()
87 ->first();
88 $this->assertFalse($result2['valid']);
89 }
90
91 }