Merge pull request #2704 from jitendrapurohit/CRM_TestFix
[civicrm-core.git] / api / v3 / examples / Im / Get.php
CommitLineData
6a488035 1<?php
fb32de45 2/**
3 * Test Generated example of using im get API
4 * *
6a488035
TO
5 */
6function im_get_example(){
53ca8fd7 7$params = array(
6a488035
TO
8 'contact_id' => 1,
9 'name' => 'My Yahoo IM Handle',
10 'location_type_id' => 1,
11 'provider_id' => 1,
12);
13
fb32de45 14try{
15 $result = civicrm_api3('im', 'get', $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 im_get_expectedresult(){
32
53ca8fd7 33 $expectedResult = array(
6a488035
TO
34 'is_error' => 0,
35 'version' => 3,
36 'count' => 1,
37 'id' => 1,
53ca8fd7 38 'values' => array(
39 '1' => array(
6a488035
TO
40 'id' => '1',
41 'contact_id' => '1',
42 'location_type_id' => '1',
43 'name' => 'My Yahoo IM Handle',
44 'provider_id' => '1',
45 'is_primary' => 0,
46 'is_billing' => 0,
47 ),
48 ),
49);
50
fb32de45 51 return $expectedResult;
6a488035
TO
52}
53
54
55/*
56* This example has been generated from the API test suite. The test that created it is called
57*
58* testGetIm and can be found in
69d79249 59* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/ImTest.php
6a488035
TO
60*
61* You can see the outcome of the API tests at
69d79249 62* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
63*
64* To Learn about the API read
69d79249 65* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 66*
69d79249
E
67* Browse the api on your own site with the api explorer
68* http://MYSITE.ORG/path/to/civicrm/api/explorer
6a488035
TO
69*
70* Read more about testing here
71* http://wiki.civicrm.org/confluence/display/CRM/Testing
72*
73* API Standards documentation:
74* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
b259a4ab 75*/