2011-04-19 05:07:42 -04:00
|
|
|
# -*- encoding: UTF-8 -*-
|
|
|
|
|
2011-02-26 17:02:00 -05:00
|
|
|
require 'spec_helper'
|
2011-09-26 10:33:25 -04:00
|
|
|
require 'capybara/webkit'
|
2011-02-26 17:02:00 -05:00
|
|
|
|
2012-11-16 23:42:55 -05:00
|
|
|
module TestSessions
|
|
|
|
Webkit = Capybara::Session.new(:reusable_webkit, TestApp)
|
|
|
|
end
|
|
|
|
|
|
|
|
Capybara::SpecHelper.run_specs TestSessions::Webkit, "webkit"
|
|
|
|
|
2011-02-26 17:02:00 -05:00
|
|
|
describe Capybara::Session do
|
2011-04-14 10:16:56 -04:00
|
|
|
subject { Capybara::Session.new(:reusable_webkit, @app) }
|
|
|
|
after { subject.reset! }
|
|
|
|
|
|
|
|
context "slow javascript app" do
|
|
|
|
before(:all) do
|
|
|
|
@app = lambda do |env|
|
|
|
|
body = <<-HTML
|
|
|
|
<html><body>
|
|
|
|
<form action="/next" id="submit_me"><input type="submit" value="Submit" /></form>
|
|
|
|
<p id="change_me">Hello</p>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
var form = document.getElementById('submit_me');
|
|
|
|
form.addEventListener("submit", function (event) {
|
|
|
|
event.preventDefault();
|
|
|
|
setTimeout(function () {
|
|
|
|
document.getElementById("change_me").innerHTML = 'Good' + 'bye';
|
|
|
|
}, 500);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body></html>
|
|
|
|
HTML
|
|
|
|
[200,
|
|
|
|
{ 'Content-Type' => 'text/html', 'Content-Length' => body.length.to_s },
|
|
|
|
[body]]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
@default_wait_time = Capybara.default_wait_time
|
|
|
|
Capybara.default_wait_time = 1
|
|
|
|
end
|
|
|
|
|
|
|
|
after { Capybara.default_wait_time = @default_wait_time }
|
|
|
|
|
|
|
|
it "waits for a request to load" do
|
|
|
|
subject.visit("/")
|
|
|
|
subject.find_button("Submit").click
|
|
|
|
subject.should have_content("Goodbye");
|
|
|
|
end
|
|
|
|
end
|
2011-04-14 10:33:40 -04:00
|
|
|
|
|
|
|
context "simple app" do
|
|
|
|
before(:all) do
|
|
|
|
@app = lambda do |env|
|
|
|
|
body = <<-HTML
|
|
|
|
<html><body>
|
|
|
|
<strong>Hello</strong>
|
2011-04-19 05:07:42 -04:00
|
|
|
<span>UTF8文字列</span>
|
2011-04-19 07:51:38 -04:00
|
|
|
<input type="button" value="ボタン" />
|
2011-04-14 10:33:40 -04:00
|
|
|
</body></html>
|
|
|
|
HTML
|
|
|
|
[200,
|
2011-04-19 05:07:42 -04:00
|
|
|
{ 'Content-Type' => 'text/html; charset=UTF-8', 'Content-Length' => body.length.to_s },
|
2011-04-14 10:33:40 -04:00
|
|
|
[body]]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-04-19 05:07:42 -04:00
|
|
|
before do
|
2011-04-14 10:33:40 -04:00
|
|
|
subject.visit("/")
|
2011-04-19 05:07:42 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "inspects nodes" do
|
2011-04-14 10:33:40 -04:00
|
|
|
subject.all(:xpath, "//strong").first.inspect.should include("strong")
|
|
|
|
end
|
2011-04-19 05:07:42 -04:00
|
|
|
|
2011-04-19 07:51:38 -04:00
|
|
|
it "can read utf8 string" do
|
2011-04-19 05:07:42 -04:00
|
|
|
utf8str = subject.all(:xpath, "//span").first.text
|
|
|
|
utf8str.should eq('UTF8文字列')
|
|
|
|
end
|
2011-04-19 07:51:38 -04:00
|
|
|
|
|
|
|
it "can click utf8 string" do
|
|
|
|
subject.click_button('ボタン')
|
|
|
|
end
|
2011-04-14 10:33:40 -04:00
|
|
|
end
|
2011-08-23 11:18:08 -04:00
|
|
|
|
2011-08-26 10:10:20 -04:00
|
|
|
context "response headers with status code" do
|
2011-08-23 02:58:20 -04:00
|
|
|
before(:all) do
|
|
|
|
@app = lambda do |env|
|
|
|
|
params = ::Rack::Utils.parse_query(env['QUERY_STRING'])
|
|
|
|
if params["img"] == "true"
|
2011-08-23 11:18:08 -04:00
|
|
|
body = 'not found'
|
|
|
|
return [404, { 'Content-Type' => 'image/gif', 'Content-Length' => body.length.to_s }, [body]]
|
2011-08-23 02:58:20 -04:00
|
|
|
end
|
|
|
|
body = <<-HTML
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<img src="?img=true">
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
HTML
|
|
|
|
[200,
|
2011-08-26 10:10:20 -04:00
|
|
|
{ 'Content-Type' => 'text/html', 'Content-Length' => body.length.to_s, 'X-Capybara' => 'WebKit'},
|
2011-08-23 02:58:20 -04:00
|
|
|
[body]]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should get status code" do
|
|
|
|
subject.visit '/'
|
|
|
|
subject.status_code.should == 200
|
|
|
|
end
|
2011-08-26 09:58:31 -04:00
|
|
|
|
|
|
|
it "should reset status code" do
|
|
|
|
subject.visit '/'
|
|
|
|
subject.status_code.should == 200
|
|
|
|
subject.reset!
|
|
|
|
subject.status_code.should == 0
|
|
|
|
end
|
2011-08-26 10:10:20 -04:00
|
|
|
|
|
|
|
it "should get response headers" do
|
|
|
|
subject.visit '/'
|
|
|
|
subject.response_headers['X-Capybara'].should == 'WebKit'
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should reset response headers" do
|
|
|
|
subject.visit '/'
|
|
|
|
subject.response_headers['X-Capybara'].should == 'WebKit'
|
|
|
|
subject.reset!
|
|
|
|
subject.response_headers['X-Capybara'].should == nil
|
|
|
|
end
|
2011-08-23 02:58:20 -04:00
|
|
|
end
|
2012-12-11 21:46:17 -05:00
|
|
|
|
|
|
|
context "slow iframe app" do
|
|
|
|
before do
|
|
|
|
@app = Class.new(ExampleApp) do
|
|
|
|
get '/' do
|
|
|
|
<<-HTML
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<script>
|
|
|
|
function hang() {
|
|
|
|
xhr = new XMLHttpRequest();
|
|
|
|
xhr.onreadystatechange = function() {
|
|
|
|
if(xhr.readyState == 4){
|
|
|
|
document.getElementById('p').innerText = 'finished'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
xhr.open('GET', '/slow', true);
|
|
|
|
xhr.send();
|
|
|
|
document.getElementById("f").src = '/iframe';
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<a href="#" onclick="hang()">Click Me!</a>
|
|
|
|
<iframe src="about:blank" id="f"></iframe>
|
|
|
|
<p id="p"></p>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
HTML
|
|
|
|
end
|
|
|
|
|
|
|
|
get '/slow' do
|
|
|
|
sleep 1
|
2012-12-11 23:48:30 -05:00
|
|
|
status 204
|
2012-12-11 21:46:17 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
get '/iframe' do
|
|
|
|
status 204
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should not hang the server" do
|
|
|
|
subject.visit("/")
|
|
|
|
subject.click_link('Click Me!')
|
|
|
|
Capybara.using_wait_time(5) do
|
|
|
|
subject.should have_content("finished")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-12-18 22:46:24 -05:00
|
|
|
|
|
|
|
context "session app" do
|
|
|
|
before do
|
|
|
|
@app = Class.new(ExampleApp) do
|
|
|
|
enable :sessions
|
|
|
|
get '/' do
|
|
|
|
<<-HTML
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<form method="post" action="/sign_in">
|
|
|
|
<input type="text" name="username">
|
|
|
|
<input type="password" name="password">
|
|
|
|
<input type="submit" value="Submit">
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
HTML
|
|
|
|
end
|
|
|
|
|
|
|
|
post '/sign_in' do
|
|
|
|
session[:username] = params[:username]
|
|
|
|
session[:password] = params[:password]
|
|
|
|
redirect '/'
|
|
|
|
end
|
|
|
|
|
|
|
|
get '/other' do
|
|
|
|
<<-HTML
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<p>Welcome, #{session[:username]}.</p>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
HTML
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should not start queued commands more than once" do
|
|
|
|
subject.visit('/')
|
|
|
|
subject.fill_in('username', with: 'admin')
|
|
|
|
subject.fill_in('password', with: 'temp4now')
|
|
|
|
subject.click_button('Submit')
|
|
|
|
subject.visit('/other')
|
|
|
|
subject.should have_content('admin')
|
|
|
|
end
|
|
|
|
end
|
2012-12-10 22:53:03 -05:00
|
|
|
|
|
|
|
context "iframe app" do
|
|
|
|
before(:all) do
|
|
|
|
@app = Class.new(ExampleApp) do
|
|
|
|
get '/' do
|
|
|
|
<<-HTML
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<h1>Main Frame</h1>
|
|
|
|
<iframe src="/a" name="a_frame" width="500" height="500"></iframe>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
HTML
|
|
|
|
end
|
|
|
|
|
|
|
|
get '/a' do
|
|
|
|
<<-HTML
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<h1>Page A</h1>
|
|
|
|
<iframe src="/b" name="b_frame" width="500" height="500"></iframe>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
HTML
|
|
|
|
end
|
|
|
|
|
|
|
|
get '/b' do
|
|
|
|
<<-HTML
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<h1>Page B</h1>
|
|
|
|
<form action="/c" method="post">
|
|
|
|
<input id="button" name="commit" type="submit" value="B Button">
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
HTML
|
|
|
|
end
|
|
|
|
|
|
|
|
post '/c' do
|
|
|
|
<<-HTML
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<h1>Page C</h1>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
HTML
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'supports clicking an element offset from the viewport origin' do
|
|
|
|
subject.visit '/'
|
|
|
|
|
|
|
|
subject.within_frame 'a_frame' do
|
|
|
|
subject.within_frame 'b_frame' do
|
|
|
|
subject.click_button 'B Button'
|
|
|
|
subject.should have_content('Page C')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'click tests' do
|
|
|
|
before(:all) do
|
|
|
|
@app = Class.new(ExampleApp) do
|
|
|
|
get '/' do
|
|
|
|
<<-HTML
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
width: 800px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.target {
|
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
|
|
|
float: left;
|
|
|
|
margin: 100px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<body>
|
|
|
|
<div id="one" class="target"></div>
|
|
|
|
<div id="two" class="target"></div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var targets = document.getElementsByClassName('target');
|
|
|
|
for (var i = 0; i < targets.length; i++) {
|
|
|
|
var target = targets[i];
|
|
|
|
target.onclick = function(event) {
|
|
|
|
this.setAttribute('data-click-x', event.clientX);
|
|
|
|
this.setAttribute('data-click-y', event.clientY);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
HTML
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'clicks in the center of an element' do
|
|
|
|
subject.visit('/')
|
|
|
|
subject.find(:css, '#one').click
|
|
|
|
subject.find(:css, '#one')['data-click-x'].should == '199'
|
|
|
|
subject.find(:css, '#one')['data-click-y'].should == '199'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'clicks in the center of the viewable area of an element' do
|
|
|
|
subject.visit('/')
|
|
|
|
subject.driver.resize_window(200, 200)
|
|
|
|
subject.find(:css, '#one').click
|
|
|
|
subject.find(:css, '#one')['data-click-x'].should == '149'
|
|
|
|
subject.find(:css, '#one')['data-click-y'].should == '99'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'scrolls an element into view when clicked' do
|
|
|
|
subject.visit('/')
|
|
|
|
subject.driver.resize_window(200, 200)
|
|
|
|
subject.find(:css, '#two').click
|
|
|
|
subject.find(:css, '#two')['data-click-x'].should_not be_nil
|
|
|
|
subject.find(:css, '#two')['data-click-y'].should_not be_nil
|
|
|
|
end
|
2013-01-12 18:02:10 -05:00
|
|
|
|
|
|
|
it 'raises an error if an element is obscured when clicked' do
|
|
|
|
subject.visit('/')
|
|
|
|
|
|
|
|
subject.execute_script(<<-JS)
|
|
|
|
var two = document.getElementById('two');
|
|
|
|
two.style.position = 'absolute';
|
|
|
|
two.style.left = '0px';
|
|
|
|
two.style.top = '0px';
|
|
|
|
JS
|
|
|
|
|
|
|
|
lambda {
|
|
|
|
subject.find(:css, '#one').click
|
|
|
|
}.should raise_error(Capybara::Webkit::ClickFailed)
|
|
|
|
end
|
2012-12-10 22:53:03 -05:00
|
|
|
end
|
2011-04-14 10:16:56 -04:00
|
|
|
end
|