lib/vcr/cassette/serializers/json.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'json'

module VCR
  class Cassette
    class Serializers
      # The JSON serializer.
      #
      # @see Psych
      # @see Syck
      # @see YAML
      module JSON
        extend self
        extend EncodingErrorHandling
        extend SyntaxErrorHandling

        # @private
        ENCODING_ERRORS = [ArgumentError]
        ENCODING_ERRORS << ::JSON::GeneratorError

        # @private
        SYNTAX_ERRORS = [::JSON::ParserError]

        # The file extension to use for this serializer.
        #
        # @return [String] "json"
        def file_extension
          "json"
        end

        # Serializes the given hash using `JSON`.
        #
        # @param [Hash] hash the object to serialize
        # @return [String] the JSON string
        def serialize(hash)
          handle_encoding_errors do
            ::JSON.pretty_generate(hash)
          end
        end

        # Deserializes the given string using `JSON`.
        #
        # @param [String] string the JSON string
        # @return [Hash] the deserialized object
        def deserialize(string)
          handle_encoding_errors do
            handle_syntax_errors do
              ::JSON.parse(string)
            end
          end
        end
      end
    end
  end
end