jasmine-headless-webkit/lib/jasmine/headless/options.rb

94 lines
2.7 KiB
Ruby
Raw Normal View History

2011-06-16 13:51:49 +00:00
require 'forwardable'
require 'getoptlong'
2011-06-16 13:51:49 +00:00
module Jasmine
module Headless
class Options
extend Forwardable
def_delegators :@options, :[], :[]=
DEFAULT_OPTIONS = {
:colors => false,
:remove_html_file => true,
:runner_output_filename => false,
2011-06-16 13:51:49 +00:00
:jasmine_config => 'spec/javascripts/support/jasmine.yml',
:report => false,
2011-08-22 17:26:48 +00:00
:do_list => false,
2011-06-16 13:51:49 +00:00
:full_run => true,
:enable_cache => true,
2011-06-16 13:51:49 +00:00
:files => []
}
2011-08-24 00:07:05 +00:00
DEFAULTS_FILE = File.join(Dir.pwd, '.jasmine-headless-webkit')
2011-10-16 15:05:35 +00:00
GLOBAL_DEFAULTS_FILE = File.expand_path('~/.jasmine-headless-webkit')
2011-06-16 13:51:49 +00:00
def self.from_command_line
options = new
options.process_command_line_args
options[:files] = ARGV
options
end
def initialize(opts = {})
@options = DEFAULT_OPTIONS.dup
2011-08-24 00:07:05 +00:00
read_defaults_files
opts.each { |k, v| @options[k] = v if v }
2011-06-16 13:51:49 +00:00
end
def process_option(*args)
opt, arg = args.flatten[0..1]
case opt
when '--colors', '-c'
@options[:colors] = true
when '--no-colors', '-nc'
@options[:colors] = false
when '--cache'
@options[:enable_cache] = true
when '--no-cache'
@options[:enable_cache] = false
2011-06-16 13:51:49 +00:00
when '--keep'
@options[:remove_html_file] = false
when '--report'
@options[:report] = arg
when '--runner-out'
@options[:runner_output_filename] = arg
2011-06-16 13:51:49 +00:00
when '--jasmine-config', '-j'
@options[:jasmine_config] = arg
when '--no-full-run'
@options[:full_run] = false
2011-08-22 17:26:48 +00:00
when '--list', '-l'
@options[:do_list] = true
2011-06-16 13:51:49 +00:00
end
end
def read_defaults_files
[ GLOBAL_DEFAULTS_FILE, DEFAULTS_FILE ].each do |file|
if File.file?(file)
File.readlines(file).collect { |line| line.strip.split(' ', 2) }.each { |*args| process_option(*args) }
end
end
end
def process_command_line_args
command_line_args = GetoptLong.new(
[ '--colors', '-c', GetoptLong::NO_ARGUMENT ],
[ '--no-colors', GetoptLong::NO_ARGUMENT ],
[ '--cache', GetoptLong::NO_ARGUMENT ],
[ '--no-t stcache', GetoptLong::NO_ARGUMENT ],
2011-06-16 13:51:49 +00:00
[ '--keep', GetoptLong::NO_ARGUMENT ],
[ '--runner-out', GetoptLong::REQUIRED_ARGUMENT ],
2011-06-16 13:51:49 +00:00
[ '--report', GetoptLong::REQUIRED_ARGUMENT ],
[ '--jasmine-config', '-j', GetoptLong::REQUIRED_ARGUMENT ],
2011-08-22 17:26:48 +00:00
[ '--no-full-run', GetoptLong::NO_ARGUMENT ],
[ '--list', '-l', GetoptLong::NO_ARGUMENT ]
2011-06-16 13:51:49 +00:00
)
command_line_args.each { |*args| process_option(*args) }
end
end
end
end