94 lines
2.7 KiB
Ruby
94 lines
2.7 KiB
Ruby
require 'forwardable'
|
|
require 'getoptlong'
|
|
|
|
module Jasmine
|
|
module Headless
|
|
class Options
|
|
extend Forwardable
|
|
|
|
def_delegators :@options, :[], :[]=
|
|
|
|
DEFAULT_OPTIONS = {
|
|
:colors => false,
|
|
:remove_html_file => true,
|
|
:runner_output_filename => false,
|
|
:jasmine_config => 'spec/javascripts/support/jasmine.yml',
|
|
:report => false,
|
|
:do_list => false,
|
|
:full_run => true,
|
|
:enable_cache => true,
|
|
:files => []
|
|
}
|
|
|
|
DEFAULTS_FILE = File.join(Dir.pwd, '.jasmine-headless-webkit')
|
|
GLOBAL_DEFAULTS_FILE = File.expand_path('~/.jasmine-headless-webkit')
|
|
|
|
def self.from_command_line
|
|
options = new
|
|
options.process_command_line_args
|
|
options[:files] = ARGV
|
|
options
|
|
end
|
|
|
|
def initialize(opts = {})
|
|
@options = DEFAULT_OPTIONS.dup
|
|
read_defaults_files
|
|
opts.each { |k, v| @options[k] = v if v }
|
|
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
|
|
when '--keep'
|
|
@options[:remove_html_file] = false
|
|
when '--report'
|
|
@options[:report] = arg
|
|
when '--runner-out'
|
|
@options[:runner_output_filename] = arg
|
|
when '--jasmine-config', '-j'
|
|
@options[:jasmine_config] = arg
|
|
when '--no-full-run'
|
|
@options[:full_run] = false
|
|
when '--list', '-l'
|
|
@options[:do_list] = true
|
|
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 ],
|
|
[ '--keep', GetoptLong::NO_ARGUMENT ],
|
|
[ '--runner-out', GetoptLong::REQUIRED_ARGUMENT ],
|
|
[ '--report', GetoptLong::REQUIRED_ARGUMENT ],
|
|
[ '--jasmine-config', '-j', GetoptLong::REQUIRED_ARGUMENT ],
|
|
[ '--no-full-run', GetoptLong::NO_ARGUMENT ],
|
|
[ '--list', '-l', GetoptLong::NO_ARGUMENT ]
|
|
)
|
|
|
|
command_line_args.each { |*args| process_option(*args) }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|