token_action 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +1 -1
  3. data/README.md +11 -18
  4. data/Rakefile +13 -4
  5. data/app/controllers/token_action/tokens_controller.rb +19 -11
  6. data/config/routes.rb +1 -1
  7. data/lib/generators/active_record/templates/migration.rb +1 -1
  8. data/lib/generators/templates/README +1 -1
  9. data/lib/token_action.rb +2 -2
  10. data/lib/token_action/{mixins → concerns}/model.rb +0 -0
  11. data/lib/token_action/{mixins → concerns}/token_generator.rb +0 -0
  12. data/lib/token_action/orm/mongoid.rb +6 -6
  13. data/lib/token_action/version.rb +1 -1
  14. data/spec/controllers/token_action/tokens_controller_spec.rb +159 -157
  15. data/spec/dummy/Rakefile +1 -2
  16. data/spec/dummy/app/assets/javascripts/application.js +4 -4
  17. data/spec/dummy/app/assets/stylesheets/application.css +6 -4
  18. data/spec/dummy/app/controllers/application_controller.rb +3 -1
  19. data/spec/dummy/app/controllers/hello_controller.rb +6 -6
  20. data/spec/dummy/app/mongoid/cat.rb +1 -1
  21. data/spec/dummy/app/views/layouts/application.html.erb +2 -2
  22. data/spec/dummy/bin/bundle +3 -0
  23. data/spec/dummy/bin/rails +4 -0
  24. data/spec/dummy/bin/rake +4 -0
  25. data/spec/dummy/bin/setup +29 -0
  26. data/spec/dummy/config.ru +2 -2
  27. data/spec/dummy/config/application.rb +11 -42
  28. data/spec/dummy/config/boot.rb +4 -9
  29. data/spec/dummy/config/database.yml +14 -7
  30. data/spec/dummy/config/environment.rb +3 -3
  31. data/spec/dummy/config/environments/development.rb +22 -18
  32. data/spec/dummy/config/environments/production.rb +46 -34
  33. data/spec/dummy/config/environments/test.rb +18 -17
  34. data/spec/dummy/config/initializers/assets.rb +11 -0
  35. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  36. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  37. data/spec/dummy/config/initializers/session_store.rb +1 -6
  38. data/spec/dummy/config/initializers/wrap_parameters.rb +6 -6
  39. data/spec/dummy/config/locales/en.yml +20 -2
  40. data/spec/dummy/config/mongoid.yml +4 -60
  41. data/spec/dummy/config/routes.rb +6 -6
  42. data/spec/dummy/config/secrets.yml +22 -0
  43. data/spec/dummy/db/migrate/20130104151630_create_token_action_tokens.rb +1 -1
  44. data/spec/dummy/db/schema.rb +32 -0
  45. data/spec/dummy/{db/development.sqlite3 → log/.keep} +0 -0
  46. data/spec/dummy/public/404.html +54 -13
  47. data/spec/dummy/public/422.html +54 -13
  48. data/spec/dummy/public/500.html +53 -12
  49. data/spec/factories.rb +1 -1
  50. data/spec/rails_helper.rb +102 -0
  51. data/spec/routing/token_action/tokens_routing_spec.rb +23 -23
  52. data/spec/spec_helper.rb +85 -87
  53. data/spec/token_action/concerns/model_spec.rb +14 -0
  54. data/spec/token_action/concerns/token_generator_spec.rb +13 -0
  55. data/spec/token_action/orm/active_record_spec.rb +4 -2
  56. data/spec/token_action/orm/mongoid_spec.rb +4 -2
  57. data/spec/token_action_spec.rb +9 -9
  58. metadata +109 -158
  59. data/spec/dummy/config/initializers/secret_token.rb +0 -7
  60. data/spec/dummy/log/development.log +0 -16
  61. data/spec/dummy/log/test.log +0 -4739
  62. data/spec/dummy/script/rails +0 -6
  63. data/spec/token_action/mixins/model_spec.rb +0 -13
  64. data/spec/token_action/mixins/token_generator_spec.rb +0 -11
