PageRenderTime 26ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/Languages/Ruby/Tests/mspec/rubyspec/library/ipaddr/reverse_spec.rb

http://github.com/IronLanguages/main
Ruby | 27 lines | 24 code | 3 blank | 0 comment | 4 complexity | 443ae86b84a0595c1de5bcfd93fa82d1 MD5 | raw file
Possible License(s): CPL-1.0, BSD-3-Clause, ISC, GPL-2.0, MPL-2.0-no-copyleft-exception
  1. require File.dirname(__FILE__) + '/../../spec_helper'
  2. require 'ipaddr'
  3. describe "IPAddr#reverse" do
  4. it 'should be able to generate the reverse DNS lookup entry' do
  5. IPAddr.new("3ffe:505:2::f").reverse.should == "f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.0.5.0.5.0.e.f.f.3.ip6.arpa"
  6. IPAddr.new("192.168.2.1").reverse.should == "1.2.168.192.in-addr.arpa"
  7. end
  8. end
  9. describe "IPAddr#ip6_arpa" do
  10. it 'should be able to convert an IPv6 address into the reverse DNS lookup representation according to RFC3172' do
  11. IPAddr.new("3ffe:505:2::f").ip6_arpa.should == "f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.0.5.0.5.0.e.f.f.3.ip6.arpa"
  12. lambda{
  13. IPAddr.new("192.168.2.1").ip6_arpa
  14. }.should raise_error(ArgumentError)
  15. end
  16. end
  17. describe "IPAddr#ip6_int" do
  18. it 'should be able to convert an IPv6 address into the reverse DNS lookup representation according to RFC1886' do
  19. IPAddr.new("3ffe:505:2::f").ip6_int.should == "f.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.0.5.0.5.0.e.f.f.3.ip6.int"
  20. lambda{
  21. IPAddr.new("192.168.2.1").ip6_int
  22. }.should raise_error(ArgumentError)
  23. end
  24. end