Sha256: a30833d7709b8c618683f056624c72b810d64afe63e429a59f771d9ea42e3980

Contents?: true

Size: 936 Bytes

Versions: 4

Compression:

Stored size: 936 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
      @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

4 entries across 4 versions & 1 rubygems

Version Path
ruby_speech-1.0.1 spec/support/matchers.rb
ruby_speech-1.0.0 spec/support/matchers.rb
ruby_speech-0.5.1 spec/support/matchers.rb
ruby_speech-0.5.0 spec/support/matchers.rb