summaryrefslogtreecommitdiff
path: root/t/test-custodian-util-dns.rb
blob: 40ebb9952e28268d47f87886f83a0e5b27bb2a3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/ruby1.8 -I./lib/ -I../lib/


require 'custodian/util/dns'
require 'test/unit'



#
# Unit test for our DNS utility class.
#
#
class TestDNSUtil < Test::Unit::TestCase

  #
  # Create the test suite environment: NOP.
  #
  def setup
  end

  #
  # Destroy the test suite environment: NOP.
  #
  def teardown
  end


  #
  #  Test forward lookups
  #
  def test_lookup

    #
    # IPv6 lookup
    #
    details = Custodian::Util::DNS.hostname_to_ip( "bytemark.co.uk" )
    assert( details == "212.110.161.236" )

    #
    # IPv4 lookup
    #
    details = Custodian::Util::DNS.hostname_to_ip( "www.bytemark.co.uk" )
    assert( details == "212.110.161.236" )

    #
    # Failure case
    #
    details = Custodian::Util::DNS.hostname_to_ip( "this.doesnot.exist" )
    assert( details.nil? )

  end


  #
  #  Test forward lookups
  #
  def test_reverse_lookup

    #
    # IPv6 lookup
    #
    details = Custodian::Util::DNS.ip_to_hostname( "2001:41c8:2::5" )
    assert( details =~ /bytemark.co.uk/i )

    #
    # IPv4 lookup
    #
    details = Custodian::Util::DNS.ip_to_hostname( "212.110.161.236" )
    assert( details =~ /bytemark.co.uk/i )

    #
    # Bogus lookup - should return nil.
    #
    details = Custodian::Util::DNS.ip_to_hostname( "800.683.853.348" )
    assert( details.nil? )
  end

end