INFRA-132 - @param type fixes
[civicrm-core.git] / tests / phpunit / api / v3 / SystemTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 require_once 'CiviTest/CiviUnitTestCase.php';
29
30 /**
31 * Test class for System API - civicrm_system_*
32 *
33 * @package CiviCRM
34 */
35 class api_v3_SystemTest extends CiviUnitTestCase {
36
37 const TEST_CACHE_GROUP = 'SystemTest';
38 const TEST_CACHE_PATH = 'api/v3/system';
39
40 /**
41 * Sets up the fixture, for example, opens a network connection.
42 * This method is called before a test is executed.
43 *
44 */
45 protected function setUp() {
46 parent::setUp();
47 $this->useTransaction(TRUE);
48 }
49
50 ///////////////// civicrm_domain_get methods
51
52 /**
53 * Test system flush
54 */
55 public function testFlush() {
56 // Note: this operation actually flushes several different caches; we don't
57 // check all of them -- just enough to make sure that the API is doing
58 // something
59
60 $this->assertTrue(NULL === CRM_Core_BAO_Cache::getItem(self::TEST_CACHE_GROUP, self::TEST_CACHE_PATH));
61
62 $data = 'abc';
63 CRM_Core_BAO_Cache::setItem($data, self::TEST_CACHE_GROUP, self::TEST_CACHE_PATH);
64
65 $this->assertEquals('abc', CRM_Core_BAO_Cache::getItem(self::TEST_CACHE_GROUP, self::TEST_CACHE_PATH));
66
67 $params = array();
68 $result = $this->callAPIAndDocument('system', 'flush', $params, __FUNCTION__, __FILE__, "Flush all system caches", 'Flush', 'flush');
69
70 $this->assertTrue(NULL === CRM_Core_BAO_Cache::getItem(self::TEST_CACHE_GROUP, self::TEST_CACHE_PATH));
71 }
72
73 /**
74 * Test system log function
75 */
76 public function testSystemLog() {
77 $this->callAPISuccess('system', 'log', array('level' => 'info', 'message' => 'We wish you a merry Christmas'));
78 $result = $this->callAPISuccess('SystemLog', 'getsingle', array(
79 'sequential' => 1,
80 'message' => array('LIKE' => '%Chris%'),
81 ));
82 $this->assertEquals($result['message'], 'We wish you a merry Christmas');
83 $this->assertEquals($result['level'], 'info');
84 }
85
86 /**
87 * Test system log function
88 */
89 public function testSystemLogNoLevel() {
90 $this->callAPISuccess('system', 'log', array('message' => 'We wish you a merry Christmas', 'level' => 'alert'));
91 $result = $this->callAPISuccess('SystemLog', 'getsingle', array(
92 'sequential' => 1,
93 'message' => array('LIKE' => '%Chris%'),
94 ));
95 $this->assertEquals($result['message'], 'We wish you a merry Christmas');
96 $this->assertEquals($result['level'], 'alert');
97 }
98
99 public function testSystemGet() {
100 $result = $this->callAPISuccess('system', 'get', array());
101 $this->assertRegExp('/^[0-9]+\.[0-9]+\.[0-9a-z\-]+$/', $result['values'][0]['version']);
102 $this->assertEquals('UnitTests', $result['values'][0]['uf']);
103 }
104 }