@@ -2,24 +2,65 @@
2
2
  <html>
3
3
  <head>
4
4
  <title>We're sorry, but something went wrong (500)</title>
5
- <style type="text/css">
6
- body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
- div.dialog {
8
- width: 25em;
9
- padding: 0 4em;
10
- margin: 4em auto 0 auto;
11
- border: 1px solid #ccc;
12
- border-right-color: #999;
13
- border-bottom-color: #999;
14
- }
15
- h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
16
54
  </style>
17
55
  </head>
18
56
 
19
57
  <body>
20
58
  <!-- This file lives in public/500.html -->
21
59
  <div class="dialog">
22
- <h1>We're sorry, but something went wrong.</h1>
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
23
64
  </div>
24
65
  </body>
25
66
  </html>
@@ -1,6 +1,6 @@
1
1
  # https://github.com/thoughtbot/factory_girl/blob/master/GETTING_STARTED.md
2
2
  FactoryGirl.define do
3
- factory :token, :class => TokenAction::Token do
3
+ factory :token, class: TokenAction::Token do
4
4
  kind 'Cat'
5
5
  end
6
6
  end
@@ -0,0 +1,102 @@
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ ENV['RAILS_ENV'] ||= 'test'
3
+
4
+ require 'simplecov'
5
+ require 'coveralls'
6
+ SimpleCov.formatter = Coveralls::SimpleCov::Formatter
7
+ SimpleCov.start do
8
+ add_filter 'spec'
9
+ end
10
+
11
+ require File.expand_path('../dummy/config/environment', __FILE__)
12
+ # Prevent database truncation if the environment is production
13
+ abort("The Rails environment is running in production mode!") if Rails.env.production?
14
+ require 'spec_helper'
15
+ require 'rspec/rails'
16
+ # Add additional requires below this line. Rails is not loaded until this point!
17
+
18
+ # Requires supporting ruby files with custom matchers and macros, etc, in
19
+ # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
20
+ # run as spec files by default. This means that files in spec/support that end
21
+ # in _spec.rb will both be required and run as specs, causing the specs to be
22
+ # run twice. It is recommended that you do not name files matching this glob to
23
+ # end with _spec.rb. You can configure this pattern with the --pattern
24
+ # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
25
+ #
26
+ # The following line is provided for convenience purposes. It has the downside
27
+ # of increasing the boot-up time by auto-requiring all files in the support
28
+ # directory. Alternatively, in the individual `*_spec.rb` files, manually
29
+ # require only the support files necessary.
30
+ #
31
+ Dir['./spec/support/**/*.rb'].each { |f| require f }
32
+
33
+ # Checks for pending migrations before tests are run.
34
+ # If you are not using ActiveRecord, you can remove this line.
35
+ if TOKEN_ACTION_ORM == :active_record
36
+ ActiveRecord::Migration.maintain_test_schema!
37
+ end
38
+
39
+ require 'database_cleaner'
40
+ require 'factory_girl_rails'
41
+
42
+ case TOKEN_ACTION_ORM
43
+ when :active_record
44
+ require 'shoulda/matchers'
45
+
46
+ Shoulda::Matchers.configure do |config|
47
+ config.integrate do |with|
48
+ with.test_framework :rspec
49
+ with.library :rails
50
+ end
51
+ end
52
+ when :mongoid
53
+ require 'mongoid-rspec'
54
+ end
55
+
56
+ puts "\n==> Running specs with #{TOKEN_ACTION_ORM}"
57
+
58
+ RSpec.configure do |config|
59
+ # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
60
+ config.fixture_path = "#{::Rails.root}/spec/fixtures"
61
+
62
+ # If you're not using ActiveRecord, or you'd prefer not to run each of your
63
+ # examples within a transaction, remove the following line or assign false
64
+ # instead of true.
65
+ config.use_transactional_fixtures = true
66
+
67
+ # RSpec Rails can automatically mix in different behaviours to your tests
68
+ # based on their file location, for example enabling you to call `get` and
69
+ # `post` in specs under `spec/controllers`.
70
+ #
71
+ # You can disable this behaviour by removing the line below, and instead
72
+ # explicitly tag your specs with their type, e.g.:
73
+ #
74
+ # RSpec.describe UsersController, :type => :controller do
75
+ # # ...
76
+ # end
77
+ #
78
+ # The different available types are documented in the features, such as in
79
+ # https://relishapp.com/rspec/rspec-rails/docs
80
+ config.infer_spec_type_from_file_location!
81
+
82
+ if TOKEN_ACTION_ORM == :mongoid
83
+ config.include Mongoid::Matchers
84
+ end
85
+
86
+ config.before(:suite) do
87
+ DatabaseCleaner.strategy = :truncation
88
+ DatabaseCleaner.clean_with(:truncation)
89
+ end
90
+
91
+ config.before(:each) do
92
+ DatabaseCleaner.start
93
+ end
94
+
95
+ config.after(:each) do
96
+ DatabaseCleaner.clean
97
+ end
98
+ end
99
+
100
+ if TOKEN_ACTION_ORM == :mongoid
101
+ Mongo::Logger.logger.level = Logger::WARN
102
+ end
@@ -1,33 +1,33 @@
1
- require 'spec_helper'
1
+ require 'rails_helper'
2
2
 
