1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
require 'spec_helper'
require 'puppet/util/terminal'
describe Puppet::Util::Terminal do
describe '.width' do
before { allow(Puppet.features).to receive(:posix?).and_return(true) }
it 'should invoke `stty` and return the width' do
height, width = 100, 200
expect(subject).to receive(:`).with('stty size 2>/dev/null').and_return("#{height} #{width}\n")
expect(subject.width).to eq(width)
end
it 'should use `tput` if `stty` is unavailable' do
width = 200
expect(subject).to receive(:`).with('stty size 2>/dev/null').and_return("\n")
expect(subject).to receive(:`).with('tput cols 2>/dev/null').and_return("#{width}\n")
expect(subject.width).to eq(width)
end
it 'should default to 80 columns if `tput` and `stty` are unavailable' do
width = 80
expect(subject).to receive(:`).with('stty size 2>/dev/null').and_return("\n")
expect(subject).to receive(:`).with('tput cols 2>/dev/null').and_return("\n")
expect(subject.width).to eq(width)
end
it 'should default to 80 columns if `tput` or `stty` raise exceptions' do
width = 80
expect(subject).to receive(:`).with('stty size 2>/dev/null').and_raise()
allow(subject).to receive(:`).with('tput cols 2>/dev/null').and_return("#{width + 1000}\n")
expect(subject.width).to eq(width)
end
it 'should default to 80 columns if not in a POSIX environment' do
width = 80
allow(Puppet.features).to receive(:posix?).and_return(false)
expect(subject.width).to eq(width)
end
end
end
|