Skip to content

Commit

Permalink
Merge remote branch 'grimen/master'
Browse files Browse the repository at this point in the history
Conflicts:
	.gitignore
  • Loading branch information
jnicklas committed Jun 29, 2010
2 parents 0b6dad7 + af1df52 commit cfe5a48
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 20 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
.idea/
.DS_Store
pkg
tmp
*~
spec.opts

.rvmrc
.rvmrc
capybara-*.html
9 changes: 5 additions & 4 deletions lib/capybara.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,16 @@ class NotSupportedByDriverError < CapybaraError; end
class TimeoutError < CapybaraError; end
class LocateHiddenElementError < CapybaraError; end
class InfiniteRedirectError < TimeoutError; end

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
end

def default_wait_time
@default_wait_time ||= 2
end
Expand All @@ -29,14 +30,14 @@ def log(message)
true
end
end

autoload :Server, 'capybara/server'
autoload :Session, 'capybara/session'
autoload :Node, 'capybara/node'
autoload :XPath, 'capybara/xpath'
autoload :Searchable, 'capybara/searchable'
autoload :VERSION, 'capybara/version'

module Driver
autoload :Base, 'capybara/driver/base'
autoload :RackTest, 'capybara/driver/rack_test_driver'
Expand Down
5 changes: 4 additions & 1 deletion lib/capybara/save_and_open_page.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ module SaveAndOpenPage
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')
Expand Down
66 changes: 53 additions & 13 deletions spec/save_and_open_page_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,12 @@
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>
<head>
Expand All @@ -30,14 +24,60 @@
Launchy::Browser.stub(:run)
end

it "should create a new temporary file" do
@temp_file.should_receive(:write).with @html
Capybara::SaveAndOpenPage.save_and_open_page @html
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
end

it "should open the file in the browser" do
Capybara::SaveAndOpenPage.should_receive(:open_in_browser).with(@name)
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")

it "should open the file in the browser" do
Capybara::SaveAndOpenPage.should_receive(:open_in_browser).with(@name)
Capybara::SaveAndOpenPage.save_and_open_page @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

0 comments on commit cfe5a48

Please sign in to comment.