Sha256: d24fc6c1af40967133385f13aead4f6a2ae5b5e769fcc1437e10dcfec4ffe731

Contents?: true

Size: 943 Bytes

Versions: 3

Compression:

Stored size: 943 Bytes

Contents

def be_a_valid_grxml_document
  SpeechDocMatcher.new 'GRXML', GRXML_SCHEMA
end

def be_a_valid_ssml_document
  SpeechDocMatcher.new 'SSML', SSML_SCHEMA
end

class SpeechDocMatcher
  attr_reader :subject, :type, :schema

  def initialize(type, schema)
    @type, @schema = type, schema
  end

  def subject=(s)
    if s.is_a? Nokogiri::XML::Document
      @subject = s
    else
      doc = Nokogiri::XML::Document.new
      doc << s.to_xml
      @subject = doc
    end
  end

  def failure_message
    " expected #{subject} to be a valid #{type} document\n#{errors}"
  end

  def negative_failure_message
    " expected #{subject} not to be a valid #{type} document"
  end

  def description
    "to be a valid #{type} document"
  end

  def matches?(s)
    self.subject = s
    schema.valid? subject
  end

  def does_not_match?(s)
    !matches? s
  end

  private

  def errors
    schema.validate(subject).map(&:message).join "\n"
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby_speech-2.0.1 spec/support/matchers.rb
ruby_speech-1.1.0 spec/support/matchers.rb
ruby_speech-1.0.2 spec/support/matchers.rb