1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

Merge remote branch 'grimen/master'

Conflicts:
	.gitignore
This commit is contained in:
Jonas Nicklas 2010-06-29 21:35:53 +02:00
commit cfe5a48a4f
4 changed files with 66 additions and 21 deletions

3
.gitignore vendored
View file

@ -1,7 +1,8 @@
.idea/
.DS_Store
pkg
tmp
*~
spec.opts
.rvmrc
capybara-*.html

View file

@ -15,6 +15,7 @@ module Capybara
class << self
attr_accessor :debug, :asset_root, :app_host, :run_server, :default_host
attr_accessor :default_selector, :default_wait_time, :ignore_hidden_elements
attr_accessor :save_and_open_page_path
def default_selector
@default_selector ||= :xpath

View file

@ -3,8 +3,11 @@ module Capybara
extend(self)
def save_and_open_page(html)
name="capybara-#{Time.new.strftime("%Y%m%d%H%M%S")}.html"
name = File.join(*[Capybara.save_and_open_page_path, "capybara-#{Time.new.strftime("%Y%m%d%H%M%S")}.html"].compact)
unless Capybara.save_and_open_page_path.blank? || File.directory?(Capybara.save_and_open_page_path )
FileUtils.mkdir_p(Capybara.save_and_open_page_path)
end
FileUtils.touch(name) unless File.exist?(name)
tempfile = File.new(name,'w')

View file

@ -5,17 +5,11 @@ require 'launchy'
describe Capybara::SaveAndOpenPage do
describe "#save_save_and_open_page" do
before do
@time = Time.new.strftime("%Y%m%d%H%M%S")
@name = "capybara-#{@time}.html"
@temp_file = mock("FILE")
@temp_file.stub!(:write)
@temp_file.stub!(:close)
@temp_file.stub!(:path).and_return(@name)
File.should_receive(:exist?).and_return true
File.should_receive(:new).and_return @temp_file
@html = <<-HTML
<html>
@ -30,6 +24,16 @@ describe Capybara::SaveAndOpenPage do
Launchy::Browser.stub(:run)
end
describe "defaults" do
before do
@name = "capybara-#{@time}.html"
@temp_file.stub!(:path).and_return(@name)
File.should_receive(:exist?).and_return true
File.should_receive(:new).and_return @temp_file
end
it "should create a new temporary file" do
@temp_file.should_receive(:write).with @html
Capybara::SaveAndOpenPage.save_and_open_page @html
@ -40,4 +44,40 @@ describe Capybara::SaveAndOpenPage do
Capybara::SaveAndOpenPage.save_and_open_page @html
end
end
describe "custom output path" do
before do
@custom_path = File.join('tmp', 'capybara')
@custom_name = File.join(@custom_path, "capybara-#{@time}.html")
@temp_file.stub!(:path).and_return(@custom_name)
Capybara.should_receive(:save_and_open_page_path).at_least(:once).and_return(@custom_path)
end
it "should create a new temporary file in the custom path" do
File.should_receive(:directory?).and_return true
File.should_receive(:exist?).and_return true
File.should_receive(:new).and_return @temp_file
@temp_file.should_receive(:write).with @html
Capybara::SaveAndOpenPage.save_and_open_page @html
end
it "should open the file - in the custom path - in the browser" do
Capybara::SaveAndOpenPage.should_receive(:open_in_browser).with(@custom_name)
Capybara::SaveAndOpenPage.save_and_open_page @html
end
it "should be possible to configure output path" do
Capybara.should respond_to(:save_and_open_page_path)
default_setting = Capybara.save_and_open_page_path
lambda {
Capybara.save_and_open_page_path = File.join('tmp', 'capybara')
Capybara.save_and_open_page_path.should == File.join('tmp', 'capybara')
}.should_not raise_error
Capybara.save_and_open_page_path = default_setting
end
end
end
end