webrat/spec/api/basic_auth_spec.rb

25 lines
661 B
Ruby
Raw Normal View History

2008-10-17 15:43:14 +00:00
require File.expand_path(File.dirname(__FILE__) + "/../spec_helper")
describe "Basic Auth HTTP headers" do
before do
2008-11-23 05:22:49 +00:00
basic_auth('user', 'secret')
2008-10-17 15:43:14 +00:00
end
2008-11-05 23:20:27 +00:00
it "should be present in visit" do
2008-11-23 05:22:49 +00:00
webrat_session.should_receive(:get).with("/", {}, {'HTTP_AUTHORIZATION' => "Basic dXNlcjpzZWNyZXQ=\n"})
visit("/")
2008-10-17 15:43:14 +00:00
end
it "should be present in form submits" do
2008-11-23 05:22:49 +00:00
with_html <<-HTML
<html>
2008-10-17 15:43:14 +00:00
<form method="post" action="/form1">
<input type="submit" />
</form>
</html>
2008-11-23 05:22:49 +00:00
HTML
webrat_session.should_receive(:post).with("/form1", {}, {'HTTP_AUTHORIZATION' => "Basic dXNlcjpzZWNyZXQ=\n"})
click_button
2008-10-17 15:43:14 +00:00
end
end