uh-wm/spec/uh/wm/client_spec.rb
2015-04-20 05:49:51 +00:00

134 lines
3.1 KiB
Ruby

module Uh
module WM
RSpec.describe Client do
let(:geo) { Geo.new(0, 0, 640, 480) }
let(:window) do
instance_spy Window, 'window', to_s: 'wid',
name: 'wname', wclass: 'wclass'
end
subject(:client) { described_class.new window, geo }
it 'is not visible' do
expect(client).not_to be_visible
end
it 'is hidden' do
expect(client).to be_hidden
end
it 'has an unmap count of 0' do
expect(client.unmap_count).to eq 0
end
describe '#to_s' do
it 'includes window name' do
expect(client.to_s).to include 'wname'
end
it 'includes window class' do
expect(client.to_s).to include 'wclass'
end
it 'includes geo' do
expect(client.to_s).to include geo.to_s
end
it 'includes window id' do
expect(client.to_s).to include 'wid'
end
end
describe '#name' do
it 'returns the window name' do
expect(client.name).to eq window.name
end
end
describe '#wclass' do
it 'returns the window class' do
expect(client.wclass).to eq window.wclass
end
end
describe '#configure' do
it 'configures the window with client geo' do
expect(window).to receive(:configure).with geo
client.configure
end
it 'returns self' do
expect(client.configure).to be client
end
end
describe '#moveresize' do
it 'moveresizes the window with client geo' do
expect(window).to receive(:moveresize).with geo
client.moveresize
end
it 'returns self' do
expect(client.moveresize).to be client
end
end
describe '#show' do
it 'maps the window' do
expect(window).to receive :map
client.show
end
it 'toggles the client as visible' do
expect { client.show }
.to change { client.visible? }
.from(false).to true
end
it 'returns self' do
expect(client.show).to be client
end
end
describe '#hide' do
it 'unmaps the window' do
expect(window).to receive :unmap
client.hide
end
it 'toggles the client as hidden' do
client.show
expect { client.hide }
.to change { client.hidden? }
.from(false).to true
end
it 'increments the unmap count' do
expect { client.hide }
.to change { client.unmap_count }
.from(0).to 1
end
it 'returns self' do
expect(client.hide).to be client
end
end
describe '#focus' do
it 'raises the window' do
expect(window).to receive :raise
client.focus
end
it 'focuses the window' do
expect(window).to receive :focus
client.focus
end
it 'returns self' do
expect(client.focus).to be client
end
end
end
end
end