debian-mirror-gitlab/spec/lib/gitlab/popen_spec.rb

46 lines
1 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
describe 'Gitlab::Popen', no_db: true do
let (:path) { Rails.root.join('tmp').to_s }
before do
@klass = Class.new(Object)
@klass.send(:include, Gitlab::Popen)
end
context 'zero status' do
before do
@output, @status = @klass.new.popen(%W(ls), path)
end
2015-04-26 12:48:37 +05:30
it { expect(@status).to be_zero }
it { expect(@output).to include('cache') }
2014-09-02 18:07:02 +05:30
end
context 'non-zero status' do
before do
@output, @status = @klass.new.popen(%W(cat NOTHING), path)
end
2015-04-26 12:48:37 +05:30
it { expect(@status).to eq(1) }
it { expect(@output).to include('No such file or directory') }
2014-09-02 18:07:02 +05:30
end
context 'unsafe string command' do
it 'raises an error when it gets called with a string argument' do
expect { @klass.new.popen('ls', path) }.to raise_error
end
end
context 'without a directory argument' do
before do
@output, @status = @klass.new.popen(%W(ls))
end
2015-04-26 12:48:37 +05:30
it { expect(@status).to be_zero }
it { expect(@output).to include('spec') }
2014-09-02 18:07:02 +05:30
end
end