Merge pull request #7797 from JKingsnorth/CRM-17977
[civicrm-core.git] / tests / phpunit / api / v3 / SystemTest.php
CommitLineData
6a488035 1<?php
b6708aeb 2/*
3 +--------------------------------------------------------------------+
81621fee 4| CiviCRM version 4.7 |
b6708aeb 5+--------------------------------------------------------------------+
fa938177 6| Copyright CiviCRM LLC (c) 2004-2016 |
b6708aeb 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+--------------------------------------------------------------------+
e70a7fc0 26 */
6a488035 27
6a488035
TO
28/**
29 * Test class for System API - civicrm_system_*
30 *
42bf9336 31 * @package CiviCRM
acb109b7 32 * @group headless
6a488035
TO
33 */
34class api_v3_SystemTest extends CiviUnitTestCase {
35
36 const TEST_CACHE_GROUP = 'SystemTest';
37 const TEST_CACHE_PATH = 'api/v3/system';
b7c9bc4c 38
6a488035
TO
39 /**
40 * Sets up the fixture, for example, opens a network connection.
fe482240 41 *
6a488035 42 * This method is called before a test is executed.
6a488035
TO
43 */
44 protected function setUp() {
45 parent::setUp();
131cdce7 46 $this->useTransaction(TRUE);
61ef23bd 47 }
6a488035 48
6a488035 49 /**
eceb18cc 50 * Test system flush.
6a488035
TO
51 */
52 public function testFlush() {
53 // Note: this operation actually flushes several different caches; we don't
54 // check all of them -- just enough to make sure that the API is doing
55 // something
b6708aeb 56
6a488035 57 $this->assertTrue(NULL === CRM_Core_BAO_Cache::getItem(self::TEST_CACHE_GROUP, self::TEST_CACHE_PATH));
b6708aeb 58
6a488035
TO
59 $data = 'abc';
60 CRM_Core_BAO_Cache::setItem($data, self::TEST_CACHE_GROUP, self::TEST_CACHE_PATH);
b6708aeb 61
6a488035
TO
62 $this->assertEquals('abc', CRM_Core_BAO_Cache::getItem(self::TEST_CACHE_GROUP, self::TEST_CACHE_PATH));
63
7fbb4198 64 $params = array();
a828d7b8 65 $result = $this->callAPIAndDocument('system', 'flush', $params, __FUNCTION__, __FILE__, "Flush all system caches", 'Flush');
b6708aeb 66
6a488035
TO
67 $this->assertTrue(NULL === CRM_Core_BAO_Cache::getItem(self::TEST_CACHE_GROUP, self::TEST_CACHE_PATH));
68 }
e2bef985 69
70 /**
eceb18cc 71 * Test system log function.
e2bef985 72 */
00be9182 73 public function testSystemLog() {
e2bef985 74 $this->callAPISuccess('system', 'log', array('level' => 'info', 'message' => 'We wish you a merry Christmas'));
42bf9336 75 $result = $this->callAPISuccess('SystemLog', 'getsingle', array(
92915c55
TO
76 'sequential' => 1,
77 'message' => array('LIKE' => '%Chris%'),
78 ));
e2bef985 79 $this->assertEquals($result['message'], 'We wish you a merry Christmas');
80 $this->assertEquals($result['level'], 'info');
81 }
61ef23bd
EM
82
83 /**
eceb18cc 84 * Test system log function.
61ef23bd 85 */
00be9182 86 public function testSystemLogNoLevel() {
42bf9336 87 $this->callAPISuccess('system', 'log', array('message' => 'We wish you a merry Christmas', 'level' => 'alert'));
88 $result = $this->callAPISuccess('SystemLog', 'getsingle', array(
89 'sequential' => 1,
21dfd5f5 90 'message' => array('LIKE' => '%Chris%'),
42bf9336 91 ));
61ef23bd 92 $this->assertEquals($result['message'], 'We wish you a merry Christmas');
4a41780f 93 $this->assertEquals($result['level'], 'alert');
61ef23bd 94 }
42bf9336 95
00be9182 96 public function testSystemGet() {
91f1889e
TO
97 $result = $this->callAPISuccess('system', 'get', array());
98 $this->assertRegExp('/^[0-9]+\.[0-9]+\.[0-9a-z\-]+$/', $result['values'][0]['version']);
99 $this->assertEquals('UnitTests', $result['values'][0]['uf']);
100 }
96025800 101
6a488035 102}