3
- describe TokenAction::TokensController do
4
- describe 'routing' do
5
- before :each do
6
- @routes = TokenAction::Engine.routes
7
- end
3
+ module TokenAction
4
+ RSpec.describe TokensController, type: :routing do
5
+ describe 'routing' do
6
+ routes { Engine.routes }
8
7
 
9
- it 'routes to #redeem with default path' do
10
- get('/tokens/1/redeem').should route_to('token_action/tokens#redeem', :token =>'1', :path =>'redeem')
11
- end
8
+ it 'routes to #redeem with default path' do
9
+ expect(get('/tokens/1/redeem')).to route_to('token_action/tokens#redeem', :token =>'1', :path =>'redeem')
10
+ end
12
11
 
13
- it 'routes to #redeem with custom path' do
14
- get('/tokens/1/unsubscribe').should route_to('token_action/tokens#redeem', :token =>'1', :path =>'unsubscribe')
15
- end
12
+ it 'routes to #redeem with custom path' do
13
+ expect(get('/tokens/1/unsubscribe')).to route_to('token_action/tokens#redeem', :token =>'1', :path =>'unsubscribe')
14
+ end
16
15
 
17
- it 'routes to #redeem with long path' do
18
- get('/tokens/1/a/b/c').should route_to('token_action/tokens#redeem', :token =>'1', :path =>'a/b/c')
19
- end
16
+ it 'routes to #redeem with long path' do
17
+ expect(get('/tokens/1/a/b/c')).to route_to('token_action/tokens#redeem', :token =>'1', :path =>'a/b/c')
18
+ end
20
19
 
21
- it 'routes to #redeem with trailing slash' do
22
- get('/tokens/1/redeem/').should route_to('token_action/tokens#redeem', :token =>'1', :path =>'redeem')
23
- end
20
+ it 'routes to #redeem with trailing slash' do
21
+ expect(get('/tokens/1/redeem/')).to route_to('token_action/tokens#redeem', :token =>'1', :path =>'redeem')
22
+ end
24
23
 
25
- it 'does not route with empty token' do
26
- get('/tokens//redeem').should_not be_routable
27
- end
24
+ it 'does not route with empty token' do
25
+ expect(get('/tokens//redeem')).not_to be_routable
26
+ end
28
27
 
29
- it 'does not route with empty path' do
30
- get('/tokens/1/').should_not be_routable
28
+ it 'does not route with empty path' do
29
+ expect(get('/tokens/1/')).not_to be_routable
30
+ end
31
31
  end
