Sha256: 2eae4b544b716e8931d3dbeaaba6aae16ca822229ebc47b12150f105c2667018

Contents?: true

Size: 1.01 KB

Versions: 13

Compression:

Stored size: 1.01 KB

Contents

#!/usr/bin/env ruby
# encoding: UTF-8

#frozen_string_literal: false

require 'json_gem/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
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
oj-3.16.9 test/json_gem/json_fixtures_test.rb
oj-3.16.8 test/json_gem/json_fixtures_test.rb
oj-3.16.7 test/json_gem/json_fixtures_test.rb
oj-3.16.6 test/json_gem/json_fixtures_test.rb
oj-3.16.5 test/json_gem/json_fixtures_test.rb
oj-3.16.4 test/json_gem/json_fixtures_test.rb
oj-3.16.3 test/json_gem/json_fixtures_test.rb
oj-3.16.2 test/json_gem/json_fixtures_test.rb
oj-3.16.1 test/json_gem/json_fixtures_test.rb
oj-3.16.0 test/json_gem/json_fixtures_test.rb
oj-3.15.1 test/json_gem/json_fixtures_test.rb
oj-3.15.0 test/json_gem/json_fixtures_test.rb
oj-3.14.3 test/json_gem/json_fixtures_test.rb