remote_database_cleaner_home_rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +21 -0
  4. data/app/assets/javascripts/remote_database_cleaner_home_rails/application.js +13 -0
  5. data/app/assets/stylesheets/remote_database_cleaner_home_rails/application.css +13 -0
  6. data/app/controllers/remote_database_cleaner_home_rails/home_controller.rb +23 -0
  7. data/app/helpers/remote_database_cleaner_home_rails/application_helper.rb +4 -0
  8. data/app/views/layouts/remote_database_cleaner_home_rails/application.html.erb +14 -0
  9. data/config/routes.rb +3 -0
  10. data/lib/remote_database_cleaner_home_rails.rb +44 -0
  11. data/lib/remote_database_cleaner_home_rails/engine.rb +21 -0
  12. data/lib/tasks/remote_database_cleaner_home_rails_tasks.rake +4 -0
  13. data/spec/controllers/home_controller_spec.rb +52 -0
  14. data/spec/dummy/README.rdoc +28 -0
  15. data/spec/dummy/Rakefile +6 -0
  16. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  17. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  18. data/spec/dummy/app/controllers/application_controller.rb +15 -0
  19. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  20. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  21. data/spec/dummy/bin/bundle +3 -0
  22. data/spec/dummy/bin/rails +4 -0
  23. data/spec/dummy/bin/rake +4 -0
  24. data/spec/dummy/config.ru +4 -0
  25. data/spec/dummy/config/application.rb +28 -0
  26. data/spec/dummy/config/boot.rb +5 -0
  27. data/spec/dummy/config/database.yml +25 -0
  28. data/spec/dummy/config/environment.rb +5 -0
  29. data/spec/dummy/config/environments/development.rb +29 -0
  30. data/spec/dummy/config/environments/production.rb +80 -0
  31. data/spec/dummy/config/environments/test.rb +36 -0
  32. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  33. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  34. data/spec/dummy/config/initializers/inflections.rb +16 -0
  35. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  36. data/spec/dummy/config/initializers/remote_database_cleaner_home_rails.rb +4 -0
  37. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  38. data/spec/dummy/config/initializers/session_store.rb +3 -0
  39. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  40. data/spec/dummy/config/locales/en.yml +23 -0
  41. data/spec/dummy/config/routes.rb +4 -0
  42. data/spec/dummy/db/test.sqlite3 +0 -0
  43. data/spec/dummy/log/test.log +1244 -0
  44. data/spec/dummy/public/404.html +58 -0
  45. data/spec/dummy/public/422.html +58 -0
  46. data/spec/dummy/public/500.html +57 -0
  47. data/spec/dummy/public/favicon.ico +0 -0
  48. data/spec/models/remote_database_cleaner_home_rails_spec.rb +25 -0
  49. data/spec/spec_helper.rb +22 -0
  50. metadata +184 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c63054aae072094e33ea894c9de24ca287e4bc89
4
+ data.tar.gz: 22e1d1f37d1fc6261f4fd378b29bd596d7bc74d0
5
+ SHA512:
6
+ metadata.gz: 1b280db193c99a6ef5d91cefb5a7f3412a3c7c821ca059a956206c2a7990d72d2597a1047ca2ae1c4773845db6200c73a07238105aa2b00ad7739a1c171e38dd
7
+ data.tar.gz: 70d2667f07e6d8659b5c9d61302e98c8d7acea2bb4d91973bec5273d53124ca03ce30c7821695fdd1911f3631351b7b6b572f080c4ff004138f3d597bd355be2
@@ -0,0 +1,20 @@
1
+ Copyright 2014 YOURNAME
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.
@@ -0,0 +1,21 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
8
+ load 'rails/tasks/engine.rake'
9
+
10
+ Bundler::GemHelper.install_tasks
11
+
12
+ Dir[File.join(File.dirname(__FILE__), 'tasks/**/*.rake')].each {|f| load f }
13
+
14
+ require 'rspec/core'
15
+ require 'rspec/core/rake_task'
16
+
17
+ desc "Run all specs in spec directory (excluding plugin specs)"
18
+ RSpec::Core::RakeTask.new(:spec => 'app:db:test:prepare')
19
+
20
+ task :default => :spec
21
+
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,23 @@
1
+ module RemoteDatabaseCleanerHomeRails
2
+ class HomeController < ApplicationController
3
+
4
+ skip_before_filter *RemoteDatabaseCleanerHomeRails.skip_before_filter
5
+
6
+ def clean
7
+ if RemoteDatabaseCleanerHomeRails.enabled?
8
+ DatabaseCleaner.strategy = strategy
9
+ DatabaseCleaner.clean
10
+ render json: {response: 200}
11
+ else
12
+ forbidden = 403
13
+ render json: { status: forbidden }, status: forbidden
14
+ end
15
+ end
16
+
17
+ private
18
+
19
+ def strategy
20
+ RemoteDatabaseCleanerHomeRails.strategy
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,4 @@
1
+ module RemoteDatabaseCleanerHomeRails
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>RemoteDatabaseCleanerHomeRails</title>
5
+ <%= stylesheet_link_tag "remote_database_cleaner_home_rails/application", media: "all" %>
6
+ <%= javascript_include_tag "remote_database_cleaner_home_rails/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,3 @@
1
+ RemoteDatabaseCleanerHomeRails::Engine.routes.draw do
2
+ post '/home/clean' => 'home#clean'
3
+ end
@@ -0,0 +1,44 @@
1
+ require "remote_database_cleaner_home_rails/engine"
2
+
3
+ module RemoteDatabaseCleanerHomeRails
4
+ OFF = false
5
+ ON = true
6
+
7
+ def self.strategy=(strategy)
8
+ config.strategy = strategy
9
+ end
10
+
11
+ def self.strategy
12
+ config.strategy
13
+ end
14
+
15
+ def self.skip_before_filter
16
+ filters = config.skip_before_filter
17
+ filters.present? ? [filters].flatten.map(&:to_sym) : nil
18
+ end
19
+
20
+ def self.config(config = RemoteDatabaseCleanerHomeRails::Engine.config.remote_database_cleaner_home_rails)
21
+ config
22
+ end
23
+
24
+ def self.configure
25
+ yield config
26
+ end
27
+
28
+ def self.enable!
29
+ config.enable = ON
30
+ end
31
+
32
+ def self.disable!
33
+ config.enable = OFF
34
+ end
35
+
36
+ def self.enabled?
37
+ config.enable == ON
38
+ end
39
+
40
+ def self.reset
41
+ config.enable = OFF
42
+ config.skip_before_filter = nil
43
+ end
44
+ end
@@ -0,0 +1,21 @@
1
+ module RemoteDatabaseCleanerHomeRails
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace RemoteDatabaseCleanerHomeRails
4
+
5
+ config.generators do |g|
6
+ g.test_framework :rspec, :fixture => false
7
+ g.fixture_replacement :factory_girl, :dir => 'spec/factories'
8
+ g.assets false
9
+ g.helper false
10
+ end
11
+
12
+ config.remote_database_cleaner_home_rails = ActiveSupport::OrderedOptions.new
13
+
14
+ initializer "remote_database_cleaner_home_rails.environment" do |app|
15
+ options = app.config.remote_database_cleaner_home_rails
16
+ options.skip_before_filter ||= nil
17
+ options.enable ||= false
18
+ options.strategy ||= :truncation
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :remote_database_cleaner_home_rails do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,52 @@
1
+ require 'spec_helper'
2
+
3
+ class DatabaseCleaner
4
+ def self.strategy=(strategy)
5
+ strategy
6
+ end
7
+
8
+ def self.clean
9
+ true
10
+ end
11
+ end
12
+
13
+ describe RemoteDatabaseCleanerHomeRails::HomeController do
14
+
15
+ routes { RemoteDatabaseCleanerHomeRails::Engine.routes }
16
+
17
+ before do
18
+ RemoteDatabaseCleanerHomeRails.enable!
19
+ RemoteDatabaseCleanerHomeRails.strategy = :truncation
20
+ end
21
+
22
+ describe '#clean' do
23
+ it 'should clean database with strategy truncation' do
24
+ expect(DatabaseCleaner).to receive(:strategy=).with(:truncation)
25
+ expect(DatabaseCleaner).to receive(:clean)
26
+ post :clean, {}
27
+ end
28
+
29
+ it 'should skip :authentication and :another_authentication methods defined in ApplicationController' do
30
+ post :clean, {}
31
+ expect(response).to_not redirect_to("/401.html")
32
+ end
33
+
34
+ it 'should return status code 403 when RemoteDatabaseCleanerHomeRails is not enabled' do
35
+ RemoteDatabaseCleanerHomeRails.disable!
36
+ post :clean, {}
37
+ expect(response.status).to eq(403)
38
+ end
39
+
40
+ it 'should return status code 200 when RemoteDatabaseCleanerHomeRails is enabled' do
41
+ RemoteDatabaseCleanerHomeRails.enable!
42
+ post :clean, {}
43
+ expect(response.status).to eq(200)
44
+ end
45
+
46
+ it 'should be able to configure cleaning strategy' do
47
+ RemoteDatabaseCleanerHomeRails.strategy = :transaction
48
+ expect(DatabaseCleaner).to receive(:strategy=).with(:transaction)
49
+ post :clean, {}
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,28 @@
1
+ == README
2
+
3
+ This README would normally document whatever steps are necessary to get the
4
+ application up and running.
5
+
6
+ Things you may want to cover:
7
+
8
+ * Ruby version
9
+
10
+ * System dependencies
11
+
12
+ * Configuration
13
+
14
+ * Database creation
15
+
16
+ * Database initialization
17
+
18
+ * How to run the test suite
19
+
20
+ * Services (job queues, cache servers, search engines, etc.)
21
+
22
+ * Deployment instructions
23
+
24
+ * ...
25
+
26
+
27
+ Please feel free to use a different markup language if you do not plan to run
28
+ <tt>rake doc:app</tt>.
@@ -0,0 +1,6 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+
6
+ Dummy::Application.load_tasks
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,15 @@
1
+ class ApplicationController < ActionController::Base
2
+ # Prevent CSRF attacks by raising an exception.
3
+ # For APIs, you may want to use :null_session instead.
4
+ protect_from_forgery with: :exception
5
+
6
+ before_filter :authenticate, :another_authentication
7
+
8
+ def authenticate
9
+ redirect_to '/401.html'
10
+ end
11
+
12
+ def another_authentication
13
+ redirect_to '/401.html'
14
+ end
15
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
6
+ <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
+ load Gem.bin_path('bundler', 'bundle')
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
3
+ require_relative '../config/boot'
4
+ require 'rails/commands'
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require_relative '../config/boot'
3
+ require 'rake'
4
+ Rake.application.run
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
@@ -0,0 +1,28 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ # Pick the frameworks you want:
4
+ require "active_record/railtie"
5
+ require "action_controller/railtie"
6
+ require "action_mailer/railtie"
7
+ require "sprockets/railtie"
8
+ # require "rails/test_unit/railtie"
9
+
10
+ Bundler.require(*Rails.groups)
11
+ require "remote_database_cleaner_home_rails"
12
+
13
+ module Dummy
14
+ class Application < Rails::Application
15
+ # Settings in config/environments/* take precedence over those specified here.
16
+ # Application configuration should go into files in config/initializers
17
+ # -- all .rb files in that directory are automatically loaded.
18
+
19
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
20
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
21
+ # config.time_zone = 'Central Time (US & Canada)'
22
+
23
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
24
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
25
+ # config.i18n.default_locale = :de
26
+ end
27
+ end
28
+
@@ -0,0 +1,5 @@
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000