Sha256: 41b3e870f78fb5988db42de5eb6dac78996da4be6035b8fb4361d0e641e202ce

Contents?: true

Size: 1.15 KB

Versions: 346

Compression:

Stored size: 1.15 KB

Contents

require 'test/unit/assertions'

module Test::Unit::Assertions
  def assert_text_parsed_as(expected, actual)
    msg = parse_text(actual).inspect rescue 'failed'
    msg = "expected that #{actual.inspect} would be a parsed as #{expected.inspect} but got #{msg}"
    assert_block(msg) {
      v = parse_text(actual)
      if expected.is_a?(Float)
        v.is_a?(Float) && (v == obj || (v.nan? && obj.nan?) || (v - obj).abs < 0.000001)
      else
        v == expected
      end
    }
  end

  def assert_text_parsed_as_json(expected, actual)
    msg = parse_text(actual).inspect rescue 'failed'
    msg = "expected that #{actual.inspect} would be a parsed as #{expected.inspect} but got #{msg}"
    assert_block(msg) {
      v = JSON.parse(parse_text(actual))
      v == expected
    }
  end

  def assert_parse_error(actual)
    msg = begin
            parse_text(actual).inspect
          rescue => e
            e.inspect
          end
    msg = "expected that #{actual.inspect} would cause a parse error but got #{msg}"
    assert_block(msg) {
      begin
        parse_text(actual)
        false
      rescue Fluent::ConfigParseError
        true
      end
    }
  end
end

Version data entries

346 entries across 346 versions & 9 rubygems

Version Path
fluentd-0.14.12 test/config/assertions.rb
fluentd-0.14.11-x64-mingw32 test/config/assertions.rb
fluentd-0.14.11-x86-mingw32 test/config/assertions.rb
fluentd-0.14.11 test/config/assertions.rb
fluentd-0.10.62 test/config/assertions.rb
fluentd-0.12.31 test/config/assertions.rb
fluentd-0.14.10-x64-mingw32 test/config/assertions.rb
fluentd-0.14.10-x86-mingw32 test/config/assertions.rb
fluentd-0.14.10 test/config/assertions.rb
fluentd-0.12.30 test/config/assertions.rb
fluentd-0.14.9 test/config/assertions.rb
fluentd-0.14.8 test/config/assertions.rb
fluentd-0.14.7-x64-mingw32 test/config/assertions.rb
fluentd-0.14.7-x86-mingw32 test/config/assertions.rb
fluentd-0.14.7 test/config/assertions.rb
fluentd-0.14.6 test/config/assertions.rb
fluentd-0.12.29 test/config/assertions.rb
fluentd-0.14.5-x64-mingw32 test/config/assertions.rb
fluentd-0.14.5-x86-mingw32 test/config/assertions.rb
fluentd-0.14.5 test/config/assertions.rb