Merge pull request #9187 from sqweets/ExportHeadersRelationships
[civicrm-core.git] / tests / phpunit / api / v3 / WebsiteTest.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
6a488035
TO
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035 27
6a488035
TO
28/**
29 * Test APIv3 civicrm_website_* functions
30 *
6c6e6187
TO
31 * @package CiviCRM_APIv3
32 * @subpackage API_Contact
acb109b7 33 * @group headless
6a488035 34 */
6a488035 35class api_v3_WebsiteTest extends CiviUnitTestCase {
e6ff1593 36 protected $_apiversion = 3;
6a488035
TO
37 protected $params;
38 protected $id;
39 protected $_entity;
b7c9bc4c 40
430ae6dd
TO
41 public $DBResetRequired = FALSE;
42
00be9182 43 public function setUp() {
6a488035 44 parent::setUp();
cd5e1cac 45 $this->useTransaction();
6a488035 46
92915c55
TO
47 $this->_entity = 'website';
48 $this->_contactID = $this->organizationCreate();
49 $this->params = array(
6a488035
TO
50 'contact_id' => $this->_contactID,
51 'url' => 'website.com',
52 'website_type_id' => 1,
53 );
54 }
55
6a488035 56 public function testCreateWebsite() {
e6ff1593 57 $result = $this->callAPIAndDocument($this->_entity, 'create', $this->params, __FUNCTION__, __FILE__);
ba4a1892 58 $this->assertEquals(1, $result['count']);
6a488035 59 $this->getAndCheck($this->params, $result['id'], $this->_entity);
ba4a1892 60 $this->assertNotNull($result['values'][$result['id']]['id']);
6a488035
TO
61 }
62
63 public function testGetWebsite() {
e6ff1593 64 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
65 $result = $this->callAPIAndDocument($this->_entity, 'get', $this->params, __FUNCTION__, __FILE__);
ba4a1892
TM
66 $this->assertEquals(1, $result['count']);
67 $this->assertNotNull($result['values'][$result['id']]['id']);
e6ff1593 68 $this->callAPISuccess('website', 'delete', array('id' => $result['id']));
6a488035
TO
69 }
70
71 public function testDeleteWebsite() {
e6ff1593 72 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
73 $deleteParams = array('id' => $result['id']);
74 $result = $this->callAPIAndDocument($this->_entity, 'delete', $deleteParams, __FUNCTION__, __FILE__);
75 $checkDeleted = $this->callAPISuccess($this->_entity, 'get', array());
ba4a1892 76 $this->assertEquals(0, $checkDeleted['count']);
6a488035 77 }
92915c55 78
6a488035 79 public function testDeleteWebsiteInvalid() {
e6ff1593 80 $result = $this->callAPISuccess($this->_entity, 'create', $this->params);
81 $deleteParams = array('id' => 600);
82 $result = $this->callAPIFailure($this->_entity, 'delete', $deleteParams);
83 $checkDeleted = $this->callAPISuccess($this->_entity, 'get', array());
ba4a1892 84 $this->assertEquals(1, $checkDeleted['count']);
dc5a7701 85 }
92915c55 86
dc5a7701 87 /**
eceb18cc 88 * Test retrieval of metadata.
dc5a7701
E
89 */
90 public function testGetMetadata() {
91 $result = $this->callAPIAndDocument($this->_entity, 'get', array(
6c6e6187 92 'options' => array(
92915c55 93 'metadata' => array('fields'),
af9b09df 94 ),
92915c55 95 ), __FUNCTION__, __FILE__, 'Demonostrates returning field metadata', 'GetWithMetadata');
dc5a7701
E
96 $this->assertEquals('Website', $result['metadata']['fields']['url']['title']);
97 }
92915c55 98
dc5a7701 99 /**
eceb18cc 100 * Test retrieval of label metadata.
dc5a7701
E
101 */
102 public function testGetFields() {
103 $result = $this->callAPIAndDocument($this->_entity, 'getfields', array('action' => 'get'), __FUNCTION__, __FILE__);
104 $this->assertArrayKeyExists('url', $result['values']);
105 }
96025800 106
6a488035 107}