32
32
  end
33
33
  end
@@ -1,94 +1,92 @@
1
- require 'spork'
2
-
3
- Spork.prefork do
4
- ENV["RAILS_ENV"] ||= 'test'
5
-
6
- # @see https://github.com/plataformatec/devise/blob/master/test/test_helper.rb
7
- TOKEN_ACTION_ORM = (ENV['TOKEN_ACTION_ORM'] || :active_record).to_sym
8
- puts "\n==> Running specs with #{TOKEN_ACTION_ORM}"
9
-
10
- require 'rails/application'
11
- # Prevent Spork from caching the routes.
12
- Spork.trap_method(Rails::Application::RoutesReloader, :reload!)
13
- # Prevent Spork from caching the engine's classes (see below).
14
- Spork.trap_method(Rails::Application, :eager_load!)
15
-
16
- require File.expand_path("../dummy/config/environment.rb", __FILE__)
17
- require 'rspec/rails'
18
-
19
- # Requires supporting ruby files with custom matchers and macros, etc,
20
- # in spec/support/ and its subdirectories.
21
- Dir[File.expand_path("../support/**/*.rb", __FILE__)].each {|f| require f}
22
-
23
- # Prevent Spork from caching the engine's classes (see above).
24
- Rails.application.railties.all do |railtie|
25
- unless railtie.respond_to?(:engine_name) && railtie.engine_name == 'token_action'
26
- railtie.eager_load!
27
- end
1
+ # This file was generated by the `rails generate rspec:install` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
4
+ # this file to always be loaded, without a need to explicitly require it in any
5
+ # files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need
13
+ # it.
14
+ #
15
+ # The `.rspec` file also contains a few flags that are not defaults but that
16
+ # users commonly want.
17
+ #
18
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
19
+ RSpec.configure do |config|
20
+ # rspec-expectations config goes here. You can use an alternate
21
+ # assertion/expectation library such as wrong or the stdlib/minitest
22
+ # assertions if you prefer.
23
+ config.expect_with :rspec do |expectations|
24
+ # This option will default to `true` in RSpec 4. It makes the `description`
25
+ # and `failure_message` of custom matchers include text for helper methods
26
+ # defined using `chain`, e.g.:
27
+ # be_bigger_than(2).and_smaller_than(4).description
28
+ # # => "be bigger than 2 and smaller than 4"
29
+ # ...rather than:
30
+ # # => "be bigger than 2"
31
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
28
32
  end
29
33
 
30
- require 'database_cleaner'
31
- require 'factory_girl_rails'
32
-
33
- case TOKEN_ACTION_ORM
34
- when :active_record
35
- require 'shoulda/matchers'
36
- when :mongoid
37
- require 'mongoid-rspec'
38
-
39
- # Create non-engine indexes.
40
- Rails.application.railties.engines.each do |engine|
41
- unless engine.engine_name == 'popolo'
42
- engine.paths["app/models"].expanded.each do |path|
43
- Rails::Mongoid.create_indexes("#{path}/**/*.rb")
44
- end
45
- end
46
- end
34
+ # rspec-mocks config goes here. You can use an alternate test double
35
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
36
+ config.mock_with :rspec do |mocks|
37
+ # Prevents you from mocking or stubbing a method that does not exist on
38
+ # a real object. This is generally recommended, and will default to
39
+ # `true` in RSpec 4.
40
+ mocks.verify_partial_doubles = true
47
41
  end
48
42
 
