Sha256: 333353159172febcd7b3604ee39e94d27dc5912f17676e980bce4d93cbb91316

Contents?: true

Size: 1.03 KB

Versions: 25

Compression:

Stored size: 1.03 KB

Contents

#frozen_string_literal: false
require 'test_helper'

class JSONFixturesTest < Test::Unit::TestCase
  def setup
    fixtures = File.join(File.dirname(__FILE__), 'fixtures/{fail,pass}*.json')
    passed, failed = Dir[fixtures].partition { |f| f['pass'] }
    @passed = passed.inject([]) { |a, f| a << [ f, File.read(f) ] }.sort
    @failed = failed.inject([]) { |a, f| a << [ f, File.read(f) ] }.sort
  end

  def test_passing
    for name, source in @passed
      begin
        assert JSON.parse(source),
          "Did not pass for fixture '#{name}': #{source.inspect}"
      rescue => e
        warn "\nCaught #{e.class}(#{e}) for fixture '#{name}': #{source.inspect}\n#{e.backtrace * "\n"}"
        raise e
      end
    end
  end

  def test_failing
    for name, source in @failed
      assert_raise(JSON::ParserError, JSON::NestingError,
        "Did not fail for fixture '#{name}': #{source.inspect}") do
        JSON.parse(source)
      end
    end
  end

  def test_sanity
    assert(@passed.size > 5)
    assert(@failed.size > 20)
  end
end

Version data entries

25 entries across 23 versions & 7 rubygems

Version Path
cloudsmith-api-0.52.0 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_fixtures_test.rb
cloudsmith-api-0.51.93 vendor/bundle/ruby/2.3.0/gems/json-2.3.1/tests/json_fixtures_test.rb
json-2.3.1-java tests/json_fixtures_test.rb
json_pure-2.3.1 tests/json_fixtures_test.rb
json-2.3.1 tests/json_fixtures_test.rb