jeffrafter-crocodile 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +5 -0
- data/LICENSE +20 -0
- data/README.rdoc +28 -0
- data/Rakefile +58 -0
- data/VERSION +1 -0
- data/bin/crocodile +52 -0
- data/crocodile.gemspec +54 -0
- data/lib/crocodile.rb +39 -0
- data/test/crocodile_test.rb +7 -0
- data/test/test_helper.rb +10 -0
- data/vendor/selenium-server.jar +0 -0
- metadata +75 -0
data/.document
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Jeff Rafter
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
= Crocodile
|
2
|
+
|
3
|
+
Crocodile is a simple lib and executable for taking screenshots. Make it better.
|
4
|
+
It relies on the selenium-client gem. Currently however, it is only compatabile
|
5
|
+
with the selenium-client -v=1.2.14. Newer versions of the selenium gem are
|
6
|
+
not yet supported.
|
7
|
+
|
8
|
+
$ sudo gem install selenium-client -v=1.2.14
|
9
|
+
$ sudo gem install crocodile
|
10
|
+
|
11
|
+
Once you have installed crocodile and the selenium-client gem you can quickly
|
12
|
+
snap shots of mockups from the commandline:
|
13
|
+
|
14
|
+
$ crocodile --start --stop --width=1024 --height=768 mockup.html mockup.png
|
15
|
+
|
16
|
+
This tells crocodile to start the Selenium Remote Control Server in the
|
17
|
+
background (and stop it when the task is completed). It tells it to load the
|
18
|
+
file mockup.html (because no protocol is included, the script assumes this is
|
19
|
+
on the local filesystem). Once loaded, the browser window will be resized to
|
20
|
+
1024 pixels by 768 pixels. The screenshot will be saved as mockup.png.
|
21
|
+
|
22
|
+
You can get basic help as well
|
23
|
+
|
24
|
+
$ crocodile --help
|
25
|
+
|
26
|
+
== Copyright
|
27
|
+
|
28
|
+
Copyright (c) 2009 Jeff Rafter. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "crocodile"
|
8
|
+
gem.summary = %Q{ Crocodile is a quick tool for taking screenshots using selenium-client }
|
9
|
+
gem.email = "jeff@baobabhealth.org"
|
10
|
+
gem.homepage = "http://github.com/jeffrafter/crocodile"
|
11
|
+
gem.authors = ["Jeff Rafter"]
|
12
|
+
gem.add_dependency('selenium-client', '= 1.2.14')
|
13
|
+
gem.files.include('vendor/*')
|
14
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
|
+
end
|
16
|
+
|
17
|
+
rescue LoadError
|
18
|
+
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
19
|
+
end
|
20
|
+
|
21
|
+
require 'rake/testtask'
|
22
|
+
Rake::TestTask.new(:test) do |test|
|
23
|
+
test.libs << 'lib' << 'test'
|
24
|
+
test.pattern = 'test/**/*_test.rb'
|
25
|
+
test.verbose = true
|
26
|
+
end
|
27
|
+
|
28
|
+
begin
|
29
|
+
require 'rcov/rcovtask'
|
30
|
+
Rcov::RcovTask.new do |test|
|
31
|
+
test.libs << 'test'
|
32
|
+
test.pattern = 'test/**/*_test.rb'
|
33
|
+
test.verbose = true
|
34
|
+
end
|
35
|
+
rescue LoadError
|
36
|
+
task :rcov do
|
37
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
|
42
|
+
task :default => :test
|
43
|
+
|
44
|
+
require 'rake/rdoctask'
|
45
|
+
Rake::RDocTask.new do |rdoc|
|
46
|
+
if File.exist?('VERSION.yml')
|
47
|
+
config = YAML.load(File.read('VERSION.yml'))
|
48
|
+
version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
|
49
|
+
else
|
50
|
+
version = ""
|
51
|
+
end
|
52
|
+
|
53
|
+
rdoc.rdoc_dir = 'rdoc'
|
54
|
+
rdoc.title = "crocodile #{version}"
|
55
|
+
rdoc.rdoc_files.include('README*')
|
56
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
57
|
+
end
|
58
|
+
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.2.0
|
data/bin/crocodile
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
if ARGV.size == 0 || ARGV.include?('--help')
|
3
|
+
puts "Usage: crocodile [options] source dest"
|
4
|
+
puts ""
|
5
|
+
puts " --start Start the selenium server"
|
6
|
+
puts " --stop Stop the selenium server"
|
7
|
+
puts " --width=WIDTH Set the width of the window"
|
8
|
+
puts " --height=HEIGHT Set the height of the window"
|
9
|
+
puts " --script=SCRIPT Execute arbitrary javascript in the window"
|
10
|
+
puts " --help"
|
11
|
+
exit
|
12
|
+
end
|
13
|
+
|
14
|
+
# Grab the params
|
15
|
+
params = ARGV.reject{|arg| arg =~ /^--/}
|
16
|
+
source = params[0] rescue nil
|
17
|
+
dest = params[1] rescue nil
|
18
|
+
|
19
|
+
raise "You're not doing it right" if source.empty? || dest.empty?
|
20
|
+
|
21
|
+
require 'rubygems'
|
22
|
+
require 'crocodile'
|
23
|
+
require 'net/http'
|
24
|
+
|
25
|
+
def opt(name)
|
26
|
+
p = ARGV.select{|arg| arg =~ /^--#{name}=/}.first
|
27
|
+
p.gsub(/^--#{name}=/, '') if p
|
28
|
+
end
|
29
|
+
|
30
|
+
width = opt "width"
|
31
|
+
height = opt "height"
|
32
|
+
script = opt "script"
|
33
|
+
|
34
|
+
puts "Starting Selenium"
|
35
|
+
options = {}
|
36
|
+
options[:start] = true if ARGV.include? '--start'
|
37
|
+
options[:stop] = true if ARGV.include? '--start'
|
38
|
+
options[:width] = width if width
|
39
|
+
options[:height] = height if height
|
40
|
+
|
41
|
+
source_uri = URI.parse(source)
|
42
|
+
if (source_uri.relative?)
|
43
|
+
source_path = File.expand_path(source)
|
44
|
+
source_base = "file://"
|
45
|
+
else
|
46
|
+
source_path = source_uri.path
|
47
|
+
source_base = source.gsub(Regexp.new(source_path + "$"), '')
|
48
|
+
end
|
49
|
+
Crocodile.snap(source_base, source_path, dest, options) do |browser|
|
50
|
+
browser.get_eval script if script
|
51
|
+
end
|
52
|
+
puts "Done"
|
data/crocodile.gemspec
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{crocodile}
|
5
|
+
s.version = "0.2.0"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Jeff Rafter"]
|
9
|
+
s.date = %q{2009-07-08}
|
10
|
+
s.default_executable = %q{crocodile}
|
11
|
+
s.email = %q{jeff@baobabhealth.org}
|
12
|
+
s.executables = ["crocodile"]
|
13
|
+
s.extra_rdoc_files = [
|
14
|
+
"LICENSE",
|
15
|
+
"README.rdoc"
|
16
|
+
]
|
17
|
+
s.files = [
|
18
|
+
".document",
|
19
|
+
".gitignore",
|
20
|
+
"LICENSE",
|
21
|
+
"README.rdoc",
|
22
|
+
"Rakefile",
|
23
|
+
"VERSION",
|
24
|
+
"bin/crocodile",
|
25
|
+
"crocodile.gemspec",
|
26
|
+
"lib/crocodile.rb",
|
27
|
+
"test/crocodile_test.rb",
|
28
|
+
"test/test_helper.rb",
|
29
|
+
"vendor/selenium-server.jar",
|
30
|
+
"vendor/selenium-server.jar"
|
31
|
+
]
|
32
|
+
s.homepage = %q{http://github.com/jeffrafter/crocodile}
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
34
|
+
s.require_paths = ["lib"]
|
35
|
+
s.rubygems_version = %q{1.3.4}
|
36
|
+
s.summary = %q{Crocodile is a quick tool for taking screenshots using selenium-client}
|
37
|
+
s.test_files = [
|
38
|
+
"test/crocodile_test.rb",
|
39
|
+
"test/test_helper.rb"
|
40
|
+
]
|
41
|
+
|
42
|
+
if s.respond_to? :specification_version then
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
44
|
+
s.specification_version = 3
|
45
|
+
|
46
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
47
|
+
s.add_runtime_dependency(%q<selenium-client>, ["= 1.2.14"])
|
48
|
+
else
|
49
|
+
s.add_dependency(%q<selenium-client>, ["= 1.2.14"])
|
50
|
+
end
|
51
|
+
else
|
52
|
+
s.add_dependency(%q<selenium-client>, ["= 1.2.14"])
|
53
|
+
end
|
54
|
+
end
|
data/lib/crocodile.rb
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
require 'selenium/client'
|
2
|
+
|
3
|
+
class Crocodile
|
4
|
+
|
5
|
+
HOST = "0.0.0.0"
|
6
|
+
PORT = 4444
|
7
|
+
TIMEOUT = 60
|
8
|
+
|
9
|
+
def self.start
|
10
|
+
selenium = Selenium::RemoteControl::RemoteControl.new(HOST, PORT, TIMEOUT)
|
11
|
+
selenium.jar_file = File.join(File.dirname(__FILE__), '..', 'vendor', "selenium-server.jar")
|
12
|
+
selenium.start :background => true
|
13
|
+
TCPSocket.wait_for_service :host => HOST, :port => PORT
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.stop
|
17
|
+
selenium = Selenium::RemoteControl::RemoteControl.new(HOST, PORT, TIMEOUT)
|
18
|
+
selenium.stop
|
19
|
+
TCPSocket.wait_for_service_termination :host => HOST, :port => PORT
|
20
|
+
end
|
21
|
+
|
22
|
+
def self.snap(host, url, dest, options, &block)
|
23
|
+
start if options[:start]
|
24
|
+
browser = Selenium::Client::Driver.new(
|
25
|
+
:host => HOST || options[:host],
|
26
|
+
:port => PORT || options[:port],
|
27
|
+
:timeout_in_second => TIMEOUT || options[:timeout],
|
28
|
+
:browser => "*firefox",
|
29
|
+
:url => host)
|
30
|
+
browser.start_new_browser_session
|
31
|
+
browser.open url
|
32
|
+
browser.get_eval "window.resizeTo(#{options[:width]},#{options[:height]});" if (options[:width] && options[:height])
|
33
|
+
yield browser if block
|
34
|
+
browser.capture_entire_page_screenshot File.join(File.expand_path('.'), dest), ''
|
35
|
+
browser.close_current_browser_session
|
36
|
+
ensure
|
37
|
+
stop if options[:stop]
|
38
|
+
end
|
39
|
+
end
|
data/test/test_helper.rb
ADDED
Binary file
|
metadata
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jeffrafter-crocodile
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jeff Rafter
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-07-08 00:00:00 -07:00
|
13
|
+
default_executable: crocodile
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: selenium-client
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - "="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.2.14
|
24
|
+
version:
|
25
|
+
description:
|
26
|
+
email: jeff@baobabhealth.org
|
27
|
+
executables:
|
28
|
+
- crocodile
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- LICENSE
|
33
|
+
- README.rdoc
|
34
|
+
files:
|
35
|
+
- .document
|
36
|
+
- .gitignore
|
37
|
+
- LICENSE
|
38
|
+
- README.rdoc
|
39
|
+
- Rakefile
|
40
|
+
- VERSION
|
41
|
+
- bin/crocodile
|
42
|
+
- crocodile.gemspec
|
43
|
+
- lib/crocodile.rb
|
44
|
+
- test/crocodile_test.rb
|
45
|
+
- test/test_helper.rb
|
46
|
+
- vendor/selenium-server.jar
|
47
|
+
has_rdoc: false
|
48
|
+
homepage: http://github.com/jeffrafter/crocodile
|
49
|
+
post_install_message:
|
50
|
+
rdoc_options:
|
51
|
+
- --charset=UTF-8
|
52
|
+
require_paths:
|
53
|
+
- lib
|
54
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: "0"
|
59
|
+
version:
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: "0"
|
65
|
+
version:
|
66
|
+
requirements: []
|
67
|
+
|
68
|
+
rubyforge_project:
|
69
|
+
rubygems_version: 1.2.0
|
70
|
+
signing_key:
|
71
|
+
specification_version: 3
|
72
|
+
summary: Crocodile is a quick tool for taking screenshots using selenium-client
|
73
|
+
test_files:
|
74
|
+
- test/crocodile_test.rb
|
75
|
+
- test/test_helper.rb
|