2016-03-07 19:52:19 -05:00
|
|
|
# frozen_string_literal: true
|
2018-02-28 19:11:41 -05:00
|
|
|
|
2014-03-21 22:09:15 -04:00
|
|
|
require 'launchy'
|
|
|
|
|
|
|
|
Capybara::SpecHelper.spec '#save_and_open_screenshot' do
|
|
|
|
before do
|
|
|
|
@session.visit '/'
|
|
|
|
end
|
|
|
|
|
2016-10-04 14:10:29 -04:00
|
|
|
it 'opens file from the default directory', requires: [:screenshot] do
|
2018-05-14 17:30:34 -04:00
|
|
|
expected_file_regex = /capybara-\d+\.png/
|
2014-04-03 21:49:55 -04:00
|
|
|
allow(@session.driver).to receive(:save_screenshot)
|
|
|
|
allow(Launchy).to receive(:open)
|
2014-03-21 22:09:15 -04:00
|
|
|
|
|
|
|
@session.save_and_open_screenshot
|
|
|
|
|
2018-02-28 19:11:41 -05:00
|
|
|
expect(@session.driver).to have_received(:save_screenshot)
|
2019-11-29 12:46:51 -05:00
|
|
|
.with(expected_file_regex, any_args)
|
2014-03-21 22:09:15 -04:00
|
|
|
expect(Launchy).to have_received(:open).with(expected_file_regex)
|
|
|
|
end
|
|
|
|
|
2016-10-04 14:10:29 -04:00
|
|
|
it 'opens file from the provided directory', requires: [:screenshot] do
|
2014-03-21 22:09:15 -04:00
|
|
|
custom_path = 'screenshots/1.png'
|
2014-04-03 21:49:55 -04:00
|
|
|
allow(@session.driver).to receive(:save_screenshot)
|
|
|
|
allow(Launchy).to receive(:open)
|
2014-03-21 22:09:15 -04:00
|
|
|
|
|
|
|
@session.save_and_open_screenshot(custom_path)
|
|
|
|
|
2018-02-28 19:11:41 -05:00
|
|
|
expect(@session.driver).to have_received(:save_screenshot)
|
2019-11-29 12:46:51 -05:00
|
|
|
.with(/#{custom_path}$/, any_args)
|
2016-04-05 12:33:19 -04:00
|
|
|
expect(Launchy).to have_received(:open).with(/#{custom_path}$/)
|
2014-03-21 22:09:15 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when launchy cannot be required' do
|
2016-10-04 14:10:29 -04:00
|
|
|
it 'prints out a correct warning message', requires: [:screenshot] do
|
2014-03-21 22:09:15 -04:00
|
|
|
file_path = File.join(Dir.tmpdir, 'test.png')
|
2018-04-27 14:01:47 -04:00
|
|
|
allow(@session).to receive(:warn)
|
2014-04-03 21:49:55 -04:00
|
|
|
allow(@session).to receive(:require).with('launchy').and_raise(LoadError)
|
2014-03-21 22:09:15 -04:00
|
|
|
@session.save_and_open_screenshot(file_path)
|
2018-04-27 14:01:47 -04:00
|
|
|
expect(@session).to have_received(:warn).with("File saved to #{file_path}.\nPlease install the launchy gem to open the file automatically.")
|
2014-03-21 22:09:15 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|