diff options
| author | Steve Kemp <steve@steve.org.uk> | 2012-11-23 15:06:49 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2012-11-23 15:06:49 +0000 | 
| commit | 1531a4e34041d42600bea0904e209434e480952d (patch) | |
| tree | 75f6ad82852960df378c8e0d6c0239aca29635b4 /t | |
| parent | 017e20155e9dc40e4a006df862804b3fbd1acefd (diff) | |
  Moved the code to detect whether an IP-address is inside/outside the Bytemark range into its own class & added _simple_ test-cases.
Diffstat (limited to 't')
| -rwxr-xr-x | t/test-custodian-util-bytemark.rb | 65 | 
1 files changed, 65 insertions, 0 deletions
| diff --git a/t/test-custodian-util-bytemark.rb b/t/test-custodian-util-bytemark.rb new file mode 100755 index 0000000..95222f0 --- /dev/null +++ b/t/test-custodian-util-bytemark.rb @@ -0,0 +1,65 @@ +#!/usr/bin/ruby1.8 -I./lib/ -I../lib/ + + +require 'custodian/util/bytemark' +require 'test/unit' + + + +# +# Unit test for our Bytemark utility class. +# +# +class TestBytemarkUtil < Test::Unit::TestCase + +  # +  # Create the test suite environment: NOP. +  # +  def setup +  end + +  # +  # Destroy the test suite environment: NOP. +  # +  def teardown +  end + + +  # +  # Test that we receive sensible results from the static inside? method +  # +  def test_ranges + +    # +    #  Hash of hostnames and the expected result. +    # +    to_test = { + +      # +      # Hosts inside the Bytemark network +      # +      "80.68.85.48"               => true, +      "2001:41c8:125:46::10"      => true, + +      # +      # Hosts outside the Bytemark network +      # +      "127.0.0.1"                 => false, +      "192.168.1.1"               => false, +      "2a00:1450:400c:c00::93"    => false, +    } + + +    to_test.each do |name,inside| + +      if ( inside ) +        assert( Custodian::Util::Bytemark.inside?( name ) == true  ) +      else +        assert( Custodian::Util::Bytemark.inside?( name ) == false  ) +      end +    end + +  end + + +end | 
