2012-02-12 22:53:34 -05:00
|
|
|
require 'helper'
|
|
|
|
require 'sidekiq/cli'
|
2012-02-15 13:56:36 -05:00
|
|
|
require 'tempfile'
|
2012-02-12 22:53:34 -05:00
|
|
|
|
|
|
|
class TestCli < MiniTest::Unit::TestCase
|
|
|
|
describe 'with cli' do
|
|
|
|
before do
|
|
|
|
@cli = new_cli
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'blows up with an invalid require' do
|
|
|
|
assert_raises ArgumentError do
|
|
|
|
@cli.parse(['sidekiq', '-r', 'foobar'])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'blows up with invalid Ruby' do
|
|
|
|
@cli.parse(['sidekiq', '-r', './test/fake_env.rb'])
|
|
|
|
assert($LOADED_FEATURES.any? { |x| x =~ /fake_env/ })
|
|
|
|
assert @cli.valid?
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'changes concurrency' do
|
|
|
|
@cli.parse(['sidekiq', '-c', '60', '-r', './test/fake_env.rb'])
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal 60, Sidekiq.options[:concurrency]
|
2012-02-12 22:53:34 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'changes queues' do
|
|
|
|
@cli.parse(['sidekiq', '-q', 'foo', '-r', './test/fake_env.rb'])
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal ['foo'], Sidekiq.options[:queues]
|
2012-02-12 22:53:34 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'handles weights' do
|
|
|
|
@cli.parse(['sidekiq', '-q', 'foo,3', '-q', 'bar', '-r', './test/fake_env.rb'])
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal %w(bar foo foo foo), Sidekiq.options[:queues].sort
|
2012-02-12 22:53:34 -05:00
|
|
|
end
|
|
|
|
|
2012-02-15 13:56:36 -05:00
|
|
|
describe 'with pidfile' do
|
|
|
|
before do
|
|
|
|
@tmp_file = Tempfile.new('sidekiq-test')
|
|
|
|
@tmp_path = @tmp_file.path
|
|
|
|
@tmp_file.close!
|
2012-02-15 21:13:32 -05:00
|
|
|
|
2012-02-15 14:24:01 -05:00
|
|
|
@cli.parse(['sidekiq', '-P', @tmp_path, '-r', './test/fake_env.rb'])
|
2012-02-15 13:56:36 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
File.unlink @tmp_path if File.exist? @tmp_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets pidfile path' do
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal @tmp_path, Sidekiq.options[:pidfile]
|
2012-02-15 13:56:36 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'writes pidfile' do
|
|
|
|
assert_equal File.read(@tmp_path).strip.to_i, Process.pid
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-02-15 21:13:32 -05:00
|
|
|
describe 'with config file' do
|
|
|
|
before do
|
|
|
|
@cli.parse(['sidekiq', '-C', './test/config.yml'])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'takes a path' do
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal './test/config.yml', Sidekiq.options[:config_file]
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets verbose' do
|
2012-02-19 16:02:32 -05:00
|
|
|
refute Sidekiq.options[:verbose]
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
2012-02-19 16:02:32 -05:00
|
|
|
|
2012-02-15 21:13:32 -05:00
|
|
|
it 'sets require file' do
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal './test/fake_env.rb', Sidekiq.options[:require]
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets environment' do
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal 'xzibit', Sidekiq.options[:environment]
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets concurrency' do
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal 50, Sidekiq.options[:concurrency]
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets pid file' do
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal '/tmp/sidekiq-config-test.pid', Sidekiq.options[:pidfile]
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets queues' do
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal 2, Sidekiq.options[:queues].select{ |q| q == 'often' }.length
|
|
|
|
assert_equal 1, Sidekiq.options[:queues].select{ |q| q == 'seldom' }.length
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with config file and flags' do
|
|
|
|
before do
|
|
|
|
# We need an actual file here.
|
|
|
|
@tmp_lib_path = '/tmp/require-me.rb'
|
|
|
|
File.open(@tmp_lib_path, 'w') do |f|
|
|
|
|
f.puts "# do work"
|
|
|
|
end
|
|
|
|
|
|
|
|
@tmp_file = Tempfile.new('sidekiqr')
|
|
|
|
@tmp_path = @tmp_file.path
|
|
|
|
@tmp_file.close!
|
|
|
|
|
|
|
|
@cli.parse(['sidekiq',
|
|
|
|
'-C', './test/config.yml',
|
|
|
|
'-e', 'snoop',
|
|
|
|
'-c', '100',
|
|
|
|
'-r', @tmp_lib_path,
|
|
|
|
'-P', @tmp_path,
|
|
|
|
'-q', 'often,7',
|
|
|
|
'-q', 'seldom,3'])
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
File.unlink @tmp_lib_path if File.exist? @tmp_lib_path
|
|
|
|
File.unlink @tmp_path if File.exist? @tmp_path
|
|
|
|
end
|
|
|
|
|
2012-02-16 12:45:55 -05:00
|
|
|
it 'uses concurrency flag' do
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal 100, Sidekiq.options[:concurrency]
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
2012-02-19 16:02:32 -05:00
|
|
|
|
2012-02-15 21:13:32 -05:00
|
|
|
it 'uses require file flag' do
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal @tmp_lib_path, Sidekiq.options[:require]
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'uses environment flag' do
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal 'snoop', Sidekiq.options[:environment]
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'uses pidfile flag' do
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal @tmp_path, Sidekiq.options[:pidfile]
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets queues' do
|
2012-02-19 16:02:32 -05:00
|
|
|
assert_equal 7, Sidekiq.options[:queues].select{ |q| q == 'often' }.length
|
|
|
|
assert_equal 3, Sidekiq.options[:queues].select{ |q| q == 'seldom' }.length
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-02-12 22:53:34 -05:00
|
|
|
def new_cli
|
|
|
|
cli = Sidekiq::CLI.new
|
|
|
|
def cli.die(code)
|
|
|
|
@code = code
|
|
|
|
end
|
|
|
|
|
|
|
|
def cli.valid?
|
|
|
|
!@code
|
|
|
|
end
|
|
|
|
cli
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|