49
- RSpec.configure do |config|
50
- if TOKEN_ACTION_ORM == :mongoid
51
- config.include Mongoid::Matchers
52
- end
53
-
54
- config.mock_with :rspec
55
-
56
- # http://railscasts.com/episodes/285-spork
57
- config.treat_symbols_as_metadata_keys_with_true_values = true
58
- config.run_all_when_everything_filtered = true
59
- config.filter_run :focus => true
60
- end
61
- end
62
-
63
- Spork.each_run do
64
- # It's now okay to load the engine.
65
- Rails.application.railties.engines.each do |engine|
66
- if engine.engine_name == 'token_action'
67
- engine.eager_load!
68
- end
69
- end
70
-
71
- case TOKEN_ACTION_ORM
72
- when :active_record
73
- ActiveRecord::Migrator.migrate(File.expand_path("../dummy/db/migrate/", __FILE__))
74
- when :mongoid
75
- # DatabaseCleaner will not truncate system.indexes between tests, but it
76
- # should be truncated before running the full test suite.
77
- Mongoid::Sessions.default.drop
78
-
79
- # Create the engine's indexes.
80
- Rails.application.railties.engines.each do |engine|
81
- if engine.engine_name == 'token_action'
82
- engine.paths["app/models"].expanded.each do |path|
83
- Rails::Mongoid.create_indexes("#{path}/**/*.rb")
84
- end
85
- end
86
- end
87
-
88
- # Create dummy indexes.
89
- Rails::Mongoid.create_indexes(File.expand_path("../dummy/app/models/**/*.rb", __FILE__))
43
+ # The settings below are suggested to provide a good initial experience
44
+ # with RSpec, but feel free to customize to your heart's content.
45
+ =begin
46
+ # These two settings work together to allow you to limit a spec run
47
+ # to individual examples or groups you care about by tagging them with
48
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
49
+ # get run.
50
+ config.filter_run :focus
51
+ config.run_all_when_everything_filtered = true
52
+
53
+ # Allows RSpec to persist some state between runs in order to support
54
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
55
+ # you configure your source control system to ignore this file.
56
+ config.example_status_persistence_file_path = "spec/examples.txt"
57
+
58
+ # Limits the available syntax to the non-monkey patched syntax that is
59
+ # recommended. For more details, see:
60
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
61
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
62
+ # - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
63
+ config.disable_monkey_patching!
64
+
65
+ # Many RSpec users commonly either run the entire suite or an individual
66
+ # file, and it's useful to allow more verbose output when running an
67
+ # individual spec file.
68
+ if config.files_to_run.one?
69
+ # Use the documentation formatter for detailed output,
70
+ # unless a formatter has already been configured
71
+ # (e.g. via a command-line flag).
72
+ config.default_formatter = 'doc'
90
73
  end
91
74
 
92
- # @todo I18n.backend.reload!
93
- FactoryGirl.reload
75
+ # Print the 10 slowest examples and example groups at the
76
+ # end of the spec run, to help surface which specs are running
77
+ # particularly slow.
78
+ config.profile_examples = 10
79
+
80
+ # Run specs in random order to surface order dependencies. If you find an
81
+ # order dependency and want to debug it, you can fix the order by providing
82
+ # the seed, which is printed after each run.
83
+ # --seed 1234
84
+ config.order = :random
85
+
86
+ # Seed global randomization in this process using the `--seed` CLI option.
87
+ # Setting this allows you to use `--seed` to deterministically reproduce
88
+ # test failures related to randomization by passing the same `--seed` value
89
+ # as the one that triggered the failure.
90
+ Kernel.srand config.seed
91
+ =end
94
92
  end
@@ -0,0 +1,14 @@
1
+ require 'rails_helper'
2
+
3
+ module TokenAction
4
+ RSpec.describe Token, type: :model do
5
+ it {should validate_presence_of :kind}
6
+ it {should validate_uniqueness_of :token}
7
+
8
+ describe '#create' do
9
+ it 'should set the token' do
10
+ expect(FactoryGirl.create(:token).token).not_to eq(nil)
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,13 @@
1
+ require 'rails_helper'
2
+
3
+ module TokenAction
4
+ RSpec.describe TokenGenerator do
5
+ describe '.included' do
6
+ describe '#generate_token' do
7
+ it 'should return a random alphanumeric string' do
8
+ expect(Cat.generate_token(:token)).to match(/\A[A-Za-z0-9]{20}\z/)
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end