opal-rspec 0.5.0.beta2 → 0.5.0.beta3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +23 -4
- data/CHANGELOG.md +22 -1
- data/Gemfile +10 -3
- data/README.md +142 -36
- data/Rakefile +101 -75
- data/config.ru +8 -6
- data/gemfiles/opal_master.gemfile +18 -0
- data/lib/opal/rspec.rb +6 -10
- data/lib/opal/rspec/cached_environment.rb +23 -0
- data/lib/opal/rspec/post_rack_locator.rb +20 -0
- data/lib/opal/rspec/pre_rack_locator.rb +68 -0
- data/lib/opal/rspec/rake_task.rb +97 -20
- data/lib/opal/rspec/sprockets_environment.rb +35 -0
- data/lib/opal/rspec/version.rb +1 -1
- data/opal-rspec.gemspec +9 -12
- data/opal/opal/rspec.rb +11 -8
- data/opal/opal/rspec/async.rb +1 -0
- data/opal/opal/rspec/async/async_example.rb +27 -18
- data/opal/opal/rspec/async/example_group.rb +23 -21
- data/opal/opal/rspec/async/hooks.rb +0 -36
- data/opal/opal/rspec/async/reporter.rb +9 -0
- data/opal/opal/rspec/fixes.rb +3 -10
- data/opal/opal/rspec/fixes/opal.rb +5 -0
- data/opal/opal/rspec/fixes/opal/class.rb +8 -0
- data/opal/opal/rspec/fixes/opal/compatibility.rb +228 -0
- data/opal/opal/rspec/fixes/opal/corelib.rb +3 -0
- data/opal/opal/rspec/fixes/opal/corelib/error.rb +61 -0
- data/opal/opal/rspec/fixes/opal/corelib/regexp.rb +92 -0
- data/opal/opal/rspec/fixes/opal/corelib/struct.rb +260 -0
- data/opal/opal/rspec/fixes/opal/kernel.rb +80 -0
- data/opal/opal/rspec/fixes/opal/stdlib.rb +2 -0
- data/opal/opal/rspec/fixes/opal/stdlib/pp.rb +23 -0
- data/opal/opal/rspec/fixes/opal/stdlib/set.rb +36 -0
- data/opal/opal/rspec/fixes/rspec.rb +7 -0
- data/opal/opal/rspec/fixes/{caller_filter.rb → rspec/caller_filter.rb} +0 -0
- data/opal/opal/rspec/fixes/rspec/core.rb +9 -0
- data/opal/opal/rspec/fixes/rspec/core/configuration.rb +11 -0
- data/opal/opal/rspec/fixes/{example.rb → rspec/core/example.rb} +1 -1
- data/opal/opal/rspec/fixes/rspec/core/example_group.rb +9 -0
- data/opal/opal/rspec/fixes/rspec/core/formatters.rb +6 -0
- data/opal/opal/rspec/fixes/rspec/core/formatters/backtrace_formatter.rb +20 -0
- data/opal/opal/rspec/fixes/rspec/core/formatters/console_codes.rb +11 -0
- data/opal/opal/rspec/fixes/rspec/core/formatters/deprecation_formatter.rb +20 -0
- data/opal/opal/rspec/fixes/rspec/core/formatters/generated_deprecation_message.rb +15 -0
- data/opal/opal/rspec/fixes/rspec/core/formatters/json_formatter.rb +10 -0
- data/opal/opal/rspec/fixes/rspec/core/formatters/loader.rb +38 -0
- data/opal/opal/rspec/fixes/rspec/core/metadata.rb +39 -0
- data/opal/opal/rspec/fixes/rspec/core/notifications.rb +3 -0
- data/opal/opal/rspec/fixes/rspec/core/notifications/examples_notification.rb +30 -0
- data/opal/opal/rspec/fixes/rspec/core/notifications/failed_example_notification.rb +20 -0
- data/opal/opal/rspec/fixes/rspec/core/notifications/summary_notification.rb +26 -0
- data/opal/opal/rspec/fixes/rspec/core/ordering.rb +1 -0
- data/opal/opal/rspec/fixes/rspec/core/ordering/random.rb +13 -0
- data/opal/opal/rspec/fixes/rspec/core/reporter.rb +14 -0
- data/opal/opal/rspec/fixes/rspec/core/warnings.rb +18 -0
- data/opal/opal/rspec/fixes/rspec/example_groups.rb +49 -0
- data/opal/opal/rspec/fixes/rspec/expectations.rb +2 -0
- data/opal/opal/rspec/fixes/{expectations.rb → rspec/expectations/fail_with.rb} +0 -0
- data/opal/opal/rspec/fixes/rspec/expectations/syntax.rb +25 -0
- data/opal/opal/rspec/fixes/rspec/matchers.rb +2 -0
- data/opal/opal/rspec/fixes/rspec/matchers/built_in.rb +4 -0
- data/opal/opal/rspec/fixes/rspec/matchers/built_in/all.rb +10 -0
- data/opal/opal/rspec/fixes/rspec/matchers/built_in/compound.rb +15 -0
- data/opal/opal/rspec/fixes/rspec/matchers/built_in/start_and_end_with.rb +42 -0
- data/opal/opal/rspec/fixes/rspec/matchers/built_in/yield.rb +21 -0
- data/opal/opal/rspec/fixes/{matchers.rb → rspec/matchers/pretty.rb} +0 -0
- data/opal/opal/rspec/fixes/rspec/mocks.rb +4 -0
- data/opal/opal/rspec/fixes/rspec/mocks/error_generator.rb +40 -0
- data/opal/opal/rspec/fixes/rspec/mocks/space.rb +37 -0
- data/opal/opal/rspec/fixes/rspec/mocks/test_double.rb +39 -0
- data/opal/opal/rspec/fixes/rspec/mocks/verifying_double.rb +29 -0
- data/opal/opal/rspec/fixes/rspec/support.rb +4 -0
- data/opal/opal/rspec/fixes/rspec/support/encoded_string.rb +10 -0
- data/opal/opal/rspec/fixes/rspec/support/fuzzy_matcher.rb +23 -0
- data/opal/opal/rspec/fixes/rspec/support/recursive_const_methods.rb +7 -0
- data/opal/opal/rspec/fixes/rspec/support/ruby_features.rb +8 -0
- data/opal/opal/rspec/fixes/rspec/support/warnings.rb +18 -0
- data/opal/opal/rspec/formatter/browser_formatter.rb +38 -0
- data/opal/opal/rspec/formatter/document_io.rb +27 -0
- data/opal/opal/rspec/formatter/element.rb +88 -0
- data/opal/opal/rspec/formatter/html_printer.rb +109 -0
- data/opal/opal/rspec/formatter/noop_flush_string_io.rb +9 -0
- data/opal/opal/rspec/formatter/opal_closed_tty_io.rb +27 -0
- data/opal/opal/rspec/pre_require_fixes.rb +7 -0
- data/opal/opal/rspec/requires.rb +32 -0
- data/opal/opal/rspec/runner.rb +71 -53
- data/opal/opal/rspec/spec_opts.rb.erb +28 -0
- data/opal/opal/rspec/sprockets_runner.rb.erb +5 -3
- data/spec/mri/integration/browser_spec.rb +31 -0
- data/spec/mri/integration/rack/sprockets_runner_js_errors.rb.erb +20 -0
- data/spec/mri/integration/spec_opts_spec.rb +81 -0
- data/spec/mri/unit/opal/rspec/browser_formatter_spec.rb +35 -0
- data/spec/mri/unit/opal/rspec/cached_environment_spec.rb +103 -0
- data/spec/mri/unit/opal/rspec/opal/browser_formatter_spec.rb +14 -0
- data/spec/mri/unit/opal/rspec/rack/config.ru +12 -0
- data/spec/mri/unit/opal/rspec/rake_task_spec.rb +245 -0
- data/spec/mri/unit/opal/rspec/sprockets_environment_spec.rb +94 -0
- data/spec/mri/unit/opal/rspec/temp_dir_helper.rb +19 -0
- data/spec/{after_hooks_spec.rb → opal/after_hooks_spec.rb} +0 -0
- data/spec/{around_hooks_spec.rb → opal/around_hooks_spec.rb} +46 -105
- data/spec/{async_spec.rb → opal/async_spec.rb} +0 -0
- data/spec/{before_hooks_spec.rb → opal/before_hooks_spec.rb} +0 -0
- data/spec/{example_spec.rb → opal/example_spec.rb} +0 -0
- data/spec/opal/expected_failures.txt +40 -0
- data/spec/{matchers_spec.rb → opal/matchers_spec.rb} +0 -0
- data/spec/{mock_spec.rb → opal/mock_spec.rb} +0 -0
- data/spec/{should_syntax_spec.rb → opal/should_syntax_spec.rb} +0 -0
- data/spec/{skip_pending_spec.rb → opal/skip_pending_spec.rb} +0 -0
- data/spec/{subject_spec.rb → opal/subject_spec.rb} +16 -16
- data/spec/other/color_on_by_default_spec.rb +9 -0
- data/spec/other/dummy_spec.rb +5 -0
- data/spec/other/formatter_dependency.rb +3 -0
- data/spec/other/ignored_spec.opal +5 -0
- data/spec/other/test_formatter.rb +9 -0
- data/spec/rspec/core/config.rb +5 -0
- data/spec/rspec/core/config.ru +4 -0
- data/spec/rspec/core/core_spec_loader.rb +42 -0
- data/spec/rspec/core/filter/core/async/example_group.txt +13 -0
- data/spec/rspec/core/filter/core/async/hooks.rb +12 -0
- data/spec/rspec/core/filter/core/async/memoized_helpers.txt +3 -0
- data/spec/rspec/core/filter/core/async/metadata.txt +2 -0
- data/spec/rspec/core/filter/core/bugs/filter_manager.txt +4 -0
- data/spec/rspec/core/filter/core/bugs/formatters.txt +4 -0
- data/spec/rspec/core/filter/core/bugs/memoized_helpers.rb +11 -0
- data/spec/rspec/core/filter/core/bugs/metadata.txt +5 -0
- data/spec/rspec/core/filter/core/bugs/sandbox/subject_issue_test.rb +328 -0
- data/spec/rspec/core/filter/core/bugs/warnings_deprecations.txt +3 -0
- data/spec/rspec/core/filter/core/unsupported/core.txt +5 -0
- data/spec/rspec/core/filter/core/unsupported/example.txt +7 -0
- data/spec/rspec/core/filter/core/unsupported/example_group.txt +13 -0
- data/spec/rspec/core/filter/core/unsupported/filter_manager.txt +7 -0
- data/spec/rspec/core/filter/core/unsupported/formatters.txt +27 -0
- data/spec/rspec/core/filter/core/unsupported/hooks.txt +2 -0
- data/spec/rspec/core/filter/core/unsupported/memoized_helpers.txt +6 -0
- data/spec/rspec/core/filter/core/unsupported/metadata.txt +14 -0
- data/spec/rspec/core/filter/core/unsupported/metadata_filter.txt +2 -0
- data/spec/rspec/core/filter/core/unsupported/notifications.txt +8 -0
- data/spec/rspec/core/filter/core/unsupported/world.txt +3 -0
- data/spec/rspec/core/fixes/missing_constants.rb +20 -0
- data/spec/rspec/core/fixes/opal_itself.rb +38 -0
- data/spec/rspec/core/fixes/shared_examples.rb +3 -0
- data/spec/rspec/core/opal_alternates/rspec/core/example_group_spec.rb +145 -0
- data/spec/rspec/core/opal_alternates/rspec/core/failed_example_notification_spec.rb +31 -0
- data/spec/rspec/core/opal_alternates/rspec/core/hooks_spec.rb +113 -0
- data/spec/rspec/core/opal_alternates/rspec/core/memoized_helpers_spec.rb +36 -0
- data/spec/rspec/core/opal_alternates/rspec/core/metadata_spec.rb +48 -0
- data/spec/rspec/core/require_specs.rb +25 -0
- data/spec/rspec/core/sandboxing.rb +72 -0
- data/spec/rspec/core/spec_files_exclude.txt +41 -0
- data/spec/rspec/expectations/config.rb +16 -0
- data/spec/rspec/expectations/config.ru +4 -0
- data/spec/rspec/expectations/expectation_spec_loader.rb +106 -0
- data/spec/rspec/expectations/filter/bugs/aliased_matcher.txt +2 -0
- data/spec/rspec/expectations/filter/bugs/aliases.rb +13 -0
- data/spec/rspec/expectations/filter/bugs/base_matcher.txt +2 -0
- data/spec/rspec/expectations/filter/bugs/be.rb +4 -0
- data/spec/rspec/expectations/filter/bugs/be_instance_of.rb +7 -0
- data/spec/rspec/expectations/filter/bugs/be_spec.txt +2 -0
- data/spec/rspec/expectations/filter/bugs/configuration.txt +8 -0
- data/spec/rspec/expectations/filter/bugs/contain_exactly.rb +13 -0
- data/spec/rspec/expectations/filter/bugs/define_negated_matcher.rb +9 -0
- data/spec/rspec/expectations/filter/bugs/description_generation.rb +4 -0
- data/spec/rspec/expectations/filter/bugs/dsl.txt +14 -0
- data/spec/rspec/expectations/filter/bugs/equal.txt +3 -0
- data/spec/rspec/expectations/filter/bugs/expectation_target.txt +2 -0
- data/spec/rspec/expectations/filter/bugs/expectations.txt +2 -0
- data/spec/rspec/expectations/filter/bugs/have_attributes.rb +8 -0
- data/spec/rspec/expectations/filter/bugs/include.rb +4 -0
- data/spec/rspec/expectations/filter/bugs/operators.txt +2 -0
- data/spec/rspec/expectations/filter/bugs/raise_error.txt +2 -0
- data/spec/rspec/expectations/filter/bugs/respond_to.rb +13 -0
- data/spec/rspec/expectations/filter/bugs/sandbox/undef.rb +20 -0
- data/spec/rspec/expectations/filter/unsupported/aliases.txt +5 -0
- data/spec/rspec/expectations/filter/unsupported/be.txt +2 -0
- data/spec/rspec/expectations/filter/unsupported/be_instance_of.txt +3 -0
- data/spec/rspec/expectations/filter/unsupported/change.txt +2 -0
- data/spec/rspec/expectations/filter/unsupported/configuration.txt +2 -0
- data/spec/rspec/expectations/filter/unsupported/contain_exactly.txt +2 -0
- data/spec/rspec/expectations/filter/unsupported/description_generation.txt +6 -0
- data/spec/rspec/expectations/filter/unsupported/dsl.txt +8 -0
- data/spec/rspec/expectations/filter/unsupported/eq.txt +10 -0
- data/spec/rspec/expectations/filter/unsupported/equal.txt +3 -0
- data/spec/rspec/expectations/filter/unsupported/expectation_target.txt +2 -0
- data/spec/rspec/expectations/filter/unsupported/expectations.txt +8 -0
- data/spec/rspec/expectations/filter/unsupported/has.txt +2 -0
- data/spec/rspec/expectations/filter/unsupported/include.txt +3 -0
- data/spec/rspec/expectations/filter/unsupported/match.txt +2 -0
- data/spec/rspec/expectations/filter/unsupported/matchers.txt +11 -0
- data/spec/rspec/expectations/filter/unsupported/output.txt +14 -0
- data/spec/rspec/expectations/filter/unsupported/raise_error.txt +3 -0
- data/spec/rspec/expectations/filter/unsupported/respond_to.rb +5 -0
- data/spec/rspec/expectations/filter/unsupported/syntax.txt +3 -0
- data/spec/rspec/expectations/filter/unsupported/yield.txt +2 -0
- data/spec/rspec/expectations/fixes/example_patches.rb +32 -0
- data/spec/rspec/expectations/fixes/missing_constants.rb +12 -0
- data/spec/rspec/expectations/fixes/not_compatible.rb +6 -0
- data/spec/rspec/expectations/fixes/opal_itself.rb +140 -0
- data/spec/rspec/expectations/opal_alternates/be_instance_of_spec.rb +11 -0
- data/spec/rspec/expectations/opal_alternates/dsl_spec.rb +66 -0
- data/spec/rspec/expectations/opal_alternates/expectation_target_spec.rb +21 -0
- data/spec/rspec/expectations/opal_alternates/yield_spec.rb +11 -0
- data/spec/rspec/expectations/require_specs.rb +16 -0
- data/spec/rspec/expectations/shared_examples.rb +47 -0
- data/spec/rspec/expectations/spec_files_exclude.txt +2 -0
- data/spec/rspec/expectations/spec_helper_opal.rb +13 -0
- data/spec/rspec/filter_processor.rb +77 -0
- data/spec/rspec/mocks/config.ru +4 -0
- data/spec/rspec/mocks/filter/bugs/and_call_original.txt +9 -0
- data/spec/rspec/mocks/filter/bugs/and_wrap_original.txt +2 -0
- data/spec/rspec/mocks/filter/bugs/any_instance.rb +24 -0
- data/spec/rspec/mocks/filter/bugs/argument_matchers.rb +3 -0
- data/spec/rspec/mocks/filter/bugs/configuration.txt +2 -0
- data/spec/rspec/mocks/filter/bugs/double.txt +3 -0
- data/spec/rspec/mocks/filter/bugs/expiration.txt +2 -0
- data/spec/rspec/mocks/filter/bugs/instance_method_stasher.txt +2 -0
- data/spec/rspec/mocks/filter/bugs/methods.rb +5 -0
- data/spec/rspec/mocks/filter/bugs/mocks.txt +6 -0
- data/spec/rspec/mocks/filter/bugs/mutate_const.txt +2 -0
- data/spec/rspec/mocks/filter/bugs/partial_double.rb +8 -0
- data/spec/rspec/mocks/filter/bugs/receive.txt +5 -0
- data/spec/rspec/mocks/filter/bugs/should_syntax.txt +5 -0
- data/spec/rspec/mocks/filter/bugs/space.txt +2 -0
- data/spec/rspec/mocks/filter/bugs/spy.txt +5 -0
- data/spec/rspec/mocks/filter/bugs/stub_implementation.rb +9 -0
- data/spec/rspec/mocks/filter/unsupported/and_call_original.txt +5 -0
- data/spec/rspec/mocks/filter/unsupported/and_return.txt +2 -0
- data/spec/rspec/mocks/filter/unsupported/any_instance.rb +6 -0
- data/spec/rspec/mocks/filter/unsupported/argument_matchers.rb +10 -0
- data/spec/rspec/mocks/filter/unsupported/combining_implementation_instructions.rb +9 -0
- data/spec/rspec/mocks/filter/unsupported/double.rb +16 -0
- data/spec/rspec/mocks/filter/unsupported/expected_arg_verification.txt +2 -0
- data/spec/rspec/mocks/filter/unsupported/have_received.txt +2 -0
- data/spec/rspec/mocks/filter/unsupported/instance_double_with_class_loaded.txt +8 -0
- data/spec/rspec/mocks/filter/unsupported/mocks.rb +8 -0
- data/spec/rspec/mocks/filter/unsupported/nil_expectation_warning.rb +8 -0
- data/spec/rspec/mocks/filter/unsupported/partial_double.rb +6 -0
- data/spec/rspec/mocks/filter/unsupported/receive.txt +13 -0
- data/spec/rspec/mocks/filter/unsupported/receive_message_chain.rb +4 -0
- data/spec/rspec/mocks/filter/unsupported/receive_messages.txt +2 -0
- data/spec/rspec/mocks/filter/unsupported/should_syntax.txt +1 -0
- data/spec/rspec/mocks/filter/unsupported/space.rb +7 -0
- data/spec/rspec/mocks/filter/unsupported/stub.rb +7 -0
- data/spec/rspec/mocks/fixes/doubled_classes.rb +76 -0
- data/spec/rspec/mocks/fixes/missing_constants.rb +3 -0
- data/spec/rspec/mocks/fixes/opal_itself.rb +59 -0
- data/spec/rspec/mocks/mocks_spec_loader.rb +87 -0
- data/spec/rspec/mocks/require_specs.rb +15 -0
- data/spec/rspec/mocks/spec_files_exclude.txt +11 -0
- data/spec/rspec/mocks/spec_helper_opal.rb +129 -0
- data/spec/rspec/opal_rspec_spec_loader.rb +349 -0
- data/spec/rspec/shared/opal/fixes/deprecation_helpers.rb +31 -0
- data/spec/rspec/shared/opal/fixes/rspec_helpers.rb +6 -0
- data/spec/rspec/shared/opal/progress_json_formatter.rb +29 -0
- data/spec/rspec/support/config.rb +5 -0
- data/spec/rspec/support/config.ru +4 -0
- data/spec/rspec/support/filter/bugs/recursive_const_methods.txt +3 -0
- data/spec/rspec/support/filter/bugs/sandbox/basic_object.rb +30 -0
- data/spec/rspec/support/filter/bugs/stderr_splitter_spec.txt +2 -0
- data/spec/rspec/support/filter/bugs/support.txt +2 -0
- data/spec/rspec/support/filter/unsupported/fuzzy_matcher.txt +2 -0
- data/spec/rspec/support/filter/unsupported/support.rb +7 -0
- data/spec/rspec/support/filter/unsupported/warnings.txt +6 -0
- data/spec/rspec/support/fixes/missing_constants.rb +3 -0
- data/spec/rspec/support/fixes/opal_itself.rb +13 -0
- data/spec/rspec/support/require_specs.rb +15 -0
- data/spec/rspec/support/spec_files_exclude.txt +26 -0
- data/spec/rspec/support/spec_helper.rb +27 -0
- data/spec/rspec/support/support_spec_loader.rb +34 -0
- data/util/create_requires.rb +6 -2
- data/vendor/spec_runner.js +14 -0
- metadata +255 -43
- data/opal/opal/rspec/browser_formatter.rb +0 -225
- data/opal/opal/rspec/fixes/example_groups.rb +0 -32
- data/opal/opal/rspec/fixes/formatter.rb +0 -62
- data/opal/opal/rspec/fixes/kernel.rb +0 -48
- data/opal/opal/rspec/fixes/mocks.rb +0 -13
- data/opal/opal/rspec/fixes/reporter.rb +0 -12
- data/opal/opal/rspec/text_formatter.rb +0 -88
- data/spec_mri/integration/browser_spec.rb +0 -37
@@ -0,0 +1,9 @@
|
|
1
|
+
class TestFormatter < ::RSpec::Core::Formatters::JsonFormatter
|
2
|
+
include FormatterDependency
|
3
|
+
::RSpec::Core::Formatters.register self, :message, :dump_summary, :dump_profile, :stop, :close
|
4
|
+
|
5
|
+
def close(_notification)
|
6
|
+
super
|
7
|
+
output.write 'test formatter ran!'
|
8
|
+
end
|
9
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require_relative '../opal_rspec_spec_loader'
|
2
|
+
|
3
|
+
module Opal
|
4
|
+
module RSpec
|
5
|
+
module CoreSpecLoader
|
6
|
+
extend Opal::RSpec::OpalRSpecSpecLoader
|
7
|
+
|
8
|
+
def self.expected_pending_count
|
9
|
+
1
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.base_dir
|
13
|
+
'spec/rspec/core'
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.files_with_line_continue
|
17
|
+
[/core\/example_spec.rb/, /pending_spec.rb/]
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.spec_glob
|
21
|
+
%w{rspec-core/spec/**/*_spec.rb spec/rspec/core/opal_alternates/**/*_spec.rb}
|
22
|
+
end
|
23
|
+
|
24
|
+
def self.stubbed_requires
|
25
|
+
[
|
26
|
+
'rubygems',
|
27
|
+
'aruba/api', # Cucumber lib that supports file creation during testing, N/A for us
|
28
|
+
'simplecov', # hooks aren't available on Opal
|
29
|
+
'tmpdir',
|
30
|
+
'rspec/support/spec/shell_out', # only does stuff Opal can't support anyways
|
31
|
+
'rspec/support/spec/prevent_load_time_warnings'
|
32
|
+
]
|
33
|
+
end
|
34
|
+
|
35
|
+
def self.additional_load_paths
|
36
|
+
[
|
37
|
+
'rspec-core/spec' # a few spec support files live outside of rspec-core/spec/rspec and live in support
|
38
|
+
]
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# delay methods defined for async testing cause this to fail
|
2
|
+
RSpec::Core::ExampleGroup minimizes the number of methods that users could inadvertantly overwrite
|
3
|
+
|
4
|
+
# Invokes RSpec::Core::ExampleGroup#run directly, so of course it gets a promise back rather than false
|
5
|
+
# see opal alternates
|
6
|
+
RSpec::Core::ExampleGroup#before, after, and around hooks treats an error in before.* as a failure
|
7
|
+
RSpec::Core::ExampleGroup#run_examples returns false if any of the examples fail
|
8
|
+
RSpec::Core::ExampleGroup#run_examples runs all examples, regardless of any of them failing
|
9
|
+
|
10
|
+
# Run return value is a promise, so we put our own spec in alternates
|
11
|
+
RSpec::Core::ExampleGroup#run with fail_fast\? => true sets RSpec.world.wants_to_quit flag if encountering an exception in before\(:all\)
|
12
|
+
RSpec::Core::ExampleGroup#run with nested example failing returns true
|
13
|
+
RSpec::Core::ExampleGroup#run with top level example failing returns false
|
@@ -0,0 +1,12 @@
|
|
1
|
+
rspec_filter 'hooks' do
|
2
|
+
# promise, see opal alternates
|
3
|
+
filter /RSpec::Core::Hooks when an error happens in.* allows the error to propagate to the user/
|
4
|
+
filter('RSpec::Core::Hooks#around considers the hook to have run when passed as a block to a method that yields').unless { at_least_opal_0_9? }
|
5
|
+
|
6
|
+
# promise, for some reason succeeds on Opal 0.8, see opal alternates
|
7
|
+
filter('RSpec::Core::Hooks#around does not consider the hook to have run when passed as a block to a method that does not yield').if { at_least_opal_0_9? }
|
8
|
+
filter('RSpec::Core::Hooks#around when it does not run the example for a hook declared in the group converts the example to a skipped example so the user is made aware of it')
|
9
|
+
.if { at_least_opal_0_9? }
|
10
|
+
filter('RSpec::Core::Hooks#around when it does not run the example for a hook declared in config converts the example to a skipped example so the user is made aware of it')
|
11
|
+
.if { at_least_opal_0_9? }
|
12
|
+
end
|
@@ -0,0 +1,4 @@
|
|
1
|
+
# similar splat issue as the one noted in metadata bugs for these 3 (splat/description)
|
2
|
+
RSpec::Core::FilterManager#exclusions#description includes an overriden :if filter
|
3
|
+
RSpec::Core::FilterManager#exclusions#description includes an overriden :unless filter
|
4
|
+
RSpec::Core::FilterManager#exclusions#description includes other filters
|
@@ -0,0 +1,4 @@
|
|
1
|
+
# These use mocking (as_stubbed_const), which isn't working, might be easier to figure out in the mocks specs:
|
2
|
+
|
3
|
+
RSpec::Core::Formatters::Loader#add\(formatter\) when a legacy formatter is added with RSpec::LegacyFormatters loads formatters from the external gem
|
4
|
+
RSpec::Core::Formatters::Loader#add\(formatter\) when a legacy formatter is added with RSpec::LegacyFormatters subscribes the formatter to the notifications the adaptor implements
|
@@ -0,0 +1,11 @@
|
|
1
|
+
rspec_filter 'memoized_helpers' do
|
2
|
+
# These depend on https://github.com/opal/opal/issues/1124, but you can only reproduce that with Opal 0.9
|
3
|
+
filter 'RSpec::Core::MemoizedHelpers explicit subject with a name when `super` is used raises a "not supported" error'
|
4
|
+
filter 'RSpec::Core::MemoizedHelpers explicit subject with a name when `super` is used with a `let` definition before the named subject raises a "not supported" error'
|
5
|
+
|
6
|
+
# This works right in Opal 0.9 (see sandbox/subject_issue_test), might be something with the class scoping PR (https://github.com/opal/opal/pull/1114) that requires compiler changes to fix
|
7
|
+
filter("RSpec::Core::MemoizedHelpers explicit subject with a name yields the example in which it is eval'd").unless { at_least_opal_0_9? }
|
8
|
+
|
9
|
+
# This works right in Opal 0.9 (Class === Enumerable), might be https://github.com/opal/opal/commit/304ab9c464754ca54ab03f1f31d5c137ae8e995d but not sure
|
10
|
+
filter('RSpec::Core::MemoizedHelpers implicit subject with a Module returns the Module').unless { at_least_opal_0_9? }
|
11
|
+
end
|
@@ -0,0 +1,5 @@
|
|
1
|
+
# splat problem? something isn't right here, same issue for the following 3
|
2
|
+
RSpec::Core::Metadata :description on a group with a non-string and a string concats the args
|
3
|
+
RSpec::Core::Metadata :full_description with a 2nd arg starting with # removes the space
|
4
|
+
RSpec::Core::Metadata :full_description with a 2nd arg starting with . removes the space
|
5
|
+
RSpec::Core::Metadata :full_description with a 2nd arg starting with :: removes the space
|
@@ -0,0 +1,328 @@
|
|
1
|
+
module RSpec
|
2
|
+
def self.current_example=(ex)
|
3
|
+
@ex = ex
|
4
|
+
end
|
5
|
+
|
6
|
+
def self.current_example
|
7
|
+
@ex
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
module MemoizedHelpers
|
12
|
+
module ClassMethods
|
13
|
+
def let(name, &block)
|
14
|
+
MemoizedHelpers.module_for(self).__send__(:define_method, name, &block)
|
15
|
+
|
16
|
+
define_method(name) {
|
17
|
+
super(RSpec.current_example, &nil)
|
18
|
+
}
|
19
|
+
end
|
20
|
+
|
21
|
+
def subject(name=nil, &block)
|
22
|
+
if name
|
23
|
+
let(name, &block)
|
24
|
+
alias_method :subject, name
|
25
|
+
|
26
|
+
self::NamedSubjectPreventSuper.__send__(:define_method, name) do
|
27
|
+
raise NotImplementedError, "`super` in named subjects is not supported"
|
28
|
+
end
|
29
|
+
else
|
30
|
+
let(:subject, &block)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def self.module_for(example_group)
|
36
|
+
get_constant_or_yield(example_group, :LetDefinitions) do
|
37
|
+
mod = Module.new do
|
38
|
+
# Maybe same problem w/ scoping as class.new anon?
|
39
|
+
include Module.new {
|
40
|
+
example_group.const_set(:NamedSubjectPreventSuper, self)
|
41
|
+
}
|
42
|
+
end
|
43
|
+
|
44
|
+
example_group.const_set(:LetDefinitions, mod)
|
45
|
+
mod
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
def self.define_helpers_on(example_group)
|
50
|
+
example_group.__send__(:include, module_for(example_group))
|
51
|
+
end
|
52
|
+
|
53
|
+
if Module.method(:const_defined?).arity == 1 # for 1.8
|
54
|
+
# @private
|
55
|
+
#
|
56
|
+
# Gets the named constant or yields.
|
57
|
+
# On 1.8, const_defined? / const_get do not take into
|
58
|
+
# account the inheritance hierarchy.
|
59
|
+
def self.get_constant_or_yield(example_group, name)
|
60
|
+
if example_group.const_defined?(name)
|
61
|
+
example_group.const_get(name)
|
62
|
+
else
|
63
|
+
yield
|
64
|
+
end
|
65
|
+
end
|
66
|
+
else
|
67
|
+
# @private
|
68
|
+
#
|
69
|
+
# Gets the named constant or yields.
|
70
|
+
# On 1.9, const_defined? / const_get take into account the
|
71
|
+
# the inheritance by default, and accept an argument to
|
72
|
+
# disable this behavior. It's important that we don't
|
73
|
+
# consider inheritance here; each example group level that
|
74
|
+
# uses a `let` should get its own `LetDefinitions` module.
|
75
|
+
def self.get_constant_or_yield(example_group, name)
|
76
|
+
if example_group.const_defined?(name, (check_ancestors = false))
|
77
|
+
example_group.const_get(name, check_ancestors)
|
78
|
+
else
|
79
|
+
yield
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
module Support
|
86
|
+
# Provides recursive constant lookup methods useful for
|
87
|
+
# constant stubbing.
|
88
|
+
module RecursiveConstMethods
|
89
|
+
# We only want to consider constants that are defined directly on a
|
90
|
+
# particular module, and not include top-level/inherited constants.
|
91
|
+
# Unfortunately, the constant API changed between 1.8 and 1.9, so
|
92
|
+
# we need to conditionally define methods to ignore the top-level/inherited
|
93
|
+
# constants.
|
94
|
+
#
|
95
|
+
# Given:
|
96
|
+
# class A; B = 1; end
|
97
|
+
# class C < A; end
|
98
|
+
#
|
99
|
+
# On 1.8:
|
100
|
+
# - C.const_get("Hash") # => ::Hash
|
101
|
+
# - C.const_defined?("Hash") # => false
|
102
|
+
# - C.constants # => ["B"]
|
103
|
+
# - None of these methods accept the extra `inherit` argument
|
104
|
+
# On 1.9:
|
105
|
+
# - C.const_get("Hash") # => ::Hash
|
106
|
+
# - C.const_defined?("Hash") # => true
|
107
|
+
# - C.const_get("Hash", false) # => raises NameError
|
108
|
+
# - C.const_defined?("Hash", false) # => false
|
109
|
+
# - C.constants # => [:B]
|
110
|
+
# - C.constants(false) #=> []
|
111
|
+
if Module.method(:const_defined?).arity == 1
|
112
|
+
def const_defined_on?(mod, const_name)
|
113
|
+
mod.const_defined?(const_name)
|
114
|
+
end
|
115
|
+
|
116
|
+
def get_const_defined_on(mod, const_name)
|
117
|
+
return mod.const_get(const_name) if const_defined_on?(mod, const_name)
|
118
|
+
|
119
|
+
raise NameError, "uninitialized constant #{mod.name}::#{const_name}"
|
120
|
+
end
|
121
|
+
|
122
|
+
def constants_defined_on(mod)
|
123
|
+
mod.constants.select { |c| const_defined_on?(mod, c) }
|
124
|
+
end
|
125
|
+
else
|
126
|
+
def const_defined_on?(mod, const_name)
|
127
|
+
mod.const_defined?(const_name, false)
|
128
|
+
end
|
129
|
+
|
130
|
+
def get_const_defined_on(mod, const_name)
|
131
|
+
mod.const_get(const_name, false)
|
132
|
+
end
|
133
|
+
|
134
|
+
def constants_defined_on(mod)
|
135
|
+
mod.constants(false)
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
def recursive_const_get(const_name)
|
140
|
+
normalize_const_name(const_name).split('::').inject(Object) do |mod, name|
|
141
|
+
get_const_defined_on(mod, name)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
def recursive_const_defined?(const_name)
|
146
|
+
parts = normalize_const_name(const_name).split('::')
|
147
|
+
parts.inject([Object, '']) do |(mod, full_name), name|
|
148
|
+
yield(full_name, name) if block_given? && !(Module === mod)
|
149
|
+
return false unless const_defined_on?(mod, name)
|
150
|
+
[get_const_defined_on(mod, name), [mod, name].join('::')]
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
154
|
+
def normalize_const_name(const_name)
|
155
|
+
#const_name.sub(/\A::/, '')
|
156
|
+
# the \A, which means 'beginning of string' does not work in Opal/JS regex, ^ is beginning of line, which for constant names, should work OK
|
157
|
+
const_name.sub(/^::/, '')
|
158
|
+
end
|
159
|
+
end
|
160
|
+
end
|
161
|
+
|
162
|
+
module ExampleGroups
|
163
|
+
extend Support::RecursiveConstMethods
|
164
|
+
|
165
|
+
original_constants = method(:constants)
|
166
|
+
|
167
|
+
self.class.send(:define_method, :constants) do
|
168
|
+
original_constants.call().dup
|
169
|
+
end
|
170
|
+
|
171
|
+
def self.assign_const(group)
|
172
|
+
base_name = base_name_for(group)
|
173
|
+
const_scope = constant_scope_for(group)
|
174
|
+
name = disambiguate(base_name, const_scope)
|
175
|
+
|
176
|
+
const_scope.const_set(name, group)
|
177
|
+
end
|
178
|
+
|
179
|
+
def self.constant_scope_for(group)
|
180
|
+
const_scope = group.superclass
|
181
|
+
const_scope = self if const_scope == BaseExampleGroup
|
182
|
+
const_scope
|
183
|
+
end
|
184
|
+
|
185
|
+
def self.base_name_for(group)
|
186
|
+
return "Anonymous" if group.description.empty?
|
187
|
+
|
188
|
+
# convert to CamelCase
|
189
|
+
name = ' ' + group.description
|
190
|
+
|
191
|
+
# replaced gsub! with name = name.gsub (mutable strings)
|
192
|
+
name = name.gsub(/[^0-9a-zA-Z]+([0-9a-zA-Z])/) { Regexp.last_match[1].upcase }
|
193
|
+
|
194
|
+
# mutable strings on these 2
|
195
|
+
name = name.lstrip # Remove leading whitespace
|
196
|
+
name = name.gsub(/\W/, '') # JRuby, RBX and others don't like non-ascii in const names
|
197
|
+
|
198
|
+
# Ruby requires first const letter to be A-Z. Use `Nested`
|
199
|
+
# as necessary to enforce that.
|
200
|
+
# name.gsub!(/\A([^A-Z]|\z)/, 'Nested\1')
|
201
|
+
# opal-rspec, mutable strings, also substituted in ^ for \A since \A is not supported in JS regex
|
202
|
+
name = name.gsub(/^([^A-Z]|\z)/, 'Nested\1')
|
203
|
+
|
204
|
+
name
|
205
|
+
end
|
206
|
+
|
207
|
+
if RUBY_VERSION == '1.9.2'
|
208
|
+
class << self
|
209
|
+
alias _base_name_for base_name_for
|
210
|
+
|
211
|
+
def base_name_for(group)
|
212
|
+
_base_name_for(group) + '_'
|
213
|
+
end
|
214
|
+
end
|
215
|
+
private_class_method :_base_name_for
|
216
|
+
end
|
217
|
+
|
218
|
+
def self.disambiguate(name, const_scope)
|
219
|
+
return name unless const_defined_on?(const_scope, name)
|
220
|
+
|
221
|
+
# Add a trailing number if needed to disambiguate from an existing constant.
|
222
|
+
name = name + "_2"
|
223
|
+
|
224
|
+
while const_defined_on?(const_scope, name)
|
225
|
+
name = name.next
|
226
|
+
end
|
227
|
+
|
228
|
+
name
|
229
|
+
end
|
230
|
+
end
|
231
|
+
|
232
|
+
class BaseExampleGroup
|
233
|
+
@description = nil
|
234
|
+
include MemoizedHelpers
|
235
|
+
extend MemoizedHelpers::ClassMethods
|
236
|
+
|
237
|
+
def self.description
|
238
|
+
@description
|
239
|
+
end
|
240
|
+
|
241
|
+
def self.describe(description='default', &example_group_block)
|
242
|
+
children = []
|
243
|
+
subclass(self, description, &example_group_block).tap do |child|
|
244
|
+
children << child
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
248
|
+
def self.set_it_up(description)
|
249
|
+
@description = description
|
250
|
+
end
|
251
|
+
|
252
|
+
def self.examples
|
253
|
+
@examples ||= []
|
254
|
+
end
|
255
|
+
|
256
|
+
def self.subclass(parent, description, &example_group_block)
|
257
|
+
subclass = Class.new(parent)
|
258
|
+
subclass.set_it_up description
|
259
|
+
ExampleGroups.assign_const(subclass)
|
260
|
+
subclass.module_exec(&example_group_block) if example_group_block
|
261
|
+
|
262
|
+
# The LetDefinitions module must be included _after_ other modules
|
263
|
+
# to ensure that it takes precedence when there are name collisions.
|
264
|
+
# Thus, we delay including it until after the example group block
|
265
|
+
# has been eval'd.
|
266
|
+
MemoizedHelpers.define_helpers_on(subclass)
|
267
|
+
|
268
|
+
subclass
|
269
|
+
end
|
270
|
+
|
271
|
+
def self.example(&block)
|
272
|
+
examples << ExampleClass.new(self, block)
|
273
|
+
examples.last
|
274
|
+
end
|
275
|
+
|
276
|
+
def self.run
|
277
|
+
examples.each do |ex|
|
278
|
+
instance = new
|
279
|
+
ex.run instance
|
280
|
+
end
|
281
|
+
end
|
282
|
+
end
|
283
|
+
|
284
|
+
class ExampleClass
|
285
|
+
def initialize(example_group_class, example_block=nil)
|
286
|
+
@example_group_class = example_group_class
|
287
|
+
@example_block = example_block
|
288
|
+
end
|
289
|
+
|
290
|
+
def run(example_group_inst)
|
291
|
+
RSpec.current_example = self
|
292
|
+
example_group_inst.instance_exec self, &@example_block
|
293
|
+
RSpec.current_example = nil
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
297
|
+
|
298
|
+
eg = BaseExampleGroup.describe
|
299
|
+
example_yielded_to_subject = nil
|
300
|
+
# this works in both 0.8 and 0.9
|
301
|
+
# eg.let(:bah) do |something|
|
302
|
+
# example_yielded_to_subject = something
|
303
|
+
# end
|
304
|
+
|
305
|
+
# only works on 0.9
|
306
|
+
# eg.subject(:bah) do |something|
|
307
|
+
# puts 'subje executed'
|
308
|
+
# # adding super gets expected error on ruby, not on opal (even on 0.9) - https://github.com/opal/opal/issues/1124
|
309
|
+
# #super()
|
310
|
+
# example_yielded_to_subject = something
|
311
|
+
# end
|
312
|
+
|
313
|
+
# Works on 0.8 and 0.9
|
314
|
+
eg.subject() do |something|
|
315
|
+
puts 'subje executed'
|
316
|
+
# adding super gets expected error on ruby, not on opal (even on 0.9) - https://github.com/opal/opal/issues/1124
|
317
|
+
#super()
|
318
|
+
example_yielded_to_subject = something
|
319
|
+
end
|
320
|
+
|
321
|
+
example_yielded_to_example = nil
|
322
|
+
eg.example { |e|
|
323
|
+
subject
|
324
|
+
example_yielded_to_example = e
|
325
|
+
}
|
326
|
+
eg.run
|
327
|
+
|
328
|
+
puts "expected #{example_yielded_to_example}, got #{example_yielded_to_subject}"
|