|
1 | 1 | <?php |
2 | 2 |
|
3 | | -/* |
4 | | - * Copyright (c) 2009 - 2010, SoftLayer Technologies, Inc. All rights reserved. |
5 | | - * |
6 | | - * Redistribution and use in source and binary forms, with or without |
7 | | - * modification, are permitted provided that the following conditions are met: |
8 | | - * |
9 | | - * * Redistributions of source code must retain the above copyright notice, |
10 | | - * this list of conditions and the following disclaimer. |
11 | | - * * Redistributions in binary form must reproduce the above copyright notice, |
12 | | - * this list of conditions and the following disclaimer in the documentation |
13 | | - * and/or other materials provided with the distribution. |
14 | | - * * Neither SoftLayer Technologies, Inc. nor the names of its contributors may |
15 | | - * be used to endorse or promote products derived from this software without |
16 | | - * specific prior written permission. |
17 | | - * |
18 | | - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
19 | | - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
20 | | - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
21 | | - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
22 | | - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
23 | | - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
24 | | - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
25 | | - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
26 | | - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
27 | | - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
28 | | - * POSSIBILITY OF SUCH DAMAGE. |
29 | | - */ |
30 | | - |
31 | 3 | namespace SoftLayer\Tests; |
32 | 4 |
|
33 | 5 | use PHPUnit\Framework\TestCase; |
|
38 | 10 | */ |
39 | 11 | class SoapClientTest extends TestCase |
40 | 12 | { |
41 | | - /** |
42 | | - * @expectedException \Exception |
43 | | - * @expectedExceptionMessage There was an error querying the SoftLayer API: Invalid API token. |
44 | | - */ |
45 | | - public function testSoapClientException() |
| 13 | + |
| 14 | + public function testGetClient() |
| 15 | + { |
| 16 | + $client = SoapClient::getClient('SoftLayer_Ticket', 123456, 'apiUsername', 'apiKey'); |
| 17 | + $headers = $client->getHeaders(); |
| 18 | + $this->assertEquals('apiUsername', $headers['authenticate']->data->username); |
| 19 | + $this->assertEquals('apiKey', $headers['authenticate']->data->apiKey); |
| 20 | + $this->assertEquals(123456, $headers['SoftLayer_TicketInitParameters']->data->id); |
| 21 | + } |
| 22 | + |
| 23 | + public function testSetObjectMask() |
| 24 | + { |
| 25 | + $client = SoapClient::getClient('SoftLayer_Ticket', 123456, 'apiUsername', 'apiKey'); |
| 26 | + $mask = "mask[id,test]"; |
| 27 | + $client->setObjectMask($mask); |
| 28 | + $headers = $client->getHeaders(); |
| 29 | + $this->assertEquals($mask, $headers['SoftLayer_ObjectMask']->data->mask); |
| 30 | + } |
| 31 | + |
| 32 | + public function testSetObjecFilter() |
46 | 33 | { |
47 | 34 | $client = SoapClient::getClient('SoftLayer_Ticket', 123456, 'apiUsername', 'apiKey'); |
| 35 | + $filter = new \stdClass(); |
| 36 | + $filter->test1 = new \stdClass(); |
| 37 | + $filter->test1->operation = "testFilter"; |
| 38 | + $client->setObjectFilter($filter); |
48 | 39 |
|
49 | | - $client->getObject(); |
| 40 | + $headers = $client->getHeaders(); |
| 41 | + print_r($headers); |
| 42 | + $this->assertEquals("testFilter", $headers['SoftLayer_TicketObjectFilter']->data->test1->operation); |
50 | 43 | } |
51 | 44 | } |
0 commit comments