From e825d40016b78a711db4ee7d487d7f3f39d64539 Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Wed, 14 Nov 2012 13:44:57 +0000 Subject: Updated test suite to cover macros with numbers in their names. --- t/test-parser.rb | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/t/test-parser.rb b/t/test-parser.rb index 03cecd3..35ed482 100755 --- a/t/test-parser.rb +++ b/t/test-parser.rb @@ -245,6 +245,33 @@ class TestParser < Test::Unit::TestCase end + def test_misc_macro + + parser = MonitorConfig.new("/dev/null" ) + + # + # With nothing loaded we should have zero macros - so the + # count of our macros hash should be zero + # + macros = parser.macros + assert( macros.empty? ) + assert( macros.size() == 0 ) + + parser.parse_line( "FRONTLINESTAGING2 is 89.16.186.138 and 89.16.186.139 and 89.16.186.148." ) + + macros = parser.macros + assert( macros.size() == 1 ) + + # + # Test that we got a suitable value. + # + values = parser.get_macro_targets( "FRONTLINESTAGING2" ) + + assert(values.class.to_s == "Array" ) + + end + + # # Test that we can define tests which expand macros successfully. -- cgit v1.2.1