CRM-13072 more test class upgrades
[civicrm-core.git] / api / v3 / examples / SurveyCreate.php
CommitLineData
6a488035 1<?php
fb32de45 2/**
3 * Test Generated example of using survey create API
4 * *
6a488035
TO
5 */
6function survey_create_example(){
fbda92d3 7$params = array(
6a488035 8 'title' => 'survey title',
fbda92d3 9 'activity_type_id' => '35',
6a488035
TO
10 'max_number_of_contacts' => 12,
11 'instructions' => 'Call people, ask for money',
12);
13
fb32de45 14try{
15 $result = civicrm_api3('survey', 'create', $params);
16}
17catch (CiviCRM_API3_Exception $e) {
18 // handle error here
19 $errorMessage = $e->getMessage();
20 $errorCode = $e->getErrorCode();
21 $errorData = $e->getExtraParams();
22 return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
23}
6a488035 24
fb32de45 25return $result;
6a488035
TO
26}
27
fb32de45 28/**
6a488035
TO
29 * Function returns array of result expected from previous function
30 */
31function survey_create_expectedresult(){
32
fbda92d3 33 $expectedResult = array(
6a488035
TO
34 'is_error' => 0,
35 'version' => 3,
36 'count' => 1,
37 'id' => 1,
fbda92d3 38 'values' => array(
39 '1' => array(
6a488035
TO
40 'id' => '1',
41 'title' => 'survey title',
42 'campaign_id' => '',
fbda92d3 43 'activity_type_id' => '35',
6a488035
TO
44 'recontact_interval' => '',
45 'instructions' => 'Call people, ask for money',
46 'release_frequency' => '',
47 'max_number_of_contacts' => '12',
48 'default_number_of_contacts' => '',
49 'is_active' => '',
50 'is_default' => '',
51 'created_id' => '',
fb32de45 52 'created_date' => '2013-07-28 05:52:14',
6a488035
TO
53 'last_modified_id' => '',
54 'last_modified_date' => '',
55 'result_id' => '',
56 'bypass_confirm' => '',
57 'thankyou_title' => '',
58 'thankyou_text' => '',
59 ),
60 ),
61);
62
fb32de45 63 return $expectedResult;
6a488035
TO
64}
65
66
67/*
68* This example has been generated from the API test suite. The test that created it is called
69*
70* testCreateSurvey and can be found in
71* http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/SurveyTest.php
72*
73* You can see the outcome of the API tests at
74* http://tests.dev.civicrm.org/trunk/results-api_v3
75*
76* To Learn about the API read
77* http://book.civicrm.org/developer/current/techniques/api/
78*
79* and review the wiki at
80* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
81*
82* Read more about testing here
83* http://wiki.civicrm.org/confluence/display/CRM/Testing
84*
85* API Standards documentation:
86* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
87*/