discourse/lib/autospec/rspec_runner.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.8 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-11-01 18:57:50 -04:00
module Autospec
class RspecRunner < BaseRunner
WATCHERS = {}
def self.watch(pattern, &blk)
WATCHERS[pattern] = blk
end
def watchers
WATCHERS
end
2013-11-01 18:57:50 -04:00
# Discourse specific
watch(%r{\Alib/(.+)\.rb\z}) { |m| "spec/components/#{m[1]}_spec.rb" }
2013-11-01 18:57:50 -04:00
watch(%r{\Aapp/(.+)\.rb\z}) { |m| "spec/#{m[1]}_spec.rb" }
watch(%r{\Aapp/(.+)(\.erb|\.haml)\z}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
watch(%r{\Aspec/.+_spec\.rb\z})
watch(%r{\Aspec/support/.+\.rb\z}) { "spec" }
watch("app/controllers/application_controller.rb") { "spec/requests" }
watch(%r{app/controllers/(.+).rb}) { |m| "spec/requests/#{m[1]}_spec.rb" }
2013-11-01 18:57:50 -04:00
watch(%r{\Aapp/views/(.+)/.+\.(erb|haml)\z}) { |m| "spec/requests/#{m[1]}_spec.rb" }
2013-11-01 18:57:50 -04:00
watch(%r{\Aspec/fabricators/.+_fabricator\.rb\z}) { "spec" }
2013-11-01 18:57:50 -04:00
watch(%r{\Aapp/assets/javascripts/pretty-text/.*\.js\.es6\z}) do
"spec/components/pretty_text_spec.rb"
end
watch(%r{\Aplugins/.*/discourse-markdown/.*\.js\.es6\z}) do
"spec/components/pretty_text_spec.rb"
end
watch(%r{\Aplugins/.*/spec/.*\.rb})
watch(%r{\A(plugins/.*/)plugin\.rb}) { |m| "#{m[1]}spec" }
watch(%r{\A(plugins/.*)/(lib|app)}) { |m| "#{m[1]}/spec/integration" }
watch(%r{\A(plugins/.*)/lib/(.*)\.rb}) { |m| "#{m[1]}/spec/lib/#{m[2]}_spec.rb" }
2013-11-01 18:57:50 -04:00
RELOADERS = Set.new
def self.reload(pattern)
RELOADERS << pattern
end
def reloaders
RELOADERS
end
2013-11-01 18:57:50 -04:00
# we are using a simple runner at the moment, whole idea of using a reloader is no longer needed
watch("spec/rails_helper.rb")
watch(%r{config/.+\.rb})
#reload(%r{app/helpers/.+\.rb})
2013-11-01 18:57:50 -04:00
def failed_specs
specs = []
path = "./tmp/rspec_result"
specs = File.readlines(path) if File.exist?(path)
specs
end
end
end