CRM-12595 fix formatting in tests files
[civicrm-core.git] / tests / phpunit / api / v3 / SurveyRespondantTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.3 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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 class api_v3_SurveyRespondantTest extends CiviUnitTestCase {
31 protected $_apiversion;
32 protected $params;
33 function setUp() {
34 $this->_apiversion = 3;
35 $phoneBankActivity = civicrm_api('Option_value', 'Get', array('label' => 'PhoneBank', 'version' => $this->_apiversion, 'sequential' => 1));
36 $phoneBankActivityTypeID = $phoneBankActivity['values'][0]['value'];
37 $surveyParams = array(
38 'version' => $this->_apiversion,
39 'title' => "survey respondent",
40 'activity_type_id' => $phoneBankActivityTypeID,
41 'instructions' => "Call people, ask for money",
42 );
43 $survey = civicrm_api('survey', 'create', $surveyParams);
44 $surveyID = $survey['id'];
45 $this->params = array (
46 'version' => $this->_apiversion,
47 'sequential' =>'1',
48 'survey_id' => $surveyID
49 );
50 parent::setUp();
51 }
52
53 function tearDown() {
54 $this->quickCleanup(array('civicrm_survey'));
55 }
56
57 /**
58 * Test surveyRespondent get with wrong params type.
59 */
60 public function testGetWrongParamsType() {
61 $params = 'abc';
62 $GetWrongParamsType = civicrm_api("SurveyRespondant","get", $params );
63 $this->assertEquals($GetWrongParamsType['error_message'], 'Input variable `params` is not an array');
64 }
65
66 /**
67 * Test surveyRespondent get with empty params.
68 */
69 public function testGetEmptyParams() {
70 $params = array();
71 $GetEmptyParams = civicrm_api("SurveyRespondant","get", $params );
72 $this->assertEquals($GetEmptyParams['error_message'], 'Mandatory key(s) missing from params array: version');
73 }
74 /**
75 * Test survey respondent get.
76 */
77 public function testGetSurveyRespondants() {
78 $result = civicrm_api("SurveyRespondant","get", $this->params );
79 $this->assertEquals($result['is_error'], 0);
80 $this->documentMe($this->params, $result, __FUNCTION__, __FILE__);
81 $this->assertAPISuccess($result, 'In line ' . __LINE__);
82 }
83
84 }
85