1
0
mirror of https://github.com/danog/dns.git synced 2024-11-27 04:24:48 +01:00
dns/test/ResolvConfTest.php

31 lines
835 B
PHP
Raw Normal View History

<?php
namespace Amp\Dns\Test;
class ResolvConfTest extends \PHPUnit_Framework_TestCase {
public function test() {
$result = \Amp\wait(\Amp\resolve(\Amp\Dns\__loadResolvConf(__DIR__ . "/data/resolv.conf")));
$this->assertSame([
"nameservers" => [
"127.0.0.1:53",
"[2001:4860:4860::8888]:53"
],
"timeout" => 5000,
"attempts" => 3,
], $result);
}
public function testDefaultsOnConfNotFound() {
$result = \Amp\wait(\Amp\resolve(\Amp\Dns\__loadResolvConf(__DIR__ . "/data/invalid.conf")));
$this->assertSame([
"nameservers" => [
"8.8.8.8:53",
"8.8.4.4:53"
],
"timeout" => 3000,
"attempts" => 2,
], $result);
}
}