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
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/tdiary-5.1.5/vendor/bundle/ruby/3.0.0/gems/tdiary-5.1.4/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_fixtures_test.rb
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/tdiary-5.1.5/vendor/bundle/ruby/3.0.0/gems/json-2.3.1/tests/json_fixtures_test.rb
tdiary-5.1.5 vendor/bundle/ruby/3.0.0/gems/json-2.3.1/tests/json_fixtures_test.rb
tdiary-5.1.5 vendor/bundle/ruby/3.0.0/gems/tdiary-5.1.4/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_fixtures_test.rb
tdiary-5.1.4 vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_fixtures_test.rb
cloudsmith-api-0.54.15 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_fixtures_test.rb
cloudsmith-api-0.53.79 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_fixtures_test.rb
cloudsmith-api-0.53.17 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_fixtures_test.rb
cloudsmith-api-0.53.3 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_fixtures_test.rb
cloudsmith-api-0.53.1 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_fixtures_test.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_fixtures_test.rb
cloudsmith-api-0.52.121 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_fixtures_test.rb
cloudsmith-api-0.52.92 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_fixtures_test.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.5.0/gems/json-2.3.1-java/tests/json_fixtures_test.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.5.0/gems/json-2.3.1-java/tests/json_fixtures_test.rb
cloudsmith-api-0.52.79 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_fixtures_test.rb
tdiary-5.1.3 vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_fixtures_test.rb
cli-nasa-0.1.1 vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_fixtures_test.rb
cli-nasa-0.1.0 vendor/bundle/ruby/2.7.0/gems/json-2.3.1/tests/json_fixtures_test.rb
cloudsmith-api-0.52.5 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_fixtures_test.rb