rails3-jquery-autocomplete 0.6.0 → 0.6.1

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.
Files changed (83) hide show
  1. data/.document +5 -0
  2. data/.gitignore +24 -0
  3. data/Gemfile +18 -0
  4. data/Gemfile.lock +96 -0
  5. data/README.markdown +16 -1
  6. data/Rakefile +2 -47
  7. data/integration/.gitignore +2 -0
  8. data/integration/Gemfile +14 -0
  9. data/integration/Gemfile.lock +159 -0
  10. data/integration/README +256 -0
  11. data/integration/Rakefile +7 -0
  12. data/integration/app/controllers/application_controller.rb +3 -0
  13. data/integration/app/controllers/autocomplete_controller.rb +7 -0
  14. data/integration/app/controllers/id_elements_controller.rb +8 -0
  15. data/integration/app/controllers/multiple_selections_controller.rb +7 -0
  16. data/integration/app/controllers/sub_classes_controller.rb +7 -0
  17. data/integration/app/helpers/application_helper.rb +2 -0
  18. data/integration/app/helpers/autocomplete_helper.rb +2 -0
  19. data/integration/app/helpers/error_messages_helper.rb +23 -0
  20. data/integration/app/helpers/id_elements_helper.rb +2 -0
  21. data/integration/app/helpers/layout_helper.rb +22 -0
  22. data/integration/app/helpers/sub_classes_helper.rb +2 -0
  23. data/integration/app/models/brand.rb +2 -0
  24. data/integration/app/models/foreign_brand.rb +3 -0
  25. data/integration/app/models/product.rb +3 -0
  26. data/integration/app/views/autocomplete/new.html.haml +10 -0
  27. data/integration/app/views/id_elements/new.html.haml +12 -0
  28. data/integration/app/views/layouts/application.html.haml +21 -0
  29. data/integration/app/views/multiple_selections/new.html.haml +9 -0
  30. data/integration/app/views/sub_classes/new.html.haml +9 -0
  31. data/integration/config.ru +4 -0
  32. data/integration/config/application.rb +42 -0
  33. data/integration/config/boot.rb +13 -0
  34. data/integration/config/cucumber.yml +8 -0
  35. data/integration/config/database.yml +25 -0
  36. data/integration/config/environment.rb +5 -0
  37. data/integration/config/environments/development.rb +26 -0
  38. data/integration/config/environments/production.rb +49 -0
  39. data/integration/config/environments/test.rb +35 -0
  40. data/integration/config/initializers/backtrace_silencers.rb +7 -0
  41. data/integration/config/initializers/inflections.rb +10 -0
  42. data/integration/config/initializers/mime_types.rb +5 -0
  43. data/integration/config/initializers/secret_token.rb +7 -0
  44. data/integration/config/initializers/session_store.rb +8 -0
  45. data/integration/config/locales/en.yml +5 -0
  46. data/integration/config/routes.rb +18 -0
  47. data/integration/db/migrate/20101209014338_create_brands.rb +13 -0
  48. data/integration/db/migrate/20101209014355_create_products.rb +14 -0
  49. data/integration/db/migrate/20101209053936_add_type_to_brand.rb +9 -0
  50. data/integration/db/schema.rb +29 -0
  51. data/integration/db/seeds.rb +3 -0
  52. data/integration/doc/README_FOR_APP +2 -0
  53. data/integration/features/autocomplete.feature +45 -0
  54. data/integration/features/step_definitions/autocomplete_steps.rb +5 -0
  55. data/integration/features/step_definitions/pickle_steps.rb +100 -0
  56. data/integration/features/step_definitions/web_steps.rb +219 -0
  57. data/integration/features/support/env.rb +62 -0
  58. data/integration/features/support/paths.rb +33 -0
  59. data/integration/features/support/pickle.rb +24 -0
  60. data/integration/lib/tasks/cucumber.rake +53 -0
  61. data/integration/public/404.html +26 -0
  62. data/integration/public/422.html +26 -0
  63. data/integration/public/500.html +26 -0
  64. data/integration/public/favicon.ico +0 -0
  65. data/integration/public/images/rails.png +0 -0
  66. data/integration/public/javascripts/application.js +0 -0
  67. data/integration/public/javascripts/autocomplete-rails.js +91 -0
  68. data/integration/public/javascripts/jquery-ui.js +11437 -0
  69. data/integration/public/javascripts/jquery-ui.min.js +401 -0
  70. data/integration/public/javascripts/jquery.js +7179 -0
  71. data/integration/public/javascripts/jquery.min.js +167 -0
  72. data/integration/public/javascripts/rails.js +163 -0
  73. data/integration/public/robots.txt +5 -0
  74. data/integration/public/stylesheets/application.css +61 -0
  75. data/integration/public/stylesheets/jquery-ui-1.8.2.custom.css +489 -0
  76. data/integration/public/stylesheets/sass/application.sass +66 -0
  77. data/integration/script/cucumber +10 -0
  78. data/integration/script/rails +6 -0
  79. data/lib/generators/templates/autocomplete-rails.js +1 -1
  80. data/lib/rails3-jquery-autocomplete/autocomplete.rb +3 -1
  81. data/lib/rails3-jquery-autocomplete/version.rb +3 -0
  82. data/rails3-jquery-autocomplete.gemspec +28 -0
  83. metadata +165 -12
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Integration::Application.config.secret_token = '6cfc71a180f0482c7f2896f0ce99929ad1c6343a6eb73db8e09f7bae0d93edbcabaf06def9d1e5ce7dabf2dd3a410f878272d2120660f2e49ed0ef431d7cad30'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Integration::Application.config.session_store :cookie_store, :key => '_integration_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Integration::Application.config.session_store :active_record_store
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,18 @@
1
+ Integration::Application.routes.draw do
2
+
3
+ root :to => 'autocomplete#new'
4
+ match 'autocomplete/autocomplete_brand_name' => 'autocomplete#autocomplete_brand_name'
5
+
6
+ resources :products
7
+ resources :id_elements do
8
+ get :autocomplete_brand_name, :on => :collection
9
+ end
10
+
11
+ resources :sub_classes do
12
+ get :autocomplete_foreign_brand_name, :on => :collection
13
+ end
14
+
15
+ resources :multiple_selections do
16
+ get :autocomplete_brand_name, :on => :collection
17
+ end
18
+ end
@@ -0,0 +1,13 @@
1
+ class CreateBrands < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :brands do |t|
4
+ t.string :name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+
10
+ def self.down
11
+ drop_table :brands
12
+ end
13
+ end
@@ -0,0 +1,14 @@
1
+ class CreateProducts < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :products do |t|
4
+ t.string :name
5
+ t.string :brand_name
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+
11
+ def self.down
12
+ drop_table :products
13
+ end
14
+ end
@@ -0,0 +1,9 @@
1
+ class AddTypeToBrand < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :brands, :type, :string
4
+ end
5
+
6
+ def self.down
7
+ remove_column :brands, :type
8
+ end
9
+ end
@@ -0,0 +1,29 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended to check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(:version => 20101209053936) do
14
+
15
+ create_table "brands", :force => true do |t|
16
+ t.string "name"
17
+ t.datetime "created_at"
18
+ t.datetime "updated_at"
19
+ t.string "type"
20
+ end
21
+
22
+ create_table "products", :force => true do |t|
23
+ t.string "name"
24
+ t.string "brand_name"
25
+ t.datetime "created_at"
26
+ t.datetime "updated_at"
27
+ end
28
+
29
+ end
@@ -0,0 +1,3 @@
1
+ Brand.create(:name => 'Alpha')
2
+ Brand.create(:name => 'Gamma')
3
+ Brand.create(:name => 'Omega')
@@ -0,0 +1,2 @@
1
+ Use this README file to introduce your application and point to useful places in the API for learning more.
2
+ Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
@@ -0,0 +1,45 @@
1
+ Feature: Autocomplete
2
+ In order to do funky stuff
3
+ As a User
4
+ I want autocomplete!
5
+
6
+ Background:
7
+ Given the following brands exists:
8
+ | name |
9
+ | Alpha |
10
+ | Beta |
11
+ | Gamma |
12
+
13
+ @javascript
14
+ Scenario: Autocomplete
15
+ Given I go to the home page
16
+ And I fill in "Brand name" with "al"
17
+ And I choose "Alpha" in the autocomplete list
18
+ Then the "Brand name" field should contain "Alpha"
19
+
20
+ @javascript
21
+ Scenario: Autocomplete, id_element option
22
+ Given I go to the new id element page
23
+ And I fill in "Brand name" with "al"
24
+ And I choose "Alpha" in the autocomplete list
25
+ Then the "Brand name" field should contain "Alpha"
26
+ And the "Brand" field should contain the "Alpha" brand id
27
+
28
+ @javascript
29
+ Scenario: Autocomplete for a sub class
30
+ Given the following foreign brands exists:
31
+ | name |
32
+ | Omega |
33
+ Given I go to the new sub class page
34
+ And I fill in "Brand name" with "om"
35
+ And I choose "Omega" in the autocomplete list
36
+ Then the "Brand name" field should contain "Omega"
37
+
38
+ @javascript
39
+ Scenario: Autocomplete
40
+ Given I go to the new multiple selection page
41
+ And I send al to "Brand name"
42
+ And I choose "Alpha" in the autocomplete list
43
+ And I send bet to "Brand name"
44
+ And I choose "Beta" in the autocomplete list
45
+ Then the "Brand name" field should contain "Alpha,Beta"
@@ -0,0 +1,5 @@
1
+ Then /^the "([^"]*)" field should contain the "([^"]*)" brand id$/ do |field, name|
2
+ brand = Brand.where(:name => name).first
3
+ Then %{the "#{field}" field should contain "#{brand.id}"}
4
+ end
5
+
@@ -0,0 +1,100 @@
1
+ # this file generated by script/generate pickle
2
+
3
+ # create a model
4
+ Given(/^#{capture_model} exists?(?: with #{capture_fields})?$/) do |name, fields|
5
+ create_model(name, fields)
6
+ end
7
+
8
+ # create n models
9
+ Given(/^(\d+) #{capture_plural_factory} exist(?: with #{capture_fields})?$/) do |count, plural_factory, fields|
10
+ count.to_i.times { create_model(plural_factory.singularize, fields) }
11
+ end
12
+
13
+ # create models from a table
14
+ Given(/^the following #{capture_plural_factory} exists?:?$/) do |plural_factory, table|
15
+ create_models_from_table(plural_factory, table)
16
+ end
17
+
18
+ # find a model
19
+ Then(/^#{capture_model} should exist(?: with #{capture_fields})?$/) do |name, fields|
20
+ find_model!(name, fields)
21
+ end
22
+
23
+ # not find a model
24
+ Then(/^#{capture_model} should not exist(?: with #{capture_fields})?$/) do |name, fields|
25
+ find_model(name, fields).should be_nil
26
+ end
27
+
28
+ # find models with a table
29
+ Then(/^the following #{capture_plural_factory} should exists?:?$/) do |plural_factory, table|
30
+ find_models_from_table(plural_factory, table).should_not be_any(&:nil?)
31
+ end
32
+
33
+ # find exactly n models
34
+ Then(/^(\d+) #{capture_plural_factory} should exist(?: with #{capture_fields})?$/) do |count, plural_factory, fields|
35
+ find_models(plural_factory.singularize, fields).size.should == count.to_i
36
+ end
37
+
38
+ # assert equality of models
39
+ Then(/^#{capture_model} should be #{capture_model}$/) do |a, b|
40
+ model!(a).should == model!(b)
41
+ end
42
+
43
+ # assert model is in another model's has_many assoc
44
+ Then(/^#{capture_model} should be (?:in|one of|amongst) #{capture_model}(?:'s)? (\w+)$/) do |target, owner, association|
45
+ model!(owner).send(association).should include(model!(target))
46
+ end
47
+
48
+ # assert model is not in another model's has_many assoc
49
+ Then(/^#{capture_model} should not be (?:in|one of|amongst) #{capture_model}(?:'s)? (\w+)$/) do |target, owner, association|
50
+ model!(owner).send(association).should_not include(model!(target))
51
+ end
52
+
53
+ # assert model is another model's has_one/belongs_to assoc
54
+ Then(/^#{capture_model} should be #{capture_model}(?:'s)? (\w+)$/) do |target, owner, association|
55
+ model!(owner).send(association).should == model!(target)
56
+ end
57
+
58
+ # assert model is not another model's has_one/belongs_to assoc
59
+ Then(/^#{capture_model} should not be #{capture_model}(?:'s)? (\w+)$/) do |target, owner, association|
60
+ model!(owner).send(association).should_not == model!(target)
61
+ end
62
+
63
+ # assert model.predicate?
64
+ Then(/^#{capture_model} should (?:be|have) (?:an? )?#{capture_predicate}$/) do |name, predicate|
65
+ if model!(name).respond_to?("has_#{predicate.gsub(' ', '_')}")
66
+ model!(name).should send("have_#{predicate.gsub(' ', '_')}")
67
+ else
68
+ model!(name).should send("be_#{predicate.gsub(' ', '_')}")
69
+ end
70
+ end
71
+
72
+ # assert not model.predicate?
73
+ Then(/^#{capture_model} should not (?:be|have) (?:an? )?#{capture_predicate}$/) do |name, predicate|
74
+ if model!(name).respond_to?("has_#{predicate.gsub(' ', '_')}")
75
+ model!(name).should_not send("have_#{predicate.gsub(' ', '_')}")
76
+ else
77
+ model!(name).should_not send("be_#{predicate.gsub(' ', '_')}")
78
+ end
79
+ end
80
+
81
+ # model.attribute.should eql(value)
82
+ # model.attribute.should_not eql(value)
83
+ Then(/^#{capture_model}'s (\w+) (should(?: not)?) be #{capture_value}$/) do |name, attribute, expectation, expected|
84
+ actual_value = model(name).send(attribute)
85
+ expectation = expectation.gsub(' ', '_')
86
+
87
+ case expected
88
+ when 'nil', 'true', 'false'
89
+ actual_value.send(expectation, send("be_#{expected}"))
90
+ when /^[+-]?[0-9_]+(\.\d+)?$/
91
+ actual_value.send(expectation, eql(expected.to_f))
92
+ else
93
+ actual_value.to_s.send(expectation, eql(eval(expected)))
94
+ end
95
+ end
96
+
97
+ # assert size of association
98
+ Then /^#{capture_model} should have (\d+) (\w+)$/ do |name, size, association|
99
+ model!(name).send(association).size.should == size.to_i
100
+ end
@@ -0,0 +1,219 @@
1
+ # IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
2
+ # It is recommended to regenerate this file in the future when you upgrade to a
3
+ # newer version of cucumber-rails. Consider adding your own code to a new file
4
+ # instead of editing this one. Cucumber will automatically load all features/**/*.rb
5
+ # files.
6
+
7
+
8
+ require 'uri'
9
+ require 'cgi'
10
+ require File.expand_path(File.join(File.dirname(__FILE__), "..", "support", "paths"))
11
+
12
+ module WithinHelpers
13
+ def with_scope(locator)
14
+ locator ? within(locator) { yield } : yield
15
+ end
16
+ end
17
+ World(WithinHelpers)
18
+
19
+ Given /^(?:|I )am on (.+)$/ do |page_name|
20
+ visit path_to(page_name)
21
+ end
22
+
23
+ When /^(?:|I )go to (.+)$/ do |page_name|
24
+ visit path_to(page_name)
25
+ end
26
+
27
+ When /^(?:|I )press "([^"]*)"(?: within "([^"]*)")?$/ do |button, selector|
28
+ with_scope(selector) do
29
+ click_button(button)
30
+ end
31
+ end
32
+
33
+ When /^(?:|I )follow "([^"]*)"(?: within "([^"]*)")?$/ do |link, selector|
34
+ with_scope(selector) do
35
+ click_link(link)
36
+ end
37
+ end
38
+
39
+ When /^(?:|I )fill in "([^"]*)" with "([^"]*)"(?: within "([^"]*)")?$/ do |field, value, selector|
40
+ with_scope(selector) do
41
+ fill_in(field, :with => value)
42
+ end
43
+ end
44
+
45
+ When /^(?:|I )fill in "([^"]*)" for "([^"]*)"(?: within "([^"]*)")?$/ do |value, field, selector|
46
+ with_scope(selector) do
47
+ fill_in(field, :with => value)
48
+ end
49
+ end
50
+
51
+ # Use this to fill in an entire form with data from a table. Example:
52
+ #
53
+ # When I fill in the following:
54
+ # | Account Number | 5002 |
55
+ # | Expiry date | 2009-11-01 |
56
+ # | Note | Nice guy |
57
+ # | Wants Email? | |
58
+ #
59
+ # TODO: Add support for checkbox, select og option
60
+ # based on naming conventions.
61
+ #
62
+ When /^(?:|I )fill in the following(?: within "([^"]*)")?:$/ do |selector, fields|
63
+ with_scope(selector) do
64
+ fields.rows_hash.each do |name, value|
65
+ When %{I fill in "#{name}" with "#{value}"}
66
+ end
67
+ end
68
+ end
69
+
70
+ When /^(?:|I )select "([^"]*)" from "([^"]*)"(?: within "([^"]*)")?$/ do |value, field, selector|
71
+ with_scope(selector) do
72
+ select(value, :from => field)
73
+ end
74
+ end
75
+
76
+ When /^(?:|I )check "([^"]*)"(?: within "([^"]*)")?$/ do |field, selector|
77
+ with_scope(selector) do
78
+ check(field)
79
+ end
80
+ end
81
+
82
+ When /^(?:|I )uncheck "([^"]*)"(?: within "([^"]*)")?$/ do |field, selector|
83
+ with_scope(selector) do
84
+ uncheck(field)
85
+ end
86
+ end
87
+
88
+ When /^(?:|I )choose "([^"]*)"(?: within "([^"]*)")?$/ do |field, selector|
89
+ with_scope(selector) do
90
+ choose(field)
91
+ end
92
+ end
93
+
94
+ When /^(?:|I )attach the file "([^"]*)" to "([^"]*)"(?: within "([^"]*)")?$/ do |path, field, selector|
95
+ with_scope(selector) do
96
+ attach_file(field, path)
97
+ end
98
+ end
99
+
100
+ Then /^(?:|I )should see JSON:$/ do |expected_json|
101
+ require 'json'
102
+ expected = JSON.pretty_generate(JSON.parse(expected_json))
103
+ actual = JSON.pretty_generate(JSON.parse(response.body))
104
+ expected.should == actual
105
+ end
106
+
107
+ Then /^(?:|I )should see "([^"]*)"(?: within "([^"]*)")?$/ do |text, selector|
108
+ with_scope(selector) do
109
+ if page.respond_to? :should
110
+ page.should have_content(text)
111
+ else
112
+ assert page.has_content?(text)
113
+ end
114
+ end
115
+ end
116
+
117
+ Then /^(?:|I )should see \/([^\/]*)\/(?: within "([^"]*)")?$/ do |regexp, selector|
118
+ regexp = Regexp.new(regexp)
119
+ with_scope(selector) do
120
+ if page.respond_to? :should
121
+ page.should have_xpath('//*', :text => regexp)
122
+ else
123
+ assert page.has_xpath?('//*', :text => regexp)
124
+ end
125
+ end
126
+ end
127
+
128
+ Then /^(?:|I )should not see "([^"]*)"(?: within "([^"]*)")?$/ do |text, selector|
129
+ with_scope(selector) do
130
+ if page.respond_to? :should
131
+ page.should have_no_content(text)
132
+ else
133
+ assert page.has_no_content?(text)
134
+ end
135
+ end
136
+ end
137
+
138
+ Then /^(?:|I )should not see \/([^\/]*)\/(?: within "([^"]*)")?$/ do |regexp, selector|
139
+ regexp = Regexp.new(regexp)
140
+ with_scope(selector) do
141
+ if page.respond_to? :should
142
+ page.should have_no_xpath('//*', :text => regexp)
143
+ else
144
+ assert page.has_no_xpath?('//*', :text => regexp)
145
+ end
146
+ end
147
+ end
148
+
149
+ Then /^the "([^"]*)" field(?: within "([^"]*)")? should contain "([^"]*)"$/ do |field, selector, value|
150
+ with_scope(selector) do
151
+ field = find_field(field)
152
+ field_value = (field.tag_name == 'textarea') ? field.text : field.value
153
+ if field_value.respond_to? :should
154
+ field_value.should =~ /#{value}/
155
+ else
156
+ assert_match(/#{value}/, field_value)
157
+ end
158
+ end
159
+ end
160
+
161
+ Then /^the "([^"]*)" field(?: within "([^"]*)")? should not contain "([^"]*)"$/ do |field, selector, value|
162
+ with_scope(selector) do
163
+ field = find_field(field)
164
+ field_value = (field.tag_name == 'textarea') ? field.text : field.value
165
+ if field_value.respond_to? :should_not
166
+ field_value.should_not =~ /#{value}/
167
+ else
168
+ assert_no_match(/#{value}/, field_value)
169
+ end
170
+ end
171
+ end
172
+
173
+ Then /^the "([^"]*)" checkbox(?: within "([^"]*)")? should be checked$/ do |label, selector|
174
+ with_scope(selector) do
175
+ field_checked = find_field(label)['checked']
176
+ if field_checked.respond_to? :should
177
+ field_checked.should be_true
178
+ else
179
+ assert field_checked
180
+ end
181
+ end
182
+ end
183
+
184
+ Then /^the "([^"]*)" checkbox(?: within "([^"]*)")? should not be checked$/ do |label, selector|
185
+ with_scope(selector) do
186
+ field_checked = find_field(label)['checked']
187
+ if field_checked.respond_to? :should
188
+ field_checked.should be_false
189
+ else
190
+ assert !field_checked
191
+ end
192
+ end
193
+ end
194
+
195
+ Then /^(?:|I )should be on (.+)$/ do |page_name|
196
+ current_path = URI.parse(current_url).path
197
+ if current_path.respond_to? :should
198
+ current_path.should == path_to(page_name)
199
+ else
200
+ assert_equal path_to(page_name), current_path
201
+ end
202
+ end
203
+
204
+ Then /^(?:|I )should have the following query string:$/ do |expected_pairs|
205
+ query = URI.parse(current_url).query
206
+ actual_params = query ? CGI.parse(query) : {}
207
+ expected_params = {}
208
+ expected_pairs.rows_hash.each_pair{|k,v| expected_params[k] = v.split(',')}
209
+
210
+ if actual_params.respond_to? :should
211
+ actual_params.should == expected_params
212
+ else
213
+ assert_equal expected_params, actual_params
214
+ end
215
+ end
216
+
217
+ Then /^show me the page$/ do
218
+ save_and_open_page
219
+ end