integrity 0.1.8 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +7 -0
- data/Rakefile +59 -132
- data/VERSION.yml +1 -1
- data/config/config.ru +29 -0
- data/config/config.sample.ru +6 -16
- data/config/config.sample.yml +15 -12
- data/config/config.yml +34 -0
- data/lib/integrity.rb +13 -13
- data/lib/integrity/app.rb +138 -0
- data/lib/integrity/author.rb +39 -0
- data/lib/integrity/build.rb +54 -31
- data/lib/integrity/commit.rb +71 -0
- data/lib/integrity/helpers.rb +3 -3
- data/lib/integrity/helpers/authorization.rb +2 -2
- data/lib/integrity/helpers/forms.rb +3 -3
- data/lib/integrity/helpers/pretty_output.rb +1 -1
- data/lib/integrity/helpers/rendering.rb +6 -1
- data/lib/integrity/helpers/resources.rb +9 -3
- data/lib/integrity/helpers/urls.rb +15 -13
- data/lib/integrity/installer.rb +45 -56
- data/lib/integrity/migrations.rb +31 -48
- data/lib/integrity/notifier.rb +14 -16
- data/lib/integrity/notifier/base.rb +29 -19
- data/lib/integrity/notifier/test_helpers.rb +100 -0
- data/lib/integrity/project.rb +69 -33
- data/lib/integrity/project_builder.rb +23 -14
- data/lib/integrity/scm/git.rb +15 -14
- data/lib/integrity/scm/git/uri.rb +9 -9
- data/test/acceptance/api_test.rb +97 -0
- data/test/acceptance/browse_project_builds_test.rb +65 -0
- data/test/acceptance/browse_project_test.rb +95 -0
- data/test/acceptance/build_notifications_test.rb +42 -0
- data/test/acceptance/create_project_test.rb +97 -0
- data/test/acceptance/delete_project_test.rb +53 -0
- data/test/acceptance/edit_project_test.rb +117 -0
- data/test/acceptance/error_page_test.rb +18 -0
- data/test/acceptance/helpers.rb +2 -0
- data/test/acceptance/installer_test.rb +62 -0
- data/test/acceptance/manual_build_project_test.rb +82 -0
- data/test/acceptance/notifier_test.rb +109 -0
- data/test/acceptance/project_syndication_test.rb +30 -0
- data/test/acceptance/stylesheet_test.rb +18 -0
- data/test/helpers.rb +59 -26
- data/test/helpers/acceptance.rb +19 -65
- data/test/helpers/acceptance/email_notifier.rb +55 -0
- data/test/helpers/acceptance/git_helper.rb +15 -15
- data/test/helpers/acceptance/textfile_notifier.rb +3 -3
- data/test/helpers/expectations.rb +0 -1
- data/test/helpers/expectations/be_a.rb +4 -4
- data/test/helpers/expectations/change.rb +5 -5
- data/test/helpers/expectations/have.rb +4 -4
- data/test/helpers/expectations/predicates.rb +4 -4
- data/test/helpers/fixtures.rb +44 -18
- data/test/helpers/initial_migration_fixture.sql +44 -0
- data/test/unit/build_test.rb +51 -0
- data/test/unit/commit_test.rb +83 -0
- data/test/unit/helpers_test.rb +56 -0
- data/test/unit/integrity_test.rb +18 -0
- data/test/unit/migrations_test.rb +56 -0
- data/test/unit/notifier_test.rb +123 -0
- data/test/unit/project_builder_test.rb +108 -0
- data/test/unit/project_test.rb +282 -0
- data/test/unit/scm_test.rb +54 -0
- data/vendor/webrat/History.txt +306 -0
- data/vendor/webrat/MIT-LICENSE.txt +19 -0
- data/vendor/webrat/README.rdoc +85 -0
- data/vendor/webrat/Rakefile +151 -0
- data/vendor/webrat/install.rb +1 -0
- data/vendor/webrat/lib/webrat.rb +34 -0
- data/vendor/webrat/lib/webrat/core.rb +14 -0
- data/vendor/webrat/lib/webrat/core/configuration.rb +98 -0
- data/vendor/webrat/lib/webrat/core/elements/area.rb +31 -0
- data/vendor/webrat/lib/webrat/core/elements/element.rb +33 -0
- data/vendor/webrat/lib/webrat/core/elements/field.rb +403 -0
- data/vendor/webrat/lib/webrat/core/elements/form.rb +103 -0
- data/vendor/webrat/lib/webrat/core/elements/label.rb +31 -0
- data/vendor/webrat/lib/webrat/core/elements/link.rb +90 -0
- data/vendor/webrat/lib/webrat/core/elements/select_option.rb +35 -0
- data/vendor/webrat/lib/webrat/core/locators.rb +20 -0
- data/vendor/webrat/lib/webrat/core/locators/area_locator.rb +38 -0
- data/vendor/webrat/lib/webrat/core/locators/button_locator.rb +54 -0
- data/vendor/webrat/lib/webrat/core/locators/field_by_id_locator.rb +37 -0
- data/vendor/webrat/lib/webrat/core/locators/field_labeled_locator.rb +56 -0
- data/vendor/webrat/lib/webrat/core/locators/field_locator.rb +25 -0
- data/vendor/webrat/lib/webrat/core/locators/field_named_locator.rb +41 -0
- data/vendor/webrat/lib/webrat/core/locators/form_locator.rb +19 -0
- data/vendor/webrat/lib/webrat/core/locators/label_locator.rb +34 -0
- data/vendor/webrat/lib/webrat/core/locators/link_locator.rb +66 -0
- data/vendor/webrat/lib/webrat/core/locators/locator.rb +20 -0
- data/vendor/webrat/lib/webrat/core/locators/select_option_locator.rb +59 -0
- data/vendor/webrat/lib/webrat/core/logging.rb +21 -0
- data/vendor/webrat/lib/webrat/core/matchers.rb +4 -0
- data/vendor/webrat/lib/webrat/core/matchers/have_content.rb +73 -0
- data/vendor/webrat/lib/webrat/core/matchers/have_selector.rb +74 -0
- data/vendor/webrat/lib/webrat/core/matchers/have_tag.rb +21 -0
- data/vendor/webrat/lib/webrat/core/matchers/have_xpath.rb +147 -0
- data/vendor/webrat/lib/webrat/core/methods.rb +61 -0
- data/vendor/webrat/lib/webrat/core/mime.rb +29 -0
- data/vendor/webrat/lib/webrat/core/save_and_open_page.rb +50 -0
- data/vendor/webrat/lib/webrat/core/scope.rb +350 -0
- data/vendor/webrat/lib/webrat/core/session.rb +281 -0
- data/vendor/webrat/lib/webrat/core/xml.rb +115 -0
- data/vendor/webrat/lib/webrat/core/xml/hpricot.rb +19 -0
- data/vendor/webrat/lib/webrat/core/xml/nokogiri.rb +76 -0
- data/vendor/webrat/lib/webrat/core/xml/rexml.rb +24 -0
- data/vendor/webrat/lib/webrat/core_extensions/blank.rb +58 -0
- data/vendor/webrat/lib/webrat/core_extensions/deprecate.rb +8 -0
- data/vendor/webrat/lib/webrat/core_extensions/detect_mapped.rb +12 -0
- data/vendor/webrat/lib/webrat/core_extensions/meta_class.rb +6 -0
- data/vendor/webrat/lib/webrat/core_extensions/nil_to_param.rb +5 -0
- data/vendor/webrat/lib/webrat/mechanize.rb +74 -0
- data/vendor/webrat/lib/webrat/merb.rb +9 -0
- data/vendor/webrat/lib/webrat/merb_session.rb +65 -0
- data/vendor/webrat/lib/webrat/rack.rb +24 -0
- data/vendor/webrat/lib/webrat/rails.rb +105 -0
- data/vendor/webrat/lib/webrat/rspec-rails.rb +13 -0
- data/vendor/webrat/lib/webrat/selenium.rb +154 -0
- data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/button.js +12 -0
- data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/label.js +16 -0
- data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webrat.js +5 -0
- data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratlink.js +9 -0
- data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratlinkwithin.js +15 -0
- data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratselectwithoption.js +5 -0
- data/vendor/webrat/lib/webrat/selenium/matchers.rb +4 -0
- data/vendor/webrat/lib/webrat/selenium/matchers/have_content.rb +66 -0
- data/vendor/webrat/lib/webrat/selenium/matchers/have_selector.rb +49 -0
- data/vendor/webrat/lib/webrat/selenium/matchers/have_tag.rb +72 -0
- data/vendor/webrat/lib/webrat/selenium/matchers/have_xpath.rb +45 -0
- data/vendor/webrat/lib/webrat/selenium/selenium_extensions.js +6 -0
- data/vendor/webrat/lib/webrat/selenium/selenium_session.rb +247 -0
- data/vendor/webrat/lib/webrat/sinatra.rb +44 -0
- data/vendor/webrat/spec/fakes/test_session.rb +34 -0
- data/vendor/webrat/spec/integration/merb/Rakefile +35 -0
- data/vendor/webrat/spec/integration/merb/app/controllers/application.rb +2 -0
- data/vendor/webrat/spec/integration/merb/app/controllers/exceptions.rb +13 -0
- data/vendor/webrat/spec/integration/merb/app/controllers/testing.rb +18 -0
- data/vendor/webrat/spec/integration/merb/app/views/exceptions/not_acceptable.html.erb +63 -0
- data/vendor/webrat/spec/integration/merb/app/views/exceptions/not_found.html.erb +47 -0
- data/vendor/webrat/spec/integration/merb/app/views/layout/application.html.erb +12 -0
- data/vendor/webrat/spec/integration/merb/app/views/testing/show_form.html.erb +27 -0
- data/vendor/webrat/spec/integration/merb/config/environments/development.rb +15 -0
- data/vendor/webrat/spec/integration/merb/config/environments/rake.rb +11 -0
- data/vendor/webrat/spec/integration/merb/config/environments/test.rb +14 -0
- data/vendor/webrat/spec/integration/merb/config/init.rb +25 -0
- data/vendor/webrat/spec/integration/merb/config/rack.rb +11 -0
- data/vendor/webrat/spec/integration/merb/config/router.rb +33 -0
- data/vendor/webrat/spec/integration/merb/spec/spec.opts +1 -0
- data/vendor/webrat/spec/integration/merb/spec/spec_helper.rb +24 -0
- data/vendor/webrat/spec/integration/merb/spec/webrat_spec.rb +32 -0
- data/vendor/webrat/spec/integration/merb/tasks/merb.thor/app_script.rb +31 -0
- data/vendor/webrat/spec/integration/merb/tasks/merb.thor/common.rb +64 -0
- data/vendor/webrat/spec/integration/merb/tasks/merb.thor/gem_ext.rb +124 -0
- data/vendor/webrat/spec/integration/merb/tasks/merb.thor/main.thor +150 -0
- data/vendor/webrat/spec/integration/merb/tasks/merb.thor/ops.rb +93 -0
- data/vendor/webrat/spec/integration/merb/tasks/merb.thor/utils.rb +40 -0
- data/vendor/webrat/spec/integration/rails/Rakefile +30 -0
- data/vendor/webrat/spec/integration/rails/app/controllers/application.rb +15 -0
- data/vendor/webrat/spec/integration/rails/app/controllers/webrat_controller.rb +39 -0
- data/vendor/webrat/spec/integration/rails/app/views/webrat/before_redirect_form.html.erb +4 -0
- data/vendor/webrat/spec/integration/rails/app/views/webrat/form.html.erb +28 -0
- data/vendor/webrat/spec/integration/rails/config/boot.rb +109 -0
- data/vendor/webrat/spec/integration/rails/config/environment.rb +12 -0
- data/vendor/webrat/spec/integration/rails/config/environments/development.rb +17 -0
- data/vendor/webrat/spec/integration/rails/config/environments/selenium.rb +22 -0
- data/vendor/webrat/spec/integration/rails/config/environments/test.rb +22 -0
- data/vendor/webrat/spec/integration/rails/config/initializers/inflections.rb +10 -0
- data/vendor/webrat/spec/integration/rails/config/initializers/mime_types.rb +5 -0
- data/vendor/webrat/spec/integration/rails/config/initializers/new_rails_defaults.rb +17 -0
- data/vendor/webrat/spec/integration/rails/config/locales/en.yml +5 -0
- data/vendor/webrat/spec/integration/rails/config/routes.rb +14 -0
- data/vendor/webrat/spec/integration/rails/public/404.html +30 -0
- data/vendor/webrat/spec/integration/rails/public/422.html +30 -0
- data/vendor/webrat/spec/integration/rails/public/500.html +33 -0
- data/vendor/webrat/spec/integration/rails/script/about +4 -0
- data/vendor/webrat/spec/integration/rails/script/console +3 -0
- data/vendor/webrat/spec/integration/rails/script/dbconsole +3 -0
- data/vendor/webrat/spec/integration/rails/script/destroy +3 -0
- data/vendor/webrat/spec/integration/rails/script/generate +3 -0
- data/vendor/webrat/spec/integration/rails/script/performance/benchmarker +3 -0
- data/vendor/webrat/spec/integration/rails/script/performance/profiler +3 -0
- data/vendor/webrat/spec/integration/rails/script/performance/request +3 -0
- data/vendor/webrat/spec/integration/rails/script/plugin +3 -0
- data/vendor/webrat/spec/integration/rails/script/process/inspector +3 -0
- data/vendor/webrat/spec/integration/rails/script/process/reaper +3 -0
- data/vendor/webrat/spec/integration/rails/script/process/spawner +3 -0
- data/vendor/webrat/spec/integration/rails/script/runner +3 -0
- data/vendor/webrat/spec/integration/rails/script/server +3 -0
- data/vendor/webrat/spec/integration/rails/test/integration/webrat_test.rb +80 -0
- data/vendor/webrat/spec/integration/rails/test/test_helper.rb +25 -0
- data/vendor/webrat/spec/integration/sinatra/Rakefile +5 -0
- data/vendor/webrat/spec/integration/sinatra/classic_app.rb +64 -0
- data/vendor/webrat/spec/integration/sinatra/modular_app.rb +16 -0
- data/vendor/webrat/spec/integration/sinatra/test/classic_app_test.rb +37 -0
- data/vendor/webrat/spec/integration/sinatra/test/modular_app_test.rb +18 -0
- data/vendor/webrat/spec/integration/sinatra/test/test_helper.rb +16 -0
- data/vendor/webrat/spec/private/core/configuration_spec.rb +104 -0
- data/vendor/webrat/spec/private/core/field_spec.rb +67 -0
- data/vendor/webrat/spec/private/core/link_spec.rb +24 -0
- data/vendor/webrat/spec/private/core/logging_spec.rb +10 -0
- data/vendor/webrat/spec/private/core/session_spec.rb +198 -0
- data/vendor/webrat/spec/private/mechanize/mechanize_session_spec.rb +81 -0
- data/vendor/webrat/spec/private/merb/merb_session_spec.rb +42 -0
- data/vendor/webrat/spec/private/nokogiri_spec.rb +77 -0
- data/vendor/webrat/spec/private/rails/attaches_file_spec.rb +81 -0
- data/vendor/webrat/spec/private/rails/rails_session_spec.rb +110 -0
- data/vendor/webrat/spec/private/selenium/selenium_session_spec.rb +44 -0
- data/vendor/webrat/spec/private/selenium/selenium_spec.rb +109 -0
- data/vendor/webrat/spec/public/basic_auth_spec.rb +24 -0
- data/vendor/webrat/spec/public/check_spec.rb +191 -0
- data/vendor/webrat/spec/public/choose_spec.rb +118 -0
- data/vendor/webrat/spec/public/click_area_spec.rb +106 -0
- data/vendor/webrat/spec/public/click_button_spec.rb +502 -0
- data/vendor/webrat/spec/public/click_link_spec.rb +469 -0
- data/vendor/webrat/spec/public/fill_in_spec.rb +209 -0
- data/vendor/webrat/spec/public/locators/field_by_xpath_spec.rb +19 -0
- data/vendor/webrat/spec/public/locators/field_labeled_spec.rb +157 -0
- data/vendor/webrat/spec/public/locators/field_with_id_spec.rb +16 -0
- data/vendor/webrat/spec/public/matchers/contain_spec.rb +114 -0
- data/vendor/webrat/spec/public/matchers/have_selector_spec.rb +135 -0
- data/vendor/webrat/spec/public/matchers/have_tag_spec.rb +39 -0
- data/vendor/webrat/spec/public/matchers/have_xpath_spec.rb +123 -0
- data/vendor/webrat/spec/public/reload_spec.rb +10 -0
- data/vendor/webrat/spec/public/save_and_open_spec.rb +51 -0
- data/vendor/webrat/spec/public/select_date_spec.rb +88 -0
- data/vendor/webrat/spec/public/select_datetime_spec.rb +106 -0
- data/vendor/webrat/spec/public/select_spec.rb +246 -0
- data/vendor/webrat/spec/public/select_time_spec.rb +79 -0
- data/vendor/webrat/spec/public/set_hidden_field_spec.rb +5 -0
- data/vendor/webrat/spec/public/submit_form_spec.rb +5 -0
- data/vendor/webrat/spec/public/visit_spec.rb +58 -0
- data/vendor/webrat/spec/public/within_spec.rb +177 -0
- data/vendor/webrat/spec/rcov.opts +1 -0
- data/vendor/webrat/spec/spec.opts +2 -0
- data/vendor/webrat/spec/spec_helper.rb +50 -0
- data/vendor/webrat/vendor/selenium-server.jar +0 -0
- data/views/_commit_info.haml +24 -0
- data/views/build.haml +2 -2
- data/views/error.haml +4 -3
- data/views/home.haml +3 -5
- data/views/integrity.sass +19 -6
- data/views/new.haml +6 -6
- data/views/project.builder +9 -9
- data/views/project.haml +14 -12
- metadata +319 -124
- data/app.rb +0 -138
- data/integrity.gemspec +0 -76
- data/lib/integrity/core_ext/string.rb +0 -5
- data/test/helpers/expectations/have_tag.rb +0 -128
- data/views/_build_info.haml +0 -18
@@ -0,0 +1,31 @@
|
|
1
|
+
require "webrat/core/elements/element"
|
2
|
+
|
3
|
+
module Webrat
|
4
|
+
class Label < Element #:nodoc:
|
5
|
+
|
6
|
+
attr_reader :element
|
7
|
+
|
8
|
+
def self.xpath_search
|
9
|
+
".//label"
|
10
|
+
end
|
11
|
+
|
12
|
+
def for_id
|
13
|
+
Webrat::XML.attribute(@element, "for")
|
14
|
+
end
|
15
|
+
|
16
|
+
def field
|
17
|
+
Field.load(@session, field_element)
|
18
|
+
end
|
19
|
+
|
20
|
+
protected
|
21
|
+
|
22
|
+
def field_element
|
23
|
+
if for_id.blank?
|
24
|
+
Webrat::XML.xpath_at(@element, *Field.xpath_search_excluding_hidden)
|
25
|
+
else
|
26
|
+
Webrat::XML.css_search(@session.current_dom, "#" + for_id).first
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,90 @@
|
|
1
|
+
require "webrat/core_extensions/blank"
|
2
|
+
|
3
|
+
require "webrat/core/elements/element"
|
4
|
+
|
5
|
+
module Webrat
|
6
|
+
class Link < Element #:nodoc:
|
7
|
+
|
8
|
+
def self.xpath_search
|
9
|
+
".//a[@href]"
|
10
|
+
end
|
11
|
+
|
12
|
+
def click(options = {})
|
13
|
+
method = options[:method] || http_method
|
14
|
+
return if href =~ /^#/ && method == :get
|
15
|
+
|
16
|
+
options[:javascript] = true if options[:javascript].nil?
|
17
|
+
|
18
|
+
if options[:javascript]
|
19
|
+
@session.request_page(absolute_href, method, data)
|
20
|
+
else
|
21
|
+
@session.request_page(absolute_href, :get, {})
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
protected
|
26
|
+
|
27
|
+
def id
|
28
|
+
Webrat::XML.attribute(@element, "id")
|
29
|
+
end
|
30
|
+
|
31
|
+
def data
|
32
|
+
authenticity_token.blank? ? {} : {"authenticity_token" => authenticity_token}
|
33
|
+
end
|
34
|
+
|
35
|
+
def title
|
36
|
+
Webrat::XML.attribute(@element, "title")
|
37
|
+
end
|
38
|
+
|
39
|
+
def href
|
40
|
+
Webrat::XML.attribute(@element, "href")
|
41
|
+
end
|
42
|
+
|
43
|
+
def absolute_href
|
44
|
+
if href =~ /^\?/
|
45
|
+
"#{@session.current_url}#{href}"
|
46
|
+
elsif href !~ %r{^https?://} && (href !~ /^\//)
|
47
|
+
"#{@session.current_url}/#{href}"
|
48
|
+
else
|
49
|
+
href
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
def authenticity_token
|
54
|
+
return unless onclick && onclick.include?("s.setAttribute('name', 'authenticity_token');") &&
|
55
|
+
onclick =~ /s\.setAttribute\('value', '([a-f0-9]{40})'\);/
|
56
|
+
$LAST_MATCH_INFO.captures.first
|
57
|
+
end
|
58
|
+
|
59
|
+
def onclick
|
60
|
+
Webrat::XML.attribute(@element, "onclick")
|
61
|
+
end
|
62
|
+
|
63
|
+
def http_method
|
64
|
+
if !onclick.blank? && onclick.include?("f.submit()")
|
65
|
+
http_method_from_js_form
|
66
|
+
else
|
67
|
+
:get
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
def http_method_from_js_form
|
72
|
+
if onclick.include?("m.setAttribute('name', '_method')")
|
73
|
+
http_method_from_fake_method_param
|
74
|
+
else
|
75
|
+
:post
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
def http_method_from_fake_method_param
|
80
|
+
if onclick.include?("m.setAttribute('value', 'delete')")
|
81
|
+
:delete
|
82
|
+
elsif onclick.include?("m.setAttribute('value', 'put')")
|
83
|
+
:put
|
84
|
+
else
|
85
|
+
raise Webrat::WebratError.new("No HTTP method for _method param in #{onclick.inspect}")
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
end
|
90
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require "webrat/core/elements/element"
|
2
|
+
|
3
|
+
module Webrat
|
4
|
+
class SelectOption < Element #:nodoc:
|
5
|
+
|
6
|
+
def self.xpath_search
|
7
|
+
".//option"
|
8
|
+
end
|
9
|
+
|
10
|
+
def choose
|
11
|
+
select.raise_error_if_disabled
|
12
|
+
select.set(value)
|
13
|
+
end
|
14
|
+
|
15
|
+
protected
|
16
|
+
|
17
|
+
def select
|
18
|
+
SelectField.load(@session, select_element)
|
19
|
+
end
|
20
|
+
|
21
|
+
def select_element
|
22
|
+
parent = @element.parent
|
23
|
+
|
24
|
+
while parent.respond_to?(:parent)
|
25
|
+
return parent if parent.name == 'select'
|
26
|
+
parent = parent.parent
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def value
|
31
|
+
Webrat::XML.attribute(@element, "value") || Webrat::XML.inner_html(@element)
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require "webrat/core/locators/area_locator"
|
2
|
+
require "webrat/core/locators/button_locator"
|
3
|
+
require "webrat/core/locators/field_labeled_locator"
|
4
|
+
require "webrat/core/locators/label_locator"
|
5
|
+
require "webrat/core/locators/field_named_locator"
|
6
|
+
require "webrat/core/locators/field_by_id_locator"
|
7
|
+
require "webrat/core/locators/select_option_locator"
|
8
|
+
require "webrat/core/locators/link_locator"
|
9
|
+
require "webrat/core/locators/field_locator"
|
10
|
+
require "webrat/core/locators/form_locator"
|
11
|
+
|
12
|
+
module Webrat
|
13
|
+
module Locators
|
14
|
+
|
15
|
+
def field_by_xpath(xpath)
|
16
|
+
Field.load(@session, Webrat::XML.xpath_at(dom, xpath))
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require "webrat/core/locators/locator"
|
2
|
+
|
3
|
+
module Webrat
|
4
|
+
module Locators
|
5
|
+
|
6
|
+
class AreaLocator < Locator # :nodoc:
|
7
|
+
|
8
|
+
def locate
|
9
|
+
Area.load(@session, area_element)
|
10
|
+
end
|
11
|
+
|
12
|
+
def area_element
|
13
|
+
area_elements.detect do |area_element|
|
14
|
+
Webrat::XML.attribute(area_element, "title") =~ matcher ||
|
15
|
+
Webrat::XML.attribute(area_element, "id") =~ matcher
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
def matcher
|
20
|
+
/#{Regexp.escape(@value.to_s)}/i
|
21
|
+
end
|
22
|
+
|
23
|
+
def area_elements
|
24
|
+
Webrat::XML.xpath_search(@dom, Area.xpath_search)
|
25
|
+
end
|
26
|
+
|
27
|
+
def error_message
|
28
|
+
"Could not find area with name #{@value}"
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
|
33
|
+
def find_area(id_or_title) #:nodoc:
|
34
|
+
AreaLocator.new(@session, dom, id_or_title).locate!
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
require "webrat/core/locators/locator"
|
2
|
+
|
3
|
+
module Webrat
|
4
|
+
module Locators
|
5
|
+
|
6
|
+
class ButtonLocator < Locator # :nodoc:
|
7
|
+
|
8
|
+
def locate
|
9
|
+
ButtonField.load(@session, button_element)
|
10
|
+
end
|
11
|
+
|
12
|
+
def button_element
|
13
|
+
button_elements.detect do |element|
|
14
|
+
@value.nil? ||
|
15
|
+
matches_id?(element) ||
|
16
|
+
matches_value?(element) ||
|
17
|
+
matches_html?(element) ||
|
18
|
+
matches_alt?(element)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def matches_id?(element)
|
23
|
+
(@value.is_a?(Regexp) && Webrat::XML.attribute(element, "id") =~ @value) ||
|
24
|
+
(!@value.is_a?(Regexp) && Webrat::XML.attribute(element, "id") == @value.to_s)
|
25
|
+
end
|
26
|
+
|
27
|
+
def matches_value?(element)
|
28
|
+
Webrat::XML.attribute(element, "value") =~ /^\W*#{Regexp.escape(@value.to_s)}/i
|
29
|
+
end
|
30
|
+
|
31
|
+
def matches_html?(element)
|
32
|
+
Webrat::XML.inner_html(element) =~ /#{Regexp.escape(@value.to_s)}/i
|
33
|
+
end
|
34
|
+
|
35
|
+
def matches_alt?(element)
|
36
|
+
Webrat::XML.attribute(element, "alt") =~ /^\W*#{Regexp.escape(@value.to_s)}/i
|
37
|
+
end
|
38
|
+
|
39
|
+
def button_elements
|
40
|
+
Webrat::XML.xpath_search(@dom, *ButtonField.xpath_search)
|
41
|
+
end
|
42
|
+
|
43
|
+
def error_message
|
44
|
+
"Could not find button #{@value.inspect}"
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
def find_button(value) #:nodoc:
|
50
|
+
ButtonLocator.new(@session, dom, value).locate!
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
require "webrat/core/locators/locator"
|
2
|
+
|
3
|
+
module Webrat
|
4
|
+
module Locators
|
5
|
+
|
6
|
+
class FieldByIdLocator < Locator # :nodoc:
|
7
|
+
|
8
|
+
def locate
|
9
|
+
Field.load(@session, field_element)
|
10
|
+
end
|
11
|
+
|
12
|
+
def field_element
|
13
|
+
field_elements.detect do |field_element|
|
14
|
+
if @value.is_a?(Regexp)
|
15
|
+
Webrat::XML.attribute(field_element, "id") =~ @value
|
16
|
+
else
|
17
|
+
Webrat::XML.attribute(field_element, "id") == @value.to_s
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def field_elements
|
23
|
+
Webrat::XML.xpath_search(@dom, *Field.xpath_search)
|
24
|
+
end
|
25
|
+
|
26
|
+
def error_message
|
27
|
+
"Could not find field with id #{@value.inspect}"
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
|
32
|
+
def field_with_id(id, *field_types)
|
33
|
+
FieldByIdLocator.new(@session, dom, id, *field_types).locate!
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
require "webrat/core_extensions/detect_mapped"
|
2
|
+
require "webrat/core/locators/locator"
|
3
|
+
|
4
|
+
module Webrat
|
5
|
+
module Locators
|
6
|
+
|
7
|
+
class FieldLabeledLocator < Locator # :nodoc:
|
8
|
+
|
9
|
+
def locate
|
10
|
+
matching_labels.any? && matching_labels.detect_mapped { |label| label.field }
|
11
|
+
end
|
12
|
+
|
13
|
+
def matching_labels
|
14
|
+
matching_label_elements.sort_by do |label_element|
|
15
|
+
text(label_element).length
|
16
|
+
end.map do |label_element|
|
17
|
+
Label.load(@session, label_element)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def matching_label_elements
|
22
|
+
label_elements.select do |label_element|
|
23
|
+
text(label_element) =~ /^\W*#{Regexp.escape(@value.to_s)}\b/i
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def label_elements
|
28
|
+
Webrat::XML.xpath_search(@dom, Label.xpath_search)
|
29
|
+
end
|
30
|
+
|
31
|
+
def error_message
|
32
|
+
"Could not find field labeled #{@value.inspect}"
|
33
|
+
end
|
34
|
+
|
35
|
+
def text(element)
|
36
|
+
str = Webrat::XML.all_inner_text(element)
|
37
|
+
str.gsub!("\n","")
|
38
|
+
str.strip!
|
39
|
+
str.squeeze!(" ")
|
40
|
+
str
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
|
45
|
+
# Locates a form field based on a <tt>label</tt> element in the HTML source.
|
46
|
+
# This can be useful in order to verify that a field is pre-filled with the
|
47
|
+
# correct value.
|
48
|
+
#
|
49
|
+
# Example:
|
50
|
+
# field_labeled("First name").value.should == "Bryan"
|
51
|
+
def field_labeled(label, *field_types)
|
52
|
+
FieldLabeledLocator.new(@session, dom, label, *field_types).locate!
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require "webrat/core/locators/locator"
|
2
|
+
|
3
|
+
module Webrat
|
4
|
+
module Locators
|
5
|
+
|
6
|
+
class FieldLocator < Locator # :nodoc:
|
7
|
+
|
8
|
+
def locate
|
9
|
+
FieldByIdLocator.new(@session, @dom, @value).locate ||
|
10
|
+
FieldNamedLocator.new(@session, @dom, @value, *@field_types).locate ||
|
11
|
+
FieldLabeledLocator.new(@session, @dom, @value, *@field_types).locate
|
12
|
+
end
|
13
|
+
|
14
|
+
def error_message
|
15
|
+
"Could not find field: #{@value.inspect}"
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
|
20
|
+
def field(*args) # :nodoc:
|
21
|
+
FieldLocator.new(@session, dom, *args).locate!
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require "webrat/core/locators/locator"
|
2
|
+
|
3
|
+
module Webrat
|
4
|
+
module Locators
|
5
|
+
|
6
|
+
class FieldNamedLocator < Locator # :nodoc:
|
7
|
+
|
8
|
+
def locate
|
9
|
+
Field.load(@session, field_element)
|
10
|
+
end
|
11
|
+
|
12
|
+
def field_element
|
13
|
+
field_elements.detect do |field_element|
|
14
|
+
Webrat::XML.attribute(field_element, "name") == @value.to_s
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def field_elements
|
19
|
+
Webrat::XML.xpath_search(@dom, *xpath_searches)
|
20
|
+
end
|
21
|
+
|
22
|
+
def xpath_searches
|
23
|
+
if @field_types.any?
|
24
|
+
@field_types.map { |field_type| field_type.xpath_search }.flatten
|
25
|
+
else
|
26
|
+
Array(Field.xpath_search)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def error_message
|
31
|
+
"Could not find field named #{@value.inspect}"
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
|
36
|
+
def field_named(name, *field_types)
|
37
|
+
FieldNamedLocator.new(@session, dom, name, *field_types).locate!
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require "webrat/core/locators/locator"
|
2
|
+
|
3
|
+
module Webrat
|
4
|
+
module Locators
|
5
|
+
|
6
|
+
class FormLocator < Locator # :nodoc:
|
7
|
+
|
8
|
+
def locate
|
9
|
+
Form.load(@session, form_element)
|
10
|
+
end
|
11
|
+
|
12
|
+
def form_element
|
13
|
+
Webrat::XML.css_at(@dom, "#" + @value)
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|