nano-max-box 0.0.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.
- checksums.yaml +7 -0
- data/nano-max-box.gemspec +12 -0
- data/rspec-rails-8.0.4/Capybara.md +28 -0
- data/rspec-rails-8.0.4/Changelog.md +1408 -0
- data/rspec-rails-8.0.4/LICENSE.md +25 -0
- data/rspec-rails-8.0.4/README.md +386 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/authentication/authentication_generator.rb +25 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/authentication/templates/user_spec.rb +5 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/authentication/templates/users.yml +11 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/channel/channel_generator.rb +12 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/channel/templates/channel_spec.rb.erb +7 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/controller/controller_generator.rb +51 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/controller/templates/controller_spec.rb +16 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/controller/templates/request_spec.rb +19 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/controller/templates/routing_spec.rb +13 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/controller/templates/view_spec.rb +5 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/feature/feature_generator.rb +29 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/feature/templates/feature_singular_spec.rb +5 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/feature/templates/feature_spec.rb +5 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/generator/generator_generator.rb +24 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/generator/templates/generator_spec.rb +5 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/helper/helper_generator.rb +16 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/helper/templates/helper_spec.rb +17 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/install/install_generator.rb +80 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/install/templates/spec/rails_helper.rb +91 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/job/job_generator.rb +13 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/job/templates/job_spec.rb.erb +7 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/mailbox/mailbox_generator.rb +14 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/mailbox/templates/mailbox_spec.rb.erb +7 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/mailer/mailer_generator.rb +30 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/mailer/templates/fixture +3 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/mailer/templates/mailer_spec.rb +25 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/mailer/templates/preview.rb +13 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/model/model_generator.rb +37 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/model/templates/fixtures.yml +19 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/model/templates/model_spec.rb +7 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/request/request_generator.rb +17 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/request/templates/request_spec.rb +10 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/scaffold_generator.rb +136 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/api_controller_spec.rb +129 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/api_request_spec.rb +131 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/controller_spec.rb +145 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/edit_spec.rb +27 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/index_spec.rb +26 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/new_spec.rb +22 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/request_spec.rb +138 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/routing_spec.rb +46 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/show_spec.rb +21 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/system/system_generator.rb +24 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/system/templates/system_spec.rb +9 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/view/templates/view_spec.rb +5 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/view/view_generator.rb +22 -0
- data/rspec-rails-8.0.4/lib/generators/rspec.rb +204 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/active_record.rb +25 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/adapters.rb +196 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/configuration.rb +158 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/channel_example_group.rb +93 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/controller_example_group.rb +217 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/feature_example_group.rb +53 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/helper_example_group.rb +42 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/job_example_group.rb +23 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/mailbox_example_group.rb +80 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/mailer_example_group.rb +38 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/model_example_group.rb +11 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/rails_example_group.rb +23 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/request_example_group.rb +27 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/routing_example_group.rb +61 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/system_example_group.rb +177 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/view_example_group.rb +214 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example.rb +13 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/extensions/active_record/proxy.rb +11 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/extensions.rb +1 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/feature_check.rb +51 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/file_fixture_support.rb +18 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/fixture_file_upload_support.rb +39 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/fixture_support.rb +58 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/action_cable/have_broadcasted_to.rb +180 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/action_cable/have_streams.rb +58 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/action_cable.rb +70 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/action_mailbox.rb +73 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/active_job.rb +534 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/base_matcher.rb +179 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/be_a_new.rb +83 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/be_new_record.rb +30 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/be_valid.rb +49 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/have_enqueued_mail.rb +259 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/have_http_status.rb +381 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/have_rendered.rb +64 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/redirect_to.rb +38 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/relation_match_array.rb +3 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/routing_matchers.rb +125 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/send_email.rb +122 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers.rb +36 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/tasks/rspec.rake +49 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/vendor/capybara.rb +32 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/version.rb +9 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/view_assigns.rb +27 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/view_path_builder.rb +29 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/view_rendering.rb +166 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/view_spec_methods.rb +56 -0
- data/rspec-rails-8.0.4/lib/rspec/rails.rb +18 -0
- data/rspec-rails-8.0.4/lib/rspec-rails.rb +91 -0
- metadata +142 -0
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
module RSpec
|
|
2
|
+
module Rails
|
|
3
|
+
# Fake class to document RSpec Rails configuration options. In practice,
|
|
4
|
+
# these are dynamically added to the normal RSpec configuration object.
|
|
5
|
+
class Configuration
|
|
6
|
+
# @!method infer_spec_type_from_file_location!
|
|
7
|
+
# Automatically tag specs in conventional directories with matching `type`
|
|
8
|
+
# metadata so that they have relevant helpers available to them. See
|
|
9
|
+
# `RSpec::Rails::DIRECTORY_MAPPINGS` for details on which metadata is
|
|
10
|
+
# applied to each directory.
|
|
11
|
+
|
|
12
|
+
# @!method render_views=(val)
|
|
13
|
+
#
|
|
14
|
+
# When set to `true`, controller specs will render the relevant view as
|
|
15
|
+
# well. Defaults to `false`.
|
|
16
|
+
|
|
17
|
+
# @!method render_views(val)
|
|
18
|
+
# Enables view rendering for controllers specs.
|
|
19
|
+
|
|
20
|
+
# @!method render_views?
|
|
21
|
+
# Reader for currently value of `render_views` setting.
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
# Mappings used by `infer_spec_type_from_file_location!`.
|
|
25
|
+
#
|
|
26
|
+
# @api private
|
|
27
|
+
DIRECTORY_MAPPINGS = {
|
|
28
|
+
channel: %w[spec channels],
|
|
29
|
+
controller: %w[spec controllers],
|
|
30
|
+
generator: %w[spec generator],
|
|
31
|
+
helper: %w[spec helpers],
|
|
32
|
+
job: %w[spec jobs],
|
|
33
|
+
mailer: %w[spec mailers],
|
|
34
|
+
model: %w[spec models],
|
|
35
|
+
request: %w[spec (requests|integration|api)],
|
|
36
|
+
routing: %w[spec routing],
|
|
37
|
+
view: %w[spec views],
|
|
38
|
+
feature: %w[spec features],
|
|
39
|
+
system: %w[spec system],
|
|
40
|
+
mailbox: %w[spec mailboxes]
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
# Sets up the different example group modules for the different spec types
|
|
44
|
+
#
|
|
45
|
+
# @api private
|
|
46
|
+
def self.add_test_type_configurations(config)
|
|
47
|
+
config.include RSpec::Rails::ControllerExampleGroup, type: :controller
|
|
48
|
+
config.include RSpec::Rails::HelperExampleGroup, type: :helper
|
|
49
|
+
config.include RSpec::Rails::ModelExampleGroup, type: :model
|
|
50
|
+
config.include RSpec::Rails::RequestExampleGroup, type: :request
|
|
51
|
+
config.include RSpec::Rails::RoutingExampleGroup, type: :routing
|
|
52
|
+
config.include RSpec::Rails::ViewExampleGroup, type: :view
|
|
53
|
+
config.include RSpec::Rails::FeatureExampleGroup, type: :feature
|
|
54
|
+
config.include RSpec::Rails::Matchers
|
|
55
|
+
config.include RSpec::Rails::SystemExampleGroup, type: :system
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# @private
|
|
59
|
+
def self.initialize_configuration(config) # rubocop:disable Metrics/MethodLength
|
|
60
|
+
config.backtrace_exclusion_patterns << /vendor\//
|
|
61
|
+
config.backtrace_exclusion_patterns << %r{lib/rspec/rails}
|
|
62
|
+
|
|
63
|
+
# controller settings
|
|
64
|
+
config.add_setting :infer_base_class_for_anonymous_controllers, default: true
|
|
65
|
+
|
|
66
|
+
# fixture support
|
|
67
|
+
config.add_setting :use_active_record, default: true
|
|
68
|
+
config.add_setting :use_transactional_fixtures, alias_with: :use_transactional_examples
|
|
69
|
+
config.add_setting :use_instantiated_fixtures
|
|
70
|
+
config.add_setting :global_fixtures
|
|
71
|
+
config.add_setting :fixture_paths
|
|
72
|
+
|
|
73
|
+
config.include RSpec::Rails::FixtureSupport, :use_fixtures
|
|
74
|
+
|
|
75
|
+
# We'll need to create a deprecated module in order to properly report to
|
|
76
|
+
# gems / projects which are relying on this being loaded globally.
|
|
77
|
+
#
|
|
78
|
+
# See rspec/rspec-rails#1355 for history
|
|
79
|
+
#
|
|
80
|
+
# @deprecated Include `RSpec::Rails::RailsExampleGroup` or
|
|
81
|
+
# `RSpec::Rails::FixtureSupport` directly instead
|
|
82
|
+
config.include RSpec::Rails::FixtureSupport
|
|
83
|
+
|
|
84
|
+
config.add_setting :file_fixture_path, default: 'spec/fixtures/files'
|
|
85
|
+
config.include RSpec::Rails::FileFixtureSupport
|
|
86
|
+
|
|
87
|
+
# Add support for fixture_paths on fixture_file_upload
|
|
88
|
+
config.include RSpec::Rails::FixtureFileUploadSupport
|
|
89
|
+
|
|
90
|
+
# This allows us to expose `render_views` as a config option even though it
|
|
91
|
+
# breaks the convention of other options by using `render_views` as a
|
|
92
|
+
# command (i.e. `render_views = true`), where it would normally be used
|
|
93
|
+
# as a getter. This makes it easier for rspec-rails users because we use
|
|
94
|
+
# `render_views` directly in example groups, so this aligns the two APIs,
|
|
95
|
+
# but requires this workaround:
|
|
96
|
+
config.add_setting :rendering_views, default: false
|
|
97
|
+
|
|
98
|
+
config.instance_exec do
|
|
99
|
+
def render_views=(val)
|
|
100
|
+
self.rendering_views = val
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
def render_views
|
|
104
|
+
self.rendering_views = true
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
def render_views?
|
|
108
|
+
rendering_views?
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
def infer_spec_type_from_file_location!
|
|
112
|
+
DIRECTORY_MAPPINGS.each do |type, dir_parts|
|
|
113
|
+
escaped_path = Regexp.compile(dir_parts.join('[\\\/]') + '[\\\/]')
|
|
114
|
+
define_derived_metadata(file_path: escaped_path) do |metadata|
|
|
115
|
+
metadata[:type] ||= type
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
# Adds exclusion filters for gems included with Rails
|
|
121
|
+
def filter_rails_from_backtrace!
|
|
122
|
+
filter_gems_from_backtrace "actionmailer", "actionpack", "actionview"
|
|
123
|
+
filter_gems_from_backtrace "activemodel", "activerecord",
|
|
124
|
+
"activesupport", "activejob"
|
|
125
|
+
end
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
add_test_type_configurations(config)
|
|
129
|
+
|
|
130
|
+
if defined?(::Rails::Controller::Testing)
|
|
131
|
+
[:controller, :view, :request].each do |type|
|
|
132
|
+
config.include ::Rails::Controller::Testing::TestProcess, type: type
|
|
133
|
+
config.include ::Rails::Controller::Testing::TemplateAssertions, type: type
|
|
134
|
+
config.include ::Rails::Controller::Testing::Integration, type: type
|
|
135
|
+
end
|
|
136
|
+
end
|
|
137
|
+
|
|
138
|
+
if RSpec::Rails::FeatureCheck.has_action_mailer?
|
|
139
|
+
config.include RSpec::Rails::MailerExampleGroup, type: :mailer
|
|
140
|
+
config.after { ActionMailer::Base.deliveries.clear }
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
if RSpec::Rails::FeatureCheck.has_active_job?
|
|
144
|
+
config.include RSpec::Rails::JobExampleGroup, type: :job
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
if RSpec::Rails::FeatureCheck.has_action_cable_testing?
|
|
148
|
+
config.include RSpec::Rails::ChannelExampleGroup, type: :channel
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
if RSpec::Rails::FeatureCheck.has_action_mailbox?
|
|
152
|
+
config.include RSpec::Rails::MailboxExampleGroup, type: :mailbox
|
|
153
|
+
end
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
initialize_configuration RSpec.configuration
|
|
157
|
+
end
|
|
158
|
+
end
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
require "rspec/rails/matchers/action_cable/have_streams"
|
|
2
|
+
|
|
3
|
+
module RSpec
|
|
4
|
+
module Rails
|
|
5
|
+
# @api public
|
|
6
|
+
# Container module for channel spec functionality. It is only available if
|
|
7
|
+
# ActionCable has been loaded before it.
|
|
8
|
+
module ChannelExampleGroup
|
|
9
|
+
# @private
|
|
10
|
+
module ClassMethods
|
|
11
|
+
# These blank modules are only necessary for YARD processing. It doesn't
|
|
12
|
+
# handle the conditional check below very well and reports undocumented objects.
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
if RSpec::Rails::FeatureCheck.has_action_cable_testing?
|
|
19
|
+
module RSpec
|
|
20
|
+
module Rails
|
|
21
|
+
# @api public
|
|
22
|
+
# Container module for channel spec functionality.
|
|
23
|
+
module ChannelExampleGroup
|
|
24
|
+
extend ActiveSupport::Concern
|
|
25
|
+
include RSpec::Rails::RailsExampleGroup
|
|
26
|
+
include ActionCable::Connection::TestCase::Behavior
|
|
27
|
+
include ActionCable::Channel::TestCase::Behavior
|
|
28
|
+
|
|
29
|
+
# Class-level DSL for channel specs.
|
|
30
|
+
module ClassMethods
|
|
31
|
+
# @private
|
|
32
|
+
def channel_class
|
|
33
|
+
(_channel_class || described_class).tap do |klass|
|
|
34
|
+
next if klass <= ::ActionCable::Channel::Base
|
|
35
|
+
|
|
36
|
+
raise "Described class is not a channel class.\n" \
|
|
37
|
+
"Specify the channel class in the `describe` statement " \
|
|
38
|
+
"or set it manually using `tests MyChannelClass`"
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
# @private
|
|
43
|
+
def connection_class
|
|
44
|
+
(_connection_class || described_class).tap do |klass|
|
|
45
|
+
next if klass <= ::ActionCable::Connection::Base
|
|
46
|
+
|
|
47
|
+
raise "Described class is not a connection class.\n" \
|
|
48
|
+
"Specify the connection class in the `describe` statement " \
|
|
49
|
+
"or set it manually using `tests MyConnectionClass`"
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
# Checks that the connection attempt has been rejected.
|
|
55
|
+
#
|
|
56
|
+
# @example
|
|
57
|
+
# expect { connect }.to have_rejected_connection
|
|
58
|
+
def have_rejected_connection
|
|
59
|
+
raise_error(::ActionCable::Connection::Authorization::UnauthorizedError)
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
# Checks that the subscription is subscribed to at least one stream.
|
|
63
|
+
#
|
|
64
|
+
# @example
|
|
65
|
+
# expect(subscription).to have_streams
|
|
66
|
+
def have_streams
|
|
67
|
+
check_subscribed!
|
|
68
|
+
|
|
69
|
+
RSpec::Rails::Matchers::ActionCable::HaveStream.new
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
# Checks that the channel has been subscribed to the given stream
|
|
73
|
+
#
|
|
74
|
+
# @example
|
|
75
|
+
# expect(subscription).to have_stream_from("chat_1")
|
|
76
|
+
def have_stream_from(stream)
|
|
77
|
+
check_subscribed!
|
|
78
|
+
|
|
79
|
+
RSpec::Rails::Matchers::ActionCable::HaveStream.new(stream)
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
# Checks that the channel has been subscribed to a stream for the given model
|
|
83
|
+
#
|
|
84
|
+
# @example
|
|
85
|
+
# expect(subscription).to have_stream_for(user)
|
|
86
|
+
def have_stream_for(object)
|
|
87
|
+
check_subscribed!
|
|
88
|
+
RSpec::Rails::Matchers::ActionCable::HaveStream.new(broadcasting_for(object))
|
|
89
|
+
end
|
|
90
|
+
end
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
end
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
module RSpec
|
|
2
|
+
module Rails
|
|
3
|
+
# @private
|
|
4
|
+
ControllerAssertionDelegator = RSpec::Rails::AssertionDelegator.new(
|
|
5
|
+
ActionDispatch::Assertions::RoutingAssertions
|
|
6
|
+
)
|
|
7
|
+
|
|
8
|
+
# @api public
|
|
9
|
+
# Container module for controller spec functionality.
|
|
10
|
+
module ControllerExampleGroup
|
|
11
|
+
extend ActiveSupport::Concern
|
|
12
|
+
include RSpec::Rails::RailsExampleGroup
|
|
13
|
+
include ActionController::TestCase::Behavior
|
|
14
|
+
include RSpec::Rails::ViewRendering
|
|
15
|
+
include RSpec::Rails::Matchers::RedirectTo
|
|
16
|
+
include RSpec::Rails::Matchers::RenderTemplate
|
|
17
|
+
include RSpec::Rails::Matchers::RoutingMatchers
|
|
18
|
+
include ControllerAssertionDelegator
|
|
19
|
+
|
|
20
|
+
# Class-level DSL for controller specs.
|
|
21
|
+
module ClassMethods
|
|
22
|
+
# @private
|
|
23
|
+
def controller_class
|
|
24
|
+
described_class
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
# Supports a simple DSL for specifying behavior of ApplicationController.
|
|
28
|
+
# Creates an anonymous subclass of ApplicationController and evals the
|
|
29
|
+
# `body` in that context. Also sets up implicit routes for this
|
|
30
|
+
# controller, that are separate from those defined in "config/routes.rb".
|
|
31
|
+
#
|
|
32
|
+
# @note Due to Ruby 1.8 scoping rules in anonymous subclasses, constants
|
|
33
|
+
# defined in `ApplicationController` must be fully qualified (e.g.
|
|
34
|
+
# `ApplicationController::AccessDenied`) in the block passed to the
|
|
35
|
+
# `controller` method. Any instance methods, filters, etc, that are
|
|
36
|
+
# defined in `ApplicationController`, however, are accessible from
|
|
37
|
+
# within the block.
|
|
38
|
+
#
|
|
39
|
+
# @example
|
|
40
|
+
# describe ApplicationController do
|
|
41
|
+
# controller do
|
|
42
|
+
# def index
|
|
43
|
+
# raise ApplicationController::AccessDenied
|
|
44
|
+
# end
|
|
45
|
+
# end
|
|
46
|
+
#
|
|
47
|
+
# describe "handling AccessDenied exceptions" do
|
|
48
|
+
# it "redirects to the /401.html page" do
|
|
49
|
+
# get :index
|
|
50
|
+
# response.should redirect_to("/401.html")
|
|
51
|
+
# end
|
|
52
|
+
# end
|
|
53
|
+
# end
|
|
54
|
+
#
|
|
55
|
+
# If you would like to spec a subclass of ApplicationController, call
|
|
56
|
+
# controller like so:
|
|
57
|
+
#
|
|
58
|
+
# controller(ApplicationControllerSubclass) do
|
|
59
|
+
# # ....
|
|
60
|
+
# end
|
|
61
|
+
def controller(base_class = nil, &body)
|
|
62
|
+
if RSpec.configuration.infer_base_class_for_anonymous_controllers?
|
|
63
|
+
base_class ||= controller_class
|
|
64
|
+
end
|
|
65
|
+
base_class ||= defined?(ApplicationController) ? ApplicationController : ActionController::Base
|
|
66
|
+
|
|
67
|
+
new_controller_class = Class.new(base_class) do
|
|
68
|
+
def self.name
|
|
69
|
+
root_controller = defined?(ApplicationController) ? ApplicationController : ActionController::Base
|
|
70
|
+
if superclass == root_controller || superclass.abstract?
|
|
71
|
+
"AnonymousController"
|
|
72
|
+
else
|
|
73
|
+
superclass.name
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
new_controller_class.class_exec(&body)
|
|
78
|
+
(class << self; self; end).__send__(:define_method, :controller_class) { new_controller_class }
|
|
79
|
+
|
|
80
|
+
before do
|
|
81
|
+
@orig_routes = routes
|
|
82
|
+
resource_name = if @controller.respond_to?(:controller_name)
|
|
83
|
+
@controller.controller_name.to_sym
|
|
84
|
+
else
|
|
85
|
+
:anonymous
|
|
86
|
+
end
|
|
87
|
+
resource_path = if @controller.respond_to?(:controller_path)
|
|
88
|
+
@controller.controller_path
|
|
89
|
+
else
|
|
90
|
+
resource_name.to_s
|
|
91
|
+
end
|
|
92
|
+
resource_module = resource_path.rpartition('/').first.presence
|
|
93
|
+
resource_as = 'anonymous_' + resource_path.tr('/', '_')
|
|
94
|
+
self.routes = ActionDispatch::Routing::RouteSet.new.tap do |r|
|
|
95
|
+
r.draw do
|
|
96
|
+
resources resource_name,
|
|
97
|
+
as: resource_as,
|
|
98
|
+
module: resource_module,
|
|
99
|
+
path: resource_path
|
|
100
|
+
end
|
|
101
|
+
end
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
after do
|
|
105
|
+
self.routes = @orig_routes
|
|
106
|
+
@orig_routes = nil
|
|
107
|
+
end
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
# Specifies the routeset that will be used for the example group. This
|
|
111
|
+
# is most useful when testing Rails engines.
|
|
112
|
+
#
|
|
113
|
+
# @example
|
|
114
|
+
# describe MyEngine::PostsController do
|
|
115
|
+
# routes { MyEngine::Engine.routes }
|
|
116
|
+
#
|
|
117
|
+
# # ...
|
|
118
|
+
# end
|
|
119
|
+
def routes
|
|
120
|
+
before do
|
|
121
|
+
self.routes = yield
|
|
122
|
+
end
|
|
123
|
+
end
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
# @!attribute [r]
|
|
127
|
+
# Returns the controller object instance under test.
|
|
128
|
+
attr_reader :controller
|
|
129
|
+
|
|
130
|
+
# @!attribute [r]
|
|
131
|
+
# Returns the Rails routes used for the spec.
|
|
132
|
+
attr_reader :routes
|
|
133
|
+
|
|
134
|
+
# @private
|
|
135
|
+
#
|
|
136
|
+
# RSpec Rails uses this to make Rails routes easily available to specs.
|
|
137
|
+
def routes=(routes)
|
|
138
|
+
@routes = routes
|
|
139
|
+
assertion_instance.instance_variable_set(:@routes, routes)
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
# @private
|
|
143
|
+
module BypassRescue
|
|
144
|
+
def rescue_with_handler(exception)
|
|
145
|
+
raise exception
|
|
146
|
+
end
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
# Extends the controller with a module that overrides
|
|
150
|
+
# `rescue_with_handler` to raise the exception passed to it. Use this to
|
|
151
|
+
# specify that an action _should_ raise an exception given appropriate
|
|
152
|
+
# conditions.
|
|
153
|
+
#
|
|
154
|
+
# @example
|
|
155
|
+
# describe ProfilesController do
|
|
156
|
+
# it "raises a 403 when a non-admin user tries to view another user's profile" do
|
|
157
|
+
# profile = create_profile
|
|
158
|
+
# login_as profile.user
|
|
159
|
+
#
|
|
160
|
+
# expect do
|
|
161
|
+
# bypass_rescue
|
|
162
|
+
# get :show, id: profile.id + 1
|
|
163
|
+
# end.to raise_error(/403 Forbidden/)
|
|
164
|
+
# end
|
|
165
|
+
# end
|
|
166
|
+
def bypass_rescue
|
|
167
|
+
controller.extend(BypassRescue)
|
|
168
|
+
end
|
|
169
|
+
|
|
170
|
+
# If method is a named_route, delegates to the RouteSet associated with
|
|
171
|
+
# this controller.
|
|
172
|
+
def method_missing(method, *args, &block)
|
|
173
|
+
if route_available?(method)
|
|
174
|
+
controller.send(method, *args, &block)
|
|
175
|
+
else
|
|
176
|
+
super
|
|
177
|
+
end
|
|
178
|
+
end
|
|
179
|
+
ruby2_keywords :method_missing if respond_to?(:ruby2_keywords, true)
|
|
180
|
+
|
|
181
|
+
included do
|
|
182
|
+
subject { controller }
|
|
183
|
+
|
|
184
|
+
before do
|
|
185
|
+
self.routes = ::Rails.application.routes
|
|
186
|
+
end
|
|
187
|
+
|
|
188
|
+
around do |ex|
|
|
189
|
+
previous_allow_forgery_protection_value = ActionController::Base.allow_forgery_protection
|
|
190
|
+
begin
|
|
191
|
+
ActionController::Base.allow_forgery_protection = false
|
|
192
|
+
ex.call
|
|
193
|
+
ensure
|
|
194
|
+
ActionController::Base.allow_forgery_protection = previous_allow_forgery_protection_value
|
|
195
|
+
end
|
|
196
|
+
end
|
|
197
|
+
end
|
|
198
|
+
|
|
199
|
+
private
|
|
200
|
+
|
|
201
|
+
def route_available?(method)
|
|
202
|
+
(defined?(@routes) && route_defined?(routes, method)) ||
|
|
203
|
+
(defined?(@orig_routes) && route_defined?(@orig_routes, method))
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
def route_defined?(routes, method)
|
|
207
|
+
return false if routes.nil?
|
|
208
|
+
|
|
209
|
+
if routes.named_routes.respond_to?(:route_defined?)
|
|
210
|
+
routes.named_routes.route_defined?(method)
|
|
211
|
+
else
|
|
212
|
+
routes.named_routes.helpers.include?(method)
|
|
213
|
+
end
|
|
214
|
+
end
|
|
215
|
+
end
|
|
216
|
+
end
|
|
217
|
+
end
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
module RSpec
|
|
2
|
+
module Rails
|
|
3
|
+
# @api public
|
|
4
|
+
# Container module for routing spec functionality.
|
|
5
|
+
module FeatureExampleGroup
|
|
6
|
+
extend ActiveSupport::Concern
|
|
7
|
+
include RSpec::Rails::RailsExampleGroup
|
|
8
|
+
|
|
9
|
+
# Default host to be used in Rails route helpers if none is specified.
|
|
10
|
+
DEFAULT_HOST = "www.example.com"
|
|
11
|
+
|
|
12
|
+
included do
|
|
13
|
+
app = ::Rails.application
|
|
14
|
+
if app.respond_to?(:routes)
|
|
15
|
+
include app.routes.url_helpers if app.routes.respond_to?(:url_helpers)
|
|
16
|
+
include app.routes.mounted_helpers if app.routes.respond_to?(:mounted_helpers)
|
|
17
|
+
|
|
18
|
+
if respond_to?(:default_url_options)
|
|
19
|
+
default_url_options[:host] ||= ::RSpec::Rails::FeatureExampleGroup::DEFAULT_HOST
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
# Shim to check for presence of Capybara. Will delegate if present, raise
|
|
25
|
+
# if not. We assume here that in most cases `visit` will be the first
|
|
26
|
+
# Capybara method called in a spec.
|
|
27
|
+
def visit(*)
|
|
28
|
+
if defined?(super)
|
|
29
|
+
super
|
|
30
|
+
else
|
|
31
|
+
raise "Capybara not loaded, please add it to your Gemfile:\n\ngem \"capybara\""
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
unless RSpec.respond_to?(:feature)
|
|
39
|
+
opts = {
|
|
40
|
+
capybara_feature: true,
|
|
41
|
+
type: :feature,
|
|
42
|
+
skip: <<-EOT.squish
|
|
43
|
+
Feature specs require the Capybara (https://github.com/teamcapybara/capybara)
|
|
44
|
+
gem, version 2.13.0 or later.
|
|
45
|
+
EOT
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
RSpec.configure do |c|
|
|
49
|
+
c.alias_example_group_to :feature, opts
|
|
50
|
+
c.alias_example_to :scenario
|
|
51
|
+
c.alias_example_to :xscenario, skip: 'Temporarily skipped with xscenario'
|
|
52
|
+
end
|
|
53
|
+
end
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
require 'rspec/rails/view_assigns'
|
|
2
|
+
|
|
3
|
+
module RSpec
|
|
4
|
+
module Rails
|
|
5
|
+
# @api public
|
|
6
|
+
# Container module for helper specs.
|
|
7
|
+
module HelperExampleGroup
|
|
8
|
+
extend ActiveSupport::Concern
|
|
9
|
+
include RSpec::Rails::RailsExampleGroup
|
|
10
|
+
include ActionView::TestCase::Behavior
|
|
11
|
+
include RSpec::Rails::ViewAssigns
|
|
12
|
+
|
|
13
|
+
# @private
|
|
14
|
+
module ClassMethods
|
|
15
|
+
def determine_constant_from_test_name(_ignore)
|
|
16
|
+
described_class if yield(described_class)
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
# Returns an instance of ActionView::Base with the helper being specified
|
|
21
|
+
# mixed in, along with any of the built-in rails helpers.
|
|
22
|
+
def helper
|
|
23
|
+
_view.tap do |v|
|
|
24
|
+
v.extend(ApplicationHelper) if defined?(ApplicationHelper)
|
|
25
|
+
v.assign(view_assigns)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
private
|
|
30
|
+
|
|
31
|
+
def _controller_path(example)
|
|
32
|
+
example.example_group.described_class.to_s.sub(/Helper/, '').underscore
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
included do
|
|
36
|
+
before do |example|
|
|
37
|
+
controller.controller_path = _controller_path(example)
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
module RSpec
|
|
2
|
+
module Rails
|
|
3
|
+
# @api public
|
|
4
|
+
# Container module for job spec functionality. It is only available if
|
|
5
|
+
# ActiveJob has been loaded before it.
|
|
6
|
+
module JobExampleGroup
|
|
7
|
+
# This blank module is only necessary for YARD processing. It doesn't
|
|
8
|
+
# handle the conditional `defined?` check below very well.
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
if defined?(ActiveJob)
|
|
14
|
+
module RSpec
|
|
15
|
+
module Rails
|
|
16
|
+
# Container module for job spec functionality.
|
|
17
|
+
module JobExampleGroup
|
|
18
|
+
extend ActiveSupport::Concern
|
|
19
|
+
include RSpec::Rails::RailsExampleGroup
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
module RSpec
|
|
2
|
+
module Rails
|
|
3
|
+
# @api public
|
|
4
|
+
# Container module for mailbox spec functionality.
|
|
5
|
+
module MailboxExampleGroup
|
|
6
|
+
extend ActiveSupport::Concern
|
|
7
|
+
|
|
8
|
+
if RSpec::Rails::FeatureCheck.has_action_mailbox?
|
|
9
|
+
require 'action_mailbox/test_helper'
|
|
10
|
+
extend ::ActionMailbox::TestHelper
|
|
11
|
+
|
|
12
|
+
# @private
|
|
13
|
+
def self.create_inbound_email(arg)
|
|
14
|
+
case arg
|
|
15
|
+
when Hash
|
|
16
|
+
create_inbound_email_from_mail(**arg)
|
|
17
|
+
else
|
|
18
|
+
create_inbound_email_from_source(arg.to_s)
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
else
|
|
22
|
+
def self.create_inbound_email(_arg)
|
|
23
|
+
raise "Could not load ActionMailer::TestHelper"
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
class_methods do
|
|
28
|
+
# @private
|
|
29
|
+
def mailbox_class
|
|
30
|
+
described_class
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
included do
|
|
35
|
+
subject { described_class }
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# @api public
|
|
39
|
+
# Passes if the inbound email was delivered
|
|
40
|
+
#
|
|
41
|
+
# @example
|
|
42
|
+
# inbound_email = process(args)
|
|
43
|
+
# expect(inbound_email).to have_been_delivered
|
|
44
|
+
def have_been_delivered
|
|
45
|
+
satisfy('have been delivered', &:delivered?)
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
# @api public
|
|
49
|
+
# Passes if the inbound email bounced during processing
|
|
50
|
+
#
|
|
51
|
+
# @example
|
|
52
|
+
# inbound_email = process(args)
|
|
53
|
+
# expect(inbound_email).to have_bounced
|
|
54
|
+
def have_bounced
|
|
55
|
+
satisfy('have bounced', &:bounced?)
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# @api public
|
|
59
|
+
# Passes if the inbound email failed to process
|
|
60
|
+
#
|
|
61
|
+
# @example
|
|
62
|
+
# inbound_email = process(args)
|
|
63
|
+
# expect(inbound_email).to have_failed
|
|
64
|
+
def have_failed
|
|
65
|
+
satisfy('have failed', &:failed?)
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# Process an inbound email message directly, bypassing routing.
|
|
69
|
+
#
|
|
70
|
+
# @param message [Hash, Mail::Message] a mail message or hash of
|
|
71
|
+
# attributes used to build one
|
|
72
|
+
# @return [ActionMailbox::InboundMessage]
|
|
73
|
+
def process(message)
|
|
74
|
+
MailboxExampleGroup.create_inbound_email(message).tap do |mail|
|
|
75
|
+
self.class.mailbox_class.receive(mail)
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
end
|
|
79
|
+
end
|
|
80
|
+
end
|