123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- <?php
- /**
- * Created by PhpStorm.
- * User: junade
- * Date: 09/06/2017
- * Time: 15:31
- */
- class DNSTest extends TestCase
- {
- public function testAddRecord()
- {
- $response = $this->getPsr7JsonResponseForFixture('Endpoints/addRecord.json');
- $mock = $this->getMockBuilder(\Cloudflare\API\Adapter\Adapter::class)->getMock();
- $mock->method('post')->willReturn($response);
- $mock->expects($this->once())
- ->method('post')
- ->with(
- $this->equalTo('zones/023e105f4ecef8ad9ca31a8372d0c353/dns_records'),
- $this->equalTo([
- 'type' => 'A',
- 'name' => 'example.com',
- 'content' => '127.0.0.1',
- 'ttl' => 120,
- 'proxied' => false
- ])
- );
- $dns = new \Cloudflare\API\Endpoints\DNS($mock);
- $dns->addRecord('023e105f4ecef8ad9ca31a8372d0c353', 'A', 'example.com', '127.0.0.1', '120', false);
- }
- public function testAddMXRecordPriority10()
- {
- $response = $this->getPsr7JsonResponseForFixture('Endpoints/addRecord.json');
- $mock = $this->getMockBuilder(\Cloudflare\API\Adapter\Adapter::class)->getMock();
- $mock->method('post')->willReturn($response);
- $mock->expects($this->once())
- ->method('post')
- ->with(
- $this->equalTo('zones/023e105f4ecef8ad9ca31a8372d0c353/dns_records'),
- $this->equalTo([
- 'type' => 'MX',
- 'name' => 'example.com',
- 'content' => '127.0.0.1',
- 'ttl' => 120,
- 'proxied' => false,
- 'priority' => 10,
- ])
- );
- $dns = new \Cloudflare\API\Endpoints\DNS($mock);
- $dns->addRecord('023e105f4ecef8ad9ca31a8372d0c353', 'MX', 'example.com', '127.0.0.1', '120', false, 10);
- }
- public function testAddMXRecordPriority0()
- {
- $response = $this->getPsr7JsonResponseForFixture('Endpoints/addRecord.json');
- $mock = $this->getMockBuilder(\Cloudflare\API\Adapter\Adapter::class)->getMock();
- $mock->method('post')->willReturn($response);
- $mock->expects($this->once())
- ->method('post')
- ->with(
- $this->equalTo('zones/023e105f4ecef8ad9ca31a8372d0c353/dns_records'),
- $this->equalTo([
- 'type' => 'MX',
- 'name' => 'example.com',
- 'content' => '127.0.0.1',
- 'ttl' => 120,
- 'proxied' => false,
- 'priority' => 0,
- ])
- );
- $dns = new \Cloudflare\API\Endpoints\DNS($mock);
- $dns->addRecord('023e105f4ecef8ad9ca31a8372d0c353', 'MX', 'example.com', '127.0.0.1', '120', false, 0);
- }
- public function testListRecords()
- {
- $response = $this->getPsr7JsonResponseForFixture('Endpoints/listRecords.json');
- $mock = $this->getMockBuilder(\Cloudflare\API\Adapter\Adapter::class)->getMock();
- $mock->method('get')->willReturn($response);
- $mock->expects($this->once())
- ->method('get')
- ->with(
- $this->equalTo('zones/023e105f4ecef8ad9ca31a8372d0c353/dns_records'),
- $this->equalTo([
- 'page' => 1,
- 'per_page' => 20,
- 'match' => 'all',
- 'type' => 'A',
- 'name' => 'example.com',
- 'content' => '127.0.0.1',
- 'order' => 'type',
- 'direction' => 'desc',
- ])
- );
- $zones = new \Cloudflare\API\Endpoints\DNS($mock);
- $result = $zones->listRecords('023e105f4ecef8ad9ca31a8372d0c353', 'A', 'example.com', '127.0.0.1', 1, 20, 'type', 'desc');
- $this->assertObjectHasAttribute('result', $result);
- $this->assertObjectHasAttribute('result_info', $result);
- $this->assertEquals('372e67954025e0ba6aaa6d586b9e0b59', $result->result[0]->id);
- $this->assertEquals(1, $result->result_info->page);
- $this->assertEquals('372e67954025e0ba6aaa6d586b9e0b59', $zones->getBody()->result[0]->id);
- }
- public function testGetDNSRecordDetails()
- {
- $response = $this->getPsr7JsonResponseForFixture('Endpoints/getDNSRecordDetails.json');
- $mock = $this->getMockBuilder(\Cloudflare\API\Adapter\Adapter::class)->getMock();
- $mock->method('get')->willReturn($response);
- $mock->expects($this->once())
- ->method('get')
- ->with(
- $this->equalTo('zones/023e105f4ecef8ad9ca31a8372d0c353/dns_records/372e67954025e0ba6aaa6d586b9e0b59')
- );
- $dns = new \Cloudflare\API\Endpoints\DNS($mock);
- $result = $dns->getRecordDetails('023e105f4ecef8ad9ca31a8372d0c353', '372e67954025e0ba6aaa6d586b9e0b59');
- $this->assertEquals('372e67954025e0ba6aaa6d586b9e0b59', $result->id);
- $this->assertEquals('372e67954025e0ba6aaa6d586b9e0b59', $dns->getBody()->result->id);
- }
- public function testGetRecordID()
- {
- $response = $this->getPsr7JsonResponseForFixture('Endpoints/getRecordId.json');
- $mock = $this->getMockBuilder(\Cloudflare\API\Adapter\Adapter::class)->getMock();
- $mock->method('get')->willReturn($response);
- $mock->expects($this->once())
- ->method('get')
- ->with(
- $this->equalTo('zones/023e105f4ecef8ad9ca31a8372d0c353/dns_records')
- );
- $dns = new \Cloudflare\API\Endpoints\DNS($mock);
- $result = $dns->getRecordID('023e105f4ecef8ad9ca31a8372d0c353', 'A', 'example.com');
- $this->assertEquals('372e67954025e0ba6aaa6d586b9e0b59', $result);
- }
- public function testUpdateDNSRecord()
- {
- $response = $this->getPsr7JsonResponseForFixture('Endpoints/updateDNSRecord.json');
- $mock = $this->getMockBuilder(\Cloudflare\API\Adapter\Adapter::class)->getMock();
- $mock->method('put')->willReturn($response);
- $details = [
- 'type' => 'A',
- 'name' => 'example.com',
- 'content' => '1.2.3.4',
- 'ttl' => 120,
- 'proxied' => false,
- ];
- $mock->expects($this->once())
- ->method('put')
- ->with(
- $this->equalTo('zones/023e105f4ecef8ad9ca31a8372d0c353/dns_records/372e67954025e0ba6aaa6d586b9e0b59'),
- $this->equalTo($details)
- );
- $dns = new \Cloudflare\API\Endpoints\DNS($mock);
- $result = $dns->updateRecordDetails('023e105f4ecef8ad9ca31a8372d0c353', '372e67954025e0ba6aaa6d586b9e0b59', $details);
- $this->assertEquals('372e67954025e0ba6aaa6d586b9e0b59', $result->result->id);
- $this->assertEquals('372e67954025e0ba6aaa6d586b9e0b59', $dns->getBody()->result->id);
- foreach ($details as $property => $value) {
- $this->assertEquals($result->result->{ $property }, $value);
- }
- }
- }
|