opal 1.0.3 → 1.1.1.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +13 -12
- data/.gitattributes +1 -1
- data/.github/FUNDING.yml +1 -0
- data/.github/workflows/build.yml +90 -0
- data/.jshintrc +1 -1
- data/.overcommit.yml +35 -0
- data/.rubocop.yml +44 -7
- data/{.rubocop_todo.yml → .rubocop/todo.yml} +4 -5
- data/CHANGELOG.md +152 -1
- data/Gemfile +2 -3
- data/HACKING.md +2 -9
- data/LICENSE +1 -1
- data/README.md +21 -18
- data/UNRELEASED.md +4 -2
- data/benchmark-ips/bm_array_pop_1.rb +8 -0
- data/benchmark-ips/bm_array_shift.rb +7 -0
- data/benchmark-ips/bm_js_symbols_vs_strings.rb +7 -2
- data/benchmark-ips/class_shovel_vs_singleton_class.rb +16 -0
- data/bin/build-browser-source-map-support +4 -0
- data/bin/format-filters +54 -0
- data/bin/git-submodule-fast-install +49 -0
- data/bin/remove-filters +39 -0
- data/bin/setup +4 -0
- data/bin/yarn +11 -0
- data/docs/releasing.md +18 -0
- data/docs/roda-sprockets.md +86 -0
- data/docs/sinatra.md +5 -12
- data/examples/rack/Gemfile +1 -0
- data/examples/rack/app/application.rb +3 -0
- data/examples/rack/config.ru +5 -4
- data/exe/opal-repl +2 -83
- data/lib/opal/ast/builder.rb +1 -1
- data/lib/opal/builder.rb +2 -10
- data/lib/opal/builder_processors.rb +1 -1
- data/lib/opal/cli.rb +4 -1
- data/lib/opal/cli_options.rb +11 -3
- data/lib/opal/cli_runners.rb +27 -37
- data/lib/opal/cli_runners/applescript.rb +5 -44
- data/lib/opal/cli_runners/chrome.js +7 -35
- data/lib/opal/cli_runners/chrome.rb +75 -17
- data/lib/opal/cli_runners/compiler.rb +17 -0
- data/lib/opal/cli_runners/nashorn.rb +9 -43
- data/lib/opal/cli_runners/nodejs.rb +18 -47
- data/lib/opal/cli_runners/server.rb +18 -6
- data/lib/opal/cli_runners/source-map-support-browser.js +6449 -0
- data/lib/opal/cli_runners/source-map-support-node.js +3704 -0
- data/lib/opal/cli_runners/source-map-support.js +639 -0
- data/lib/opal/cli_runners/system_runner.rb +45 -0
- data/lib/opal/compiler.rb +57 -29
- data/lib/opal/config.rb +0 -5
- data/lib/opal/erb.rb +1 -1
- data/lib/opal/magic_comments.rb +34 -0
- data/lib/opal/nodes/args/arity_check.rb +2 -1
- data/lib/opal/nodes/base.rb +1 -1
- data/lib/opal/nodes/call.rb +1 -4
- data/lib/opal/nodes/def.rb +2 -0
- data/lib/opal/nodes/iter.rb +1 -1
- data/lib/opal/nodes/literal.rb +19 -14
- data/lib/opal/nodes/logic.rb +5 -80
- data/lib/opal/nodes/masgn.rb +2 -0
- data/lib/opal/nodes/rescue.rb +1 -1
- data/lib/opal/nodes/super.rb +24 -10
- data/lib/opal/nodes/top.rb +5 -4
- data/lib/opal/parser/with_c_lexer.rb +2 -1
- data/lib/opal/parser/with_ruby_lexer.rb +1 -1
- data/lib/opal/path_reader.rb +2 -2
- data/lib/opal/paths.rb +8 -5
- data/lib/opal/repl.rb +103 -0
- data/lib/opal/rewriter.rb +4 -0
- data/lib/opal/rewriters/for_rewriter.rb +1 -1
- data/lib/opal/rewriters/js_reserved_words.rb +7 -7
- data/lib/opal/rewriters/numblocks.rb +31 -0
- data/lib/opal/rewriters/returnable_logic.rb +33 -0
- data/lib/opal/util.rb +11 -48
- data/lib/opal/version.rb +1 -1
- data/opal.gemspec +26 -26
- data/opal/corelib/array.rb +160 -118
- data/opal/corelib/array/pack.rb +5 -3
- data/opal/corelib/basic_object.rb +4 -4
- data/opal/corelib/class.rb +2 -1
- data/opal/corelib/comparable.rb +49 -31
- data/opal/corelib/constants.rb +5 -5
- data/opal/corelib/enumerable.rb +108 -46
- data/opal/corelib/enumerator.rb +27 -12
- data/opal/corelib/file.rb +3 -1
- data/opal/corelib/hash.rb +6 -1
- data/opal/corelib/helpers.rb +8 -28
- data/opal/corelib/io.rb +12 -7
- data/opal/corelib/kernel.rb +45 -14
- data/opal/corelib/kernel/format.rb +3 -1
- data/opal/corelib/math.rb +8 -6
- data/opal/corelib/method.rb +8 -0
- data/opal/corelib/module.rb +17 -2
- data/opal/corelib/number.rb +3 -12
- data/opal/corelib/proc.rb +16 -0
- data/opal/corelib/random/mersenne_twister.rb +147 -0
- data/opal/corelib/range.rb +3 -13
- data/opal/corelib/regexp.rb +10 -6
- data/opal/corelib/runtime.js +208 -81
- data/opal/corelib/string.rb +55 -49
- data/opal/corelib/string/encoding.rb +109 -32
- data/opal/corelib/string/unpack.rb +2 -17
- data/opal/corelib/struct.rb +14 -1
- data/opal/corelib/time.rb +4 -0
- data/opal/opal.rb +1 -1
- data/opal/opal/mini.rb +1 -1
- data/package.json +16 -0
- data/spec/README.md +10 -0
- data/spec/filters/bugs/array.rb +76 -0
- data/spec/filters/bugs/base64.rb +10 -0
- data/spec/filters/bugs/basicobject.rb +12 -0
- data/spec/filters/bugs/bigdecimal.rb +248 -0
- data/spec/filters/bugs/class.rb +12 -0
- data/spec/filters/bugs/complex.rb +7 -0
- data/spec/filters/bugs/date.rb +104 -0
- data/spec/filters/bugs/encoding.rb +259 -0
- data/spec/filters/bugs/enumerable.rb +26 -0
- data/spec/filters/bugs/enumerator.rb +48 -0
- data/spec/filters/bugs/exception.rb +120 -0
- data/spec/filters/bugs/file.rb +48 -0
- data/spec/filters/bugs/float.rb +74 -0
- data/spec/filters/bugs/hash.rb +60 -0
- data/spec/filters/bugs/integer.rb +78 -0
- data/spec/filters/bugs/io.rb +9 -0
- data/spec/filters/bugs/kernel.rb +401 -0
- data/spec/filters/bugs/language.rb +451 -0
- data/spec/filters/bugs/marshal.rb +50 -0
- data/spec/filters/bugs/math.rb +4 -0
- data/spec/filters/bugs/method.rb +79 -0
- data/spec/filters/bugs/module.rb +281 -0
- data/spec/filters/bugs/nilclass.rb +4 -0
- data/spec/filters/bugs/numeric.rb +27 -0
- data/spec/filters/bugs/openstruct.rb +8 -0
- data/spec/filters/bugs/pack_unpack.rb +138 -0
- data/spec/filters/bugs/pathname.rb +9 -0
- data/spec/filters/bugs/proc.rb +80 -0
- data/spec/filters/bugs/random.rb +20 -0
- data/spec/filters/bugs/range.rb +139 -0
- data/spec/filters/bugs/rational.rb +12 -0
- data/spec/filters/bugs/regexp.rb +91 -0
- data/spec/filters/bugs/set.rb +51 -0
- data/spec/filters/bugs/singleton.rb +7 -0
- data/spec/filters/bugs/string.rb +341 -0
- data/spec/filters/bugs/stringscanner.rb +78 -0
- data/spec/filters/bugs/struct.rb +26 -0
- data/spec/filters/bugs/symbol.rb +7 -0
- data/spec/filters/bugs/time.rb +109 -0
- data/spec/filters/bugs/unboundmethod.rb +33 -0
- data/spec/filters/bugs/warnings.rb +30 -0
- data/spec/filters/unsupported/array.rb +168 -0
- data/spec/filters/unsupported/basicobject.rb +15 -0
- data/spec/filters/unsupported/bignum.rb +55 -0
- data/spec/filters/unsupported/class.rb +5 -0
- data/spec/filters/unsupported/delegator.rb +6 -0
- data/spec/filters/unsupported/enumerable.rb +12 -0
- data/spec/filters/unsupported/enumerator.rb +14 -0
- data/spec/filters/unsupported/file.rb +4 -0
- data/spec/filters/unsupported/fixnum.rb +15 -0
- data/spec/filters/unsupported/float.rb +47 -0
- data/spec/filters/unsupported/freeze.rb +259 -0
- data/spec/filters/unsupported/hash.rb +44 -0
- data/spec/filters/unsupported/integer.rb +101 -0
- data/spec/filters/unsupported/kernel.rb +35 -0
- data/spec/filters/unsupported/language.rb +25 -0
- data/spec/filters/unsupported/marshal.rb +44 -0
- data/spec/filters/unsupported/matchdata.rb +63 -0
- data/spec/filters/unsupported/math.rb +4 -0
- data/spec/filters/unsupported/pathname.rb +4 -0
- data/spec/filters/unsupported/privacy.rb +287 -0
- data/spec/filters/unsupported/proc.rb +4 -0
- data/spec/filters/unsupported/random.rb +5 -0
- data/spec/filters/unsupported/range.rb +8 -0
- data/spec/filters/unsupported/regexp.rb +70 -0
- data/spec/filters/unsupported/set.rb +5 -0
- data/spec/filters/unsupported/singleton.rb +7 -0
- data/spec/filters/unsupported/string.rb +687 -0
- data/spec/filters/unsupported/struct.rb +7 -0
- data/spec/filters/unsupported/symbol.rb +21 -0
- data/spec/filters/unsupported/taint.rb +162 -0
- data/spec/filters/unsupported/thread.rb +10 -0
- data/spec/filters/unsupported/time.rb +204 -0
- data/spec/filters/unsupported/usage_of_files.rb +262 -0
- data/spec/lib/builder_processors_spec.rb +44 -0
- data/spec/lib/builder_spec.rb +133 -0
- data/spec/lib/cli_runners/server_spec.rb +25 -0
- data/spec/lib/cli_runners_spec.rb +16 -0
- data/spec/lib/cli_spec.rb +256 -0
- data/spec/lib/compiler_spec.rb +693 -0
- data/spec/lib/config_spec.rb +112 -0
- data/spec/lib/dependency_resolver_spec.rb +43 -0
- data/spec/lib/deprecations_spec.rb +17 -0
- data/spec/lib/fixtures/complex_sprockets.js.rb.erb +4 -0
- data/spec/lib/fixtures/file_with_directives.js +2 -0
- data/spec/lib/fixtures/jst_file.js.jst +1 -0
- data/spec/lib/fixtures/no_requires.rb +1 -0
- data/spec/lib/fixtures/opal_file.rb +2 -0
- data/spec/lib/fixtures/require_tree_test.rb +3 -0
- data/spec/lib/fixtures/required_file.js +1 -0
- data/spec/lib/fixtures/required_tree_test/required_file1.rb +1 -0
- data/spec/lib/fixtures/required_tree_test/required_file2.rb +1 -0
- data/spec/lib/fixtures/requires.rb +7 -0
- data/spec/lib/fixtures/source_location_test.rb +7 -0
- data/spec/lib/fixtures/source_map.rb +1 -0
- data/spec/lib/fixtures/source_map/subfolder/other_file.rb +1 -0
- data/spec/lib/fixtures/sprockets_file.js.rb +3 -0
- data/spec/lib/fixtures/sprockets_require_tree_test.rb +3 -0
- data/spec/lib/path_reader_spec.rb +47 -0
- data/spec/lib/paths_spec.rb +18 -0
- data/spec/lib/repl_spec.rb +28 -0
- data/spec/lib/rewriters/base_spec.rb +68 -0
- data/spec/lib/rewriters/binary_operator_assignment_spec.rb +153 -0
- data/spec/lib/rewriters/block_to_iter_spec.rb +28 -0
- data/spec/lib/rewriters/dot_js_syntax_spec.rb +108 -0
- data/spec/lib/rewriters/explicit_writer_return_spec.rb +186 -0
- data/spec/lib/rewriters/for_rewriter_spec.rb +92 -0
- data/spec/lib/rewriters/hashes/key_duplicates_rewriter_spec.rb +47 -0
- data/spec/lib/rewriters/js_reserved_words_spec.rb +119 -0
- data/spec/lib/rewriters/logical_operator_assignment_spec.rb +202 -0
- data/spec/lib/rewriters/opal_engine_check_spec.rb +84 -0
- data/spec/lib/rewriters/returnable_logic_spec.rb +52 -0
- data/spec/lib/rewriters/rubyspec/filters_rewriter_spec.rb +59 -0
- data/spec/lib/simple_server_spec.rb +56 -0
- data/spec/lib/source_map/file_spec.rb +67 -0
- data/spec/lib/source_map/index_spec.rb +80 -0
- data/spec/lib/spec_helper.rb +105 -0
- data/spec/mspec-opal/formatters.rb +197 -0
- data/spec/mspec-opal/runner.rb +172 -0
- data/spec/opal/compiler/irb_spec.rb +44 -0
- data/spec/opal/compiler/unicode_spec.rb +10 -0
- data/spec/opal/core/array/dup_spec.rb +23 -0
- data/spec/opal/core/array/intersection_spec.rb +38 -0
- data/spec/opal/core/array/minus_spec.rb +38 -0
- data/spec/opal/core/array/union_spec.rb +38 -0
- data/spec/opal/core/array/uniq_spec.rb +49 -0
- data/spec/opal/core/class/inherited_spec.rb +18 -0
- data/spec/opal/core/enumerable/all_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/any_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/collect_break_spec.rb +13 -0
- data/spec/opal/core/enumerable/count_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/detect_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/drop_while_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/each_slice_break_spec.rb +6 -0
- data/spec/opal/core/enumerable/each_with_index_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/each_with_object_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/find_all_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/find_index_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/grep_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/max_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/max_by_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/min_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/min_by_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/none_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/one_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/reduce_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/take_while_break_spec.rb +5 -0
- data/spec/opal/core/enumerator/with_index_spec.rb +6 -0
- data/spec/opal/core/exception_spec.rb +8 -0
- data/spec/opal/core/fixtures/require_tree_files/file 1.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/file 2.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/file 3.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/file 4.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/file 5.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 1.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 2.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/other/other 1.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_with_dot/file 1.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_with_dot/file 2.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_with_dot/file 3.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_with_dot/index.rb +3 -0
- data/spec/opal/core/hash/internals_spec.rb +339 -0
- data/spec/opal/core/helpers_spec.rb +14 -0
- data/spec/opal/core/iterable_props_spec.rb +53 -0
- data/spec/opal/core/kernel/at_exit_spec.rb +70 -0
- data/spec/opal/core/kernel/freeze_spec.rb +15 -0
- data/spec/opal/core/kernel/instance_variables_spec.rb +110 -0
- data/spec/opal/core/kernel/methods_spec.rb +25 -0
- data/spec/opal/core/kernel/public_methods_spec.rb +25 -0
- data/spec/opal/core/kernel/require_tree_spec.rb +18 -0
- data/spec/opal/core/kernel/respond_to_spec.rb +15 -0
- data/spec/opal/core/language/DATA/characters_support_spec.rb +9 -0
- data/spec/opal/core/language/DATA/empty___END___spec.rb +7 -0
- data/spec/opal/core/language/DATA/multiple___END___spec.rb +10 -0
- data/spec/opal/core/language/arguments/mlhs_arg_spec.rb +18 -0
- data/spec/opal/core/language/keyword_arguments_spec.rb +9 -0
- data/spec/opal/core/language/numblocks_spec.rb +16 -0
- data/spec/opal/core/language/safe_navigator_spec.rb +7 -0
- data/spec/opal/core/language/while_spec.rb +31 -0
- data/spec/opal/core/language_spec.rb +29 -0
- data/spec/opal/core/marshal/dump_spec.rb +81 -0
- data/spec/opal/core/marshal/load_spec.rb +13 -0
- data/spec/opal/core/module_spec.rb +27 -0
- data/spec/opal/core/object_id_spec.rb +56 -0
- data/spec/opal/core/regexp/interpolation_spec.rb +40 -0
- data/spec/opal/core/regexp/match_spec.rb +78 -0
- data/spec/opal/core/runtime/bridged_classes_spec.rb +123 -0
- data/spec/opal/core/runtime/constants_spec.rb +16 -0
- data/spec/opal/core/runtime/eval_spec.rb +5 -0
- data/spec/opal/core/runtime/exit_spec.rb +29 -0
- data/spec/opal/core/runtime/is_a_spec.rb +48 -0
- data/spec/opal/core/runtime/loaded_spec.rb +20 -0
- data/spec/opal/core/runtime/main_methods_spec.rb +39 -0
- data/spec/opal/core/runtime/method_missing_spec.rb +68 -0
- data/spec/opal/core/runtime/rescue_spec.rb +37 -0
- data/spec/opal/core/runtime/string_spec.rb +25 -0
- data/spec/opal/core/runtime/truthy_spec.rb +61 -0
- data/spec/opal/core/runtime_spec.rb +58 -0
- data/spec/opal/core/string/each_byte_spec.rb +19 -0
- data/spec/opal/core/string/gsub_spec.rb +35 -0
- data/spec/opal/core/string/to_sym_spec.rb +9 -0
- data/spec/opal/core/string_spec.rb +28 -0
- data/spec/opal/core/struct/dup_spec.rb +11 -0
- data/spec/opal/core/time_spec.rb +68 -0
- data/spec/opal/stdlib/erb/erb_spec.rb +30 -0
- data/spec/opal/stdlib/erb/inline_block.opalerb +3 -0
- data/spec/opal/stdlib/erb/quoted.opalerb +1 -0
- data/spec/opal/stdlib/erb/simple.opalerb +1 -0
- data/spec/opal/stdlib/js_spec.rb +72 -0
- data/spec/opal/stdlib/json/ext_spec.rb +55 -0
- data/spec/opal/stdlib/json/parse_spec.rb +37 -0
- data/spec/opal/stdlib/logger/logger_spec.rb +308 -0
- data/spec/opal/stdlib/native/alias_native_spec.rb +27 -0
- data/spec/opal/stdlib/native/array_spec.rb +11 -0
- data/spec/opal/stdlib/native/date_spec.rb +12 -0
- data/spec/opal/stdlib/native/deprecated_include_spec.rb +8 -0
- data/spec/opal/stdlib/native/each_spec.rb +13 -0
- data/spec/opal/stdlib/native/element_reference_spec.rb +16 -0
- data/spec/opal/stdlib/native/exposure_spec.rb +33 -0
- data/spec/opal/stdlib/native/ext_spec.rb +19 -0
- data/spec/opal/stdlib/native/hash_spec.rb +67 -0
- data/spec/opal/stdlib/native/initialize_spec.rb +17 -0
- data/spec/opal/stdlib/native/method_missing_spec.rb +51 -0
- data/spec/opal/stdlib/native/native_alias_spec.rb +26 -0
- data/spec/opal/stdlib/native/native_class_spec.rb +18 -0
- data/spec/opal/stdlib/native/native_module_spec.rb +13 -0
- data/spec/opal/stdlib/native/native_reader_spec.rb +22 -0
- data/spec/opal/stdlib/native/native_writer_spec.rb +30 -0
- data/spec/opal/stdlib/native/new_spec.rb +92 -0
- data/spec/opal/stdlib/native/struct_spec.rb +12 -0
- data/spec/opal/stdlib/pp_spec.rb +5 -0
- data/spec/opal/stdlib/promise/always_spec.rb +49 -0
- data/spec/opal/stdlib/promise/error_spec.rb +15 -0
- data/spec/opal/stdlib/promise/rescue_spec.rb +53 -0
- data/spec/opal/stdlib/promise/then_spec.rb +79 -0
- data/spec/opal/stdlib/promise/trace_spec.rb +51 -0
- data/spec/opal/stdlib/promise/value_spec.rb +15 -0
- data/spec/opal/stdlib/promise/when_spec.rb +34 -0
- data/spec/opal/stdlib/source_map_spec.rb +8 -0
- data/spec/opal/stdlib/strscan/scan_spec.rb +11 -0
- data/spec/opal/stdlib/template/paths_spec.rb +10 -0
- data/spec/opal/stdlib/thread/mutex_spec.rb +40 -0
- data/spec/opal/stdlib/thread/thread_queue_spec.rb +32 -0
- data/spec/opal/stdlib/thread/thread_spec.rb +60 -0
- data/spec/ruby_specs +183 -0
- data/spec/spec_helper.rb +31 -0
- data/spec/support/guard_platform.rb +4 -0
- data/spec/support/match_helpers.rb +57 -0
- data/spec/support/mspec_rspec_adapter.rb +33 -0
- data/spec/support/rewriters_helper.rb +54 -0
- data/spec/support/source_map_helper.rb +190 -0
- data/stdlib/base64.rb +2 -2
- data/stdlib/bigdecimal.rb +15 -3
- data/stdlib/bigdecimal/bignumber.js.rb +1 -1
- data/stdlib/bigdecimal/util.rb +148 -0
- data/stdlib/delegate.rb +8 -0
- data/stdlib/nodejs/fileutils.rb +1 -1
- data/stdlib/nodejs/kernel.rb +0 -13
- data/stdlib/nodejs/stacktrace.rb +4 -179
- data/stdlib/ostruct.rb +5 -0
- data/stdlib/pp.rb +586 -19
- data/stdlib/prettyprint.rb +556 -0
- data/stdlib/rbconfig/sizeof.rb +2 -0
- data/stdlib/securerandom.rb +32 -0
- data/stdlib/set.rb +36 -0
- data/stdlib/strscan.rb +15 -0
- data/tasks/benchmarking.rake +1 -1
- data/tasks/linting.rake +3 -5
- data/tasks/releasing.rake +2 -5
- data/tasks/testing.rake +16 -11
- data/tasks/testing/mspec_special_calls.rb +1 -19
- data/test/nodejs/fixtures/cat.png +0 -0
- data/test/nodejs/fixtures/hello.rb +1 -0
- data/test/nodejs/fixtures/iso88591.txt +1 -0
- data/test/nodejs/fixtures/utf8.txt +1 -0
- data/test/nodejs/fixtures/win1258.txt +1 -0
- data/test/nodejs/test_dir.rb +39 -0
- data/test/nodejs/test_env.rb +62 -0
- data/test/nodejs/test_error.rb +29 -0
- data/test/nodejs/test_file.rb +206 -0
- data/test/nodejs/test_file_encoding.rb +20 -0
- data/test/nodejs/test_io.rb +18 -0
- data/test/nodejs/test_opal_builder.rb +12 -0
- data/test/nodejs/test_pathname.rb +16 -0
- data/test/opal/cat.png +0 -0
- data/test/opal/http_server.rb +52 -0
- data/test/opal/test_base64.rb +115 -0
- data/test/opal/test_keyword.rb +590 -0
- data/test/opal/test_matrix.rb +661 -0
- data/test/opal/test_openuri.rb +53 -0
- data/test/opal/unsupported_and_bugs.rb +39 -0
- data/yarn.lock +1355 -0
- metadata +905 -40
- data/.travis.yml +0 -109
- data/appveyor.yml +0 -35
- data/lib/opal/nodes/runtime_helpers.rb +0 -51
- data/opal/corelib/random/MersenneTwister.js +0 -137
- data/opal/corelib/random/mersenne_twister.js.rb +0 -13
- data/stdlib/bigdecimal/kernel.rb +0 -5
@@ -0,0 +1,590 @@
|
|
1
|
+
# Copied from cruby and modified to skip unsupported syntaxes
|
2
|
+
require 'test/unit'
|
3
|
+
|
4
|
+
class TestKeywordArguments < Test::Unit::TestCase
|
5
|
+
def f1(str: "foo", num: 424242)
|
6
|
+
[str, num]
|
7
|
+
end
|
8
|
+
|
9
|
+
def test_f1
|
10
|
+
skip %{TypeError: no implicit conversion of NilClass into String}
|
11
|
+
|
12
|
+
assert_equal(["foo", 424242], f1)
|
13
|
+
assert_equal(["bar", 424242], f1(str: "bar"))
|
14
|
+
assert_equal(["foo", 111111], f1(num: 111111))
|
15
|
+
assert_equal(["bar", 111111], f1(str: "bar", num: 111111))
|
16
|
+
assert_raise(ArgumentError) { f1(str: "bar", check: true) }
|
17
|
+
assert_raise(ArgumentError) { f1("string") }
|
18
|
+
end
|
19
|
+
|
20
|
+
|
21
|
+
def f2(x, str: "foo", num: 424242)
|
22
|
+
[x, str, num]
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_f2
|
26
|
+
assert_equal([:xyz, "foo", 424242], f2(:xyz))
|
27
|
+
assert_equal([{"bar"=>42}, "foo", 424242], f2("bar"=>42))
|
28
|
+
end
|
29
|
+
|
30
|
+
|
31
|
+
def f3(str: "foo", num: 424242, **h)
|
32
|
+
[str, num, h]
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_f3
|
36
|
+
assert_equal(["foo", 424242, {}], f3)
|
37
|
+
assert_equal(["bar", 424242, {}], f3(str: "bar"))
|
38
|
+
assert_equal(["foo", 111111, {}], f3(num: 111111))
|
39
|
+
assert_equal(["bar", 111111, {}], f3(str: "bar", num: 111111))
|
40
|
+
assert_equal(["bar", 424242, {:check=>true}], f3(str: "bar", check: true))
|
41
|
+
assert_raise(ArgumentError) { f3("string") }
|
42
|
+
end
|
43
|
+
|
44
|
+
# define_method(:f4) {|str: "foo", num: 424242| [str, num] }
|
45
|
+
#
|
46
|
+
# def test_f4
|
47
|
+
# assert_equal(["foo", 424242], f4)
|
48
|
+
# assert_equal(["bar", 424242], f4(str: "bar"))
|
49
|
+
# assert_equal(["foo", 111111], f4(num: 111111))
|
50
|
+
# assert_equal(["bar", 111111], f4(str: "bar", num: 111111))
|
51
|
+
# assert_raise(ArgumentError) { f4(str: "bar", check: true) }
|
52
|
+
# assert_raise(ArgumentError) { f4("string") }
|
53
|
+
# end
|
54
|
+
|
55
|
+
define_method(:f5) {|str: "foo", num: 424242, **h| [str, num, h] }
|
56
|
+
|
57
|
+
def test_f5
|
58
|
+
assert_equal(["foo", 424242, {}], f5)
|
59
|
+
assert_equal(["bar", 424242, {}], f5(str: "bar"))
|
60
|
+
assert_equal(["foo", 111111, {}], f5(num: 111111))
|
61
|
+
assert_equal(["bar", 111111, {}], f5(str: "bar", num: 111111))
|
62
|
+
assert_equal(["bar", 424242, {:check=>true}], f5(str: "bar", check: true))
|
63
|
+
assert_raise(ArgumentError) { f5("string") }
|
64
|
+
end
|
65
|
+
|
66
|
+
|
67
|
+
def f6(str: "foo", num: 424242, **h, &blk)
|
68
|
+
[str, num, h, blk]
|
69
|
+
end
|
70
|
+
|
71
|
+
def test_f6 # [ruby-core:40518]
|
72
|
+
assert_equal(["foo", 424242, {}, nil], f6)
|
73
|
+
assert_equal(["bar", 424242, {}, nil], f6(str: "bar"))
|
74
|
+
assert_equal(["foo", 111111, {}, nil], f6(num: 111111))
|
75
|
+
assert_equal(["bar", 111111, {}, nil], f6(str: "bar", num: 111111))
|
76
|
+
assert_equal(["bar", 424242, {:check=>true}, nil], f6(str: "bar", check: true))
|
77
|
+
a = f6 {|x| x + 42 }
|
78
|
+
assert_equal(["foo", 424242, {}], a[0, 3])
|
79
|
+
assert_equal(43, a.last.call(1))
|
80
|
+
end
|
81
|
+
|
82
|
+
def f7(*r, str: "foo", num: 424242, **h)
|
83
|
+
[r, str, num, h]
|
84
|
+
end
|
85
|
+
|
86
|
+
def test_f7 # [ruby-core:41772]
|
87
|
+
assert_equal([[], "foo", 424242, {}], f7)
|
88
|
+
assert_equal([[], "bar", 424242, {}], f7(str: "bar"))
|
89
|
+
assert_equal([[], "foo", 111111, {}], f7(num: 111111))
|
90
|
+
assert_equal([[], "bar", 111111, {}], f7(str: "bar", num: 111111))
|
91
|
+
assert_equal([[1], "foo", 424242, {}], f7(1))
|
92
|
+
assert_equal([[1, 2], "foo", 424242, {}], f7(1, 2))
|
93
|
+
assert_equal([[1, 2, 3], "foo", 424242, {}], f7(1, 2, 3))
|
94
|
+
assert_equal([[1], "bar", 424242, {}], f7(1, str: "bar"))
|
95
|
+
assert_equal([[1, 2], "bar", 424242, {}], f7(1, 2, str: "bar"))
|
96
|
+
assert_equal([[1, 2, 3], "bar", 424242, {}], f7(1, 2, 3, str: "bar"))
|
97
|
+
end
|
98
|
+
|
99
|
+
define_method(:f8) { |opt = :ion, *rest, key: :word|
|
100
|
+
[opt, rest, key]
|
101
|
+
}
|
102
|
+
|
103
|
+
def test_f8
|
104
|
+
assert_equal([:ion, [], :word], f8)
|
105
|
+
assert_equal([1, [], :word], f8(1))
|
106
|
+
assert_equal([1, [2], :word], f8(1, 2))
|
107
|
+
end
|
108
|
+
|
109
|
+
# def f9(r, o=42, *args, p, k: :key, **kw, &b)
|
110
|
+
# [r, o, args, p, k, kw, b]
|
111
|
+
# end
|
112
|
+
#
|
113
|
+
# def test_f9
|
114
|
+
# assert_equal([1, 42, [], 2, :key, {}, nil], f9(1, 2))
|
115
|
+
# assert_equal([1, 2, [], 3, :key, {}, nil], f9(1, 2, 3))
|
116
|
+
# assert_equal([1, 2, [3], 4, :key, {}, nil], f9(1, 2, 3, 4))
|
117
|
+
# assert_equal([1, 2, [3, 4], 5, :key, {str: "bar"}, nil], f9(1, 2, 3, 4, 5, str: "bar"))
|
118
|
+
# end
|
119
|
+
|
120
|
+
def f10(a: 1, **)
|
121
|
+
a
|
122
|
+
end
|
123
|
+
|
124
|
+
def test_f10
|
125
|
+
assert_equal(42, f10(a: 42))
|
126
|
+
assert_equal(1, f10(b: 42))
|
127
|
+
end
|
128
|
+
|
129
|
+
def test_method_parameters
|
130
|
+
skip %{NoMethodError: undefined method `parameters' for #<Method: TestKeywordArguments#f1>}
|
131
|
+
|
132
|
+
assert_equal([[:key, :str], [:key, :num]], method(:f1).parameters);
|
133
|
+
assert_equal([[:req, :x], [:key, :str], [:key, :num]], method(:f2).parameters);
|
134
|
+
assert_equal([[:key, :str], [:key, :num], [:keyrest, :h]], method(:f3).parameters);
|
135
|
+
assert_equal([[:key, :str], [:key, :num]], method(:f4).parameters);
|
136
|
+
assert_equal([[:key, :str], [:key, :num], [:keyrest, :h]], method(:f5).parameters);
|
137
|
+
assert_equal([[:key, :str], [:key, :num], [:keyrest, :h], [:block, :blk]], method(:f6).parameters);
|
138
|
+
assert_equal([[:rest, :r], [:key, :str], [:key, :num], [:keyrest, :h]], method(:f7).parameters);
|
139
|
+
assert_equal([[:opt, :opt], [:rest, :rest], [:key, :key]], method(:f8).parameters) # [Bug #7540] [ruby-core:50735]
|
140
|
+
assert_equal([[:req, :r], [:opt, :o], [:rest, :args], [:req, :p], [:key, :k],
|
141
|
+
[:keyrest, :kw], [:block, :b]], method(:f9).parameters)
|
142
|
+
end
|
143
|
+
|
144
|
+
def test_lambda
|
145
|
+
f = ->(str: "foo", num: 424242) { [str, num] }
|
146
|
+
assert_equal(["foo", 424242], f[])
|
147
|
+
assert_equal(["bar", 424242], f[str: "bar"])
|
148
|
+
assert_equal(["foo", 111111], f[num: 111111])
|
149
|
+
assert_equal(["bar", 111111], f[str: "bar", num: 111111])
|
150
|
+
end
|
151
|
+
|
152
|
+
|
153
|
+
# def p1
|
154
|
+
# Proc.new do |str: "foo", num: 424242|
|
155
|
+
# [str, num]
|
156
|
+
# end
|
157
|
+
# end
|
158
|
+
#
|
159
|
+
# def test_p1
|
160
|
+
# assert_equal(["foo", 424242], p1[])
|
161
|
+
# assert_equal(["bar", 424242], p1[str: "bar"])
|
162
|
+
# assert_equal(["foo", 111111], p1[num: 111111])
|
163
|
+
# assert_equal(["bar", 111111], p1[str: "bar", num: 111111])
|
164
|
+
# assert_raise(ArgumentError) { p1[str: "bar", check: true] }
|
165
|
+
# assert_equal(["foo", 424242], p1["string"] )
|
166
|
+
# end
|
167
|
+
|
168
|
+
|
169
|
+
def p2
|
170
|
+
Proc.new do |x, str: "foo", num: 424242|
|
171
|
+
[x, str, num]
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
175
|
+
def test_p2
|
176
|
+
assert_equal([nil, "foo", 424242], p2[])
|
177
|
+
assert_equal([:xyz, "foo", 424242], p2[:xyz])
|
178
|
+
end
|
179
|
+
|
180
|
+
|
181
|
+
# def p3
|
182
|
+
# Proc.new do |str: "foo", num: 424242, **h|
|
183
|
+
# [str, num, h]
|
184
|
+
# end
|
185
|
+
# end
|
186
|
+
#
|
187
|
+
# def test_p3
|
188
|
+
# assert_equal(["foo", 424242, {}], p3[])
|
189
|
+
# assert_equal(["bar", 424242, {}], p3[str: "bar"])
|
190
|
+
# assert_equal(["foo", 111111, {}], p3[num: 111111])
|
191
|
+
# assert_equal(["bar", 111111, {}], p3[str: "bar", num: 111111])
|
192
|
+
# assert_equal(["bar", 424242, {:check=>true}], p3[str: "bar", check: true])
|
193
|
+
# assert_equal(["foo", 424242, {}], p3["string"])
|
194
|
+
# end
|
195
|
+
|
196
|
+
|
197
|
+
def p4
|
198
|
+
Proc.new do |str: "foo", num: 424242, **h, &blk|
|
199
|
+
[str, num, h, blk]
|
200
|
+
end
|
201
|
+
end
|
202
|
+
|
203
|
+
def test_p4
|
204
|
+
assert_equal(["foo", 424242, {}, nil], p4[])
|
205
|
+
assert_equal(["bar", 424242, {}, nil], p4[str: "bar"])
|
206
|
+
assert_equal(["foo", 111111, {}, nil], p4[num: 111111])
|
207
|
+
assert_equal(["bar", 111111, {}, nil], p4[str: "bar", num: 111111])
|
208
|
+
assert_equal(["bar", 424242, {:check=>true}, nil], p4[str: "bar", check: true])
|
209
|
+
a = p4.call {|x| x + 42 }
|
210
|
+
assert_equal(["foo", 424242, {}], a[0, 3])
|
211
|
+
assert_equal(43, a.last.call(1))
|
212
|
+
end
|
213
|
+
|
214
|
+
|
215
|
+
def p5
|
216
|
+
Proc.new do |*r, str: "foo", num: 424242, **h|
|
217
|
+
[r, str, num, h]
|
218
|
+
end
|
219
|
+
end
|
220
|
+
|
221
|
+
def test_p5
|
222
|
+
assert_equal([[], "foo", 424242, {}], p5[])
|
223
|
+
assert_equal([[], "bar", 424242, {}], p5[str: "bar"])
|
224
|
+
assert_equal([[], "foo", 111111, {}], p5[num: 111111])
|
225
|
+
assert_equal([[], "bar", 111111, {}], p5[str: "bar", num: 111111])
|
226
|
+
assert_equal([[1], "foo", 424242, {}], p5[1])
|
227
|
+
assert_equal([[1, 2], "foo", 424242, {}], p5[1, 2])
|
228
|
+
assert_equal([[1, 2, 3], "foo", 424242, {}], p5[1, 2, 3])
|
229
|
+
assert_equal([[1], "bar", 424242, {}], p5[1, str: "bar"])
|
230
|
+
assert_equal([[1, 2], "bar", 424242, {}], p5[1, 2, str: "bar"])
|
231
|
+
assert_equal([[1, 2, 3], "bar", 424242, {}], p5[1, 2, 3, str: "bar"])
|
232
|
+
end
|
233
|
+
|
234
|
+
|
235
|
+
# def p6
|
236
|
+
# Proc.new do |o1, o2=42, *args, p, k: :key, **kw, &b|
|
237
|
+
# [o1, o2, args, p, k, kw, b]
|
238
|
+
# end
|
239
|
+
# end
|
240
|
+
#
|
241
|
+
# def test_p6
|
242
|
+
# assert_equal([nil, 42, [], nil, :key, {}, nil], p6[])
|
243
|
+
# assert_equal([1, 42, [], 2, :key, {}, nil], p6[1, 2])
|
244
|
+
# assert_equal([1, 2, [], 3, :key, {}, nil], p6[1, 2, 3])
|
245
|
+
# assert_equal([1, 2, [3], 4, :key, {}, nil], p6[1, 2, 3, 4])
|
246
|
+
# assert_equal([1, 2, [3, 4], 5, :key, {str: "bar"}, nil], p6[1, 2, 3, 4, 5, str: "bar"])
|
247
|
+
# end
|
248
|
+
#
|
249
|
+
# def test_proc_parameters
|
250
|
+
# assert_equal([[:key, :str], [:key, :num]], p1.parameters);
|
251
|
+
# assert_equal([[:opt, :x], [:key, :str], [:key, :num]], p2.parameters);
|
252
|
+
# assert_equal([[:key, :str], [:key, :num], [:keyrest, :h]], p3.parameters);
|
253
|
+
# assert_equal([[:key, :str], [:key, :num], [:keyrest, :h], [:block, :blk]], p4.parameters);
|
254
|
+
# assert_equal([[:rest, :r], [:key, :str], [:key, :num], [:keyrest, :h]], p5.parameters);
|
255
|
+
# assert_equal([[:opt, :o1], [:opt, :o2], [:rest, :args], [:opt, :p], [:key, :k],
|
256
|
+
# [:keyrest, :kw], [:block, :b]], p6.parameters)
|
257
|
+
# end
|
258
|
+
|
259
|
+
def m1(*args)
|
260
|
+
yield(*args)
|
261
|
+
end
|
262
|
+
|
263
|
+
def test_block
|
264
|
+
blk = Proc.new {|str: "foo", num: 424242| [str, num] }
|
265
|
+
assert_equal(["foo", 424242], m1(&blk))
|
266
|
+
assert_equal(["bar", 424242], m1(str: "bar", &blk))
|
267
|
+
assert_equal(["foo", 111111], m1(num: 111111, &blk))
|
268
|
+
assert_equal(["bar", 111111], m1(str: "bar", num: 111111, &blk))
|
269
|
+
end
|
270
|
+
|
271
|
+
# def rest_keyrest(*args, **opt)
|
272
|
+
# return *args, opt
|
273
|
+
# end
|
274
|
+
#
|
275
|
+
# def test_rest_keyrest
|
276
|
+
# bug7665 = '[ruby-core:51278]'
|
277
|
+
# bug8463 = '[ruby-core:55203] [Bug #8463]'
|
278
|
+
# expect = [*%w[foo bar], {zzz: 42}]
|
279
|
+
# assert_equal(expect, rest_keyrest(*expect), bug7665)
|
280
|
+
# pr = proc {|*args, **opt| next *args, opt}
|
281
|
+
# assert_equal(expect, pr.call(*expect), bug7665)
|
282
|
+
# assert_equal(expect, pr.call(expect), bug8463)
|
283
|
+
# pr = proc {|a, *b, **opt| next a, *b, opt}
|
284
|
+
# assert_equal(expect, pr.call(expect), bug8463)
|
285
|
+
# pr = proc {|a, **opt| next a, opt}
|
286
|
+
# assert_equal(expect.values_at(0, -1), pr.call(expect), bug8463)
|
287
|
+
# end
|
288
|
+
|
289
|
+
def test_bare_kwrest
|
290
|
+
skip "NoMethodError: undefined method `assert_valid_syntax' for TestKeywordArguments#test_bare_kwrest"
|
291
|
+
# valid syntax, but its semantics is undefined
|
292
|
+
assert_valid_syntax("def bug7662(**) end")
|
293
|
+
assert_valid_syntax("def bug7662(*, **) end")
|
294
|
+
assert_valid_syntax("def bug7662(a, **) end")
|
295
|
+
end
|
296
|
+
|
297
|
+
def test_without_paren
|
298
|
+
skip %{NoMethodError: undefined method `assert_valid_syntax' for TestKeywordArguments#test_without_paren}
|
299
|
+
|
300
|
+
bug7942 = '[ruby-core:52820] [Bug #7942]'
|
301
|
+
assert_valid_syntax("def bug7942 a: 1; end")
|
302
|
+
assert_valid_syntax("def bug7942 a: 1, **; end")
|
303
|
+
|
304
|
+
o = Object.new
|
305
|
+
eval("def o.bug7942 a: 1; a; end", nil, __FILE__, __LINE__)
|
306
|
+
assert_equal(1, o.bug7942(), bug7942)
|
307
|
+
assert_equal(42, o.bug7942(a: 42), bug7942)
|
308
|
+
|
309
|
+
o = Object.new
|
310
|
+
eval("def o.bug7942 a: 1, **; a; end", nil, __FILE__, __LINE__)
|
311
|
+
assert_equal(1, o.bug7942(), bug7942)
|
312
|
+
assert_equal(42, o.bug7942(a: 42), bug7942)
|
313
|
+
end
|
314
|
+
|
315
|
+
def test_required_keyword
|
316
|
+
skip %{ArgumentError: [TestKeywordArguments#eval] wrong number of arguments(3 for 1)}
|
317
|
+
|
318
|
+
feature7701 = '[ruby-core:51454] [Feature #7701] required keyword argument'
|
319
|
+
o = Object.new
|
320
|
+
assert_nothing_raised(SyntaxError, feature7701) do
|
321
|
+
eval("def o.foo(a:) a; end", nil, "xyzzy")
|
322
|
+
eval("def o.bar(a:,**b) [a, b]; end")
|
323
|
+
end
|
324
|
+
assert_raise_with_message(ArgumentError, /missing keyword/, feature7701) {o.foo}
|
325
|
+
assert_raise_with_message(ArgumentError, /unknown keyword/, feature7701) {o.foo(a:0, b:1)}
|
326
|
+
begin
|
327
|
+
o.foo(a: 0, b: 1)
|
328
|
+
rescue => e
|
329
|
+
assert_equal('xyzzy', e.backtrace_locations[0].path)
|
330
|
+
end
|
331
|
+
assert_equal(42, o.foo(a: 42), feature7701)
|
332
|
+
assert_equal([[:keyreq, :a]], o.method(:foo).parameters, feature7701)
|
333
|
+
|
334
|
+
bug8139 = '[ruby-core:53608] [Bug #8139] required keyword argument with rest hash'
|
335
|
+
assert_equal([42, {}], o.bar(a: 42), feature7701)
|
336
|
+
assert_equal([42, {c: feature7701}], o.bar(a: 42, c: feature7701), feature7701)
|
337
|
+
assert_equal([[:keyreq, :a], [:keyrest, :b]], o.method(:bar).parameters, feature7701)
|
338
|
+
assert_raise_with_message(ArgumentError, /missing keyword/, bug8139) {o.bar(c: bug8139)}
|
339
|
+
assert_raise_with_message(ArgumentError, /missing keyword/, bug8139) {o.bar}
|
340
|
+
end
|
341
|
+
|
342
|
+
# def test_required_keyword_with_newline
|
343
|
+
# bug9669 = '[ruby-core:61658] [Bug #9669]'
|
344
|
+
# assert_nothing_raised(SyntaxError, bug9669) do
|
345
|
+
# eval(<<-'end;', nil, __FILE__, __LINE__)
|
346
|
+
# def bug9669.foo a:
|
347
|
+
# return a
|
348
|
+
# end
|
349
|
+
# end;
|
350
|
+
# end
|
351
|
+
# assert_equal(42, bug9669.foo(a: 42))
|
352
|
+
# o = nil
|
353
|
+
# assert_nothing_raised(SyntaxError, bug9669) do
|
354
|
+
# eval(<<-'end;', nil, __FILE__, __LINE__)
|
355
|
+
# o = {
|
356
|
+
# a:
|
357
|
+
# 1
|
358
|
+
# }
|
359
|
+
# end;
|
360
|
+
# end
|
361
|
+
# assert_equal({a: 1}, o, bug9669)
|
362
|
+
# end
|
363
|
+
#
|
364
|
+
# def test_required_keyword_with_reserved
|
365
|
+
# bug10279 = '[ruby-core:65211] [Bug #10279]'
|
366
|
+
# h = nil
|
367
|
+
# assert_nothing_raised(SyntaxError, bug10279) do
|
368
|
+
# break eval(<<-'end;', nil, __FILE__, __LINE__)
|
369
|
+
# h = {a: if true then 42 end}
|
370
|
+
# end;
|
371
|
+
# end
|
372
|
+
# assert_equal({a: 42}, h, bug10279)
|
373
|
+
# end
|
374
|
+
|
375
|
+
def test_block_required_keyword
|
376
|
+
skip "ArgumentError: [TestKeywordArguments#eval] wrong number of arguments(4 for 1)"
|
377
|
+
|
378
|
+
feature7701 = '[ruby-core:51454] [Feature #7701] required keyword argument'
|
379
|
+
b = assert_nothing_raised(SyntaxError, feature7701) do
|
380
|
+
break eval("proc {|a:| a}", nil, 'xyzzy', __LINE__)
|
381
|
+
end
|
382
|
+
assert_raise_with_message(ArgumentError, /missing keyword/, feature7701) {b.call}
|
383
|
+
assert_raise_with_message(ArgumentError, /unknown keyword/, feature7701) {b.call(a:0, b:1)}
|
384
|
+
begin
|
385
|
+
b.call(a: 0, b: 1)
|
386
|
+
rescue => e
|
387
|
+
assert_equal('xyzzy', e.backtrace_locations[0].path)
|
388
|
+
end
|
389
|
+
|
390
|
+
assert_equal(42, b.call(a: 42), feature7701)
|
391
|
+
assert_equal([[:keyreq, :a]], b.parameters, feature7701)
|
392
|
+
|
393
|
+
bug8139 = '[ruby-core:53608] [Bug #8139] required keyword argument with rest hash'
|
394
|
+
b = assert_nothing_raised(SyntaxError, feature7701) do
|
395
|
+
break eval("proc {|a:, **bl| [a, bl]}", nil, __FILE__, __LINE__)
|
396
|
+
end
|
397
|
+
assert_equal([42, {}], b.call(a: 42), feature7701)
|
398
|
+
assert_equal([42, {c: feature7701}], b.call(a: 42, c: feature7701), feature7701)
|
399
|
+
assert_equal([[:keyreq, :a], [:keyrest, :bl]], b.parameters, feature7701)
|
400
|
+
assert_raise_with_message(ArgumentError, /missing keyword/, bug8139) {b.call(c: bug8139)}
|
401
|
+
assert_raise_with_message(ArgumentError, /missing keyword/, bug8139) {b.call}
|
402
|
+
end
|
403
|
+
|
404
|
+
def test_super_with_keyword
|
405
|
+
skip %{NoMethodError: undefined method `encode' for "[42, {\"bar\"=>\"x\"}]":String}
|
406
|
+
bug8236 = '[ruby-core:54094] [Bug #8236]'
|
407
|
+
base = Class.new do
|
408
|
+
def foo(*args)
|
409
|
+
args
|
410
|
+
end
|
411
|
+
end
|
412
|
+
a = Class.new(base) do
|
413
|
+
def foo(arg, bar: 'x')
|
414
|
+
super
|
415
|
+
end
|
416
|
+
end
|
417
|
+
b = Class.new(base) do
|
418
|
+
def foo(*args, bar: 'x')
|
419
|
+
super
|
420
|
+
end
|
421
|
+
end
|
422
|
+
assert_equal([42, {:bar=>"x"}], a.new.foo(42), bug8236)
|
423
|
+
assert_equal([42, {:bar=>"x"}], b.new.foo(42), bug8236)
|
424
|
+
end
|
425
|
+
|
426
|
+
def test_zsuper_only_named_kwrest
|
427
|
+
bug8416 = '[ruby-core:55033] [Bug #8416]'
|
428
|
+
base = Class.new do
|
429
|
+
def foo(**h)
|
430
|
+
h
|
431
|
+
end
|
432
|
+
end
|
433
|
+
a = Class.new(base) do
|
434
|
+
def foo(**h)
|
435
|
+
super
|
436
|
+
end
|
437
|
+
end
|
438
|
+
assert_equal({:bar=>"x"}, a.new.foo(bar: "x"), bug8416)
|
439
|
+
end
|
440
|
+
|
441
|
+
def test_zsuper_only_anonymous_kwrest
|
442
|
+
bug8416 = '[ruby-core:55033] [Bug #8416]'
|
443
|
+
base = Class.new do
|
444
|
+
def foo(**h)
|
445
|
+
h
|
446
|
+
end
|
447
|
+
end
|
448
|
+
a = Class.new(base) do
|
449
|
+
def foo(**)
|
450
|
+
super
|
451
|
+
end
|
452
|
+
end
|
453
|
+
assert_equal({:bar=>"x"}, a.new.foo(bar: "x"), bug8416)
|
454
|
+
end
|
455
|
+
|
456
|
+
def test_precedence_of_keyword_arguments
|
457
|
+
bug8040 = '[ruby-core:53199] [Bug #8040]'
|
458
|
+
a = Class.new do
|
459
|
+
def foo(x, **h)
|
460
|
+
[x, h]
|
461
|
+
end
|
462
|
+
end
|
463
|
+
assert_equal([{}, {}], a.new.foo({}))
|
464
|
+
assert_equal([{}, {:bar=>"x"}], a.new.foo({}, bar: "x"), bug8040)
|
465
|
+
end
|
466
|
+
|
467
|
+
# def test_precedence_of_keyword_arguments_with_post_argument
|
468
|
+
# bug8993 = '[ruby-core:57706] [Bug #8993]'
|
469
|
+
# a = Class.new do
|
470
|
+
# def foo(a, b, c=1, *d, e, f:2, **g)
|
471
|
+
# [a, b, c, d, e, f, g]
|
472
|
+
# end
|
473
|
+
# end
|
474
|
+
# assert_equal([1, 2, 1, [], {:f=>5}, 2, {}], a.new.foo(1, 2, f:5), bug8993)
|
475
|
+
# end
|
476
|
+
#
|
477
|
+
# def test_splat_keyword_nondestructive
|
478
|
+
# bug9776 = '[ruby-core:62161] [Bug #9776]'
|
479
|
+
#
|
480
|
+
# h = {a: 1}
|
481
|
+
# assert_equal({a:1, b:2}, {**h, b:2})
|
482
|
+
# assert_equal({a:1}, h, bug9776)
|
483
|
+
#
|
484
|
+
# pr = proc {|**opt| next opt}
|
485
|
+
# assert_equal({a: 1}, pr.call(**h))
|
486
|
+
# assert_equal({a: 1, b: 2}, pr.call(**h, b: 2))
|
487
|
+
# assert_equal({a: 1}, h, bug9776)
|
488
|
+
# end
|
489
|
+
#
|
490
|
+
# def test_splat_hash_conversion
|
491
|
+
# bug9898 = '[ruby-core:62921] [Bug #9898]'
|
492
|
+
#
|
493
|
+
# o = Object.new
|
494
|
+
# def o.to_hash() { a: 1 } end
|
495
|
+
# assert_equal({a: 1}, m1(**o) {|x| break x}, bug9898)
|
496
|
+
# o2 = Object.new
|
497
|
+
# def o2.to_hash() { b: 2 } end
|
498
|
+
# assert_equal({a: 1, b: 2}, m1(**o, **o2) {|x| break x}, bug9898)
|
499
|
+
# end
|
500
|
+
#
|
501
|
+
# def test_implicit_hash_conversion
|
502
|
+
# bug10016 = '[ruby-core:63593] [Bug #10016]'
|
503
|
+
#
|
504
|
+
# o = Object.new
|
505
|
+
# def o.to_hash() { k: 9 } end
|
506
|
+
# assert_equal([1, 42, [], o, :key, {}, nil], f9(1, o))
|
507
|
+
# assert_equal([1, 9], m1(1, o) {|a, k: 0| break [a, k]}, bug10016)
|
508
|
+
# assert_equal([1, 9], m1(1, o, &->(a, k: 0) {break [a, k]}), bug10016)
|
509
|
+
# end
|
510
|
+
#
|
511
|
+
# def test_gced_object_in_stack
|
512
|
+
# bug8964 = '[ruby-dev:47729] [Bug #8964]'
|
513
|
+
# assert_normal_exit %q{
|
514
|
+
# def m(a: [])
|
515
|
+
# end
|
516
|
+
# GC.stress = true
|
517
|
+
# tap { m }
|
518
|
+
# GC.start
|
519
|
+
# tap { m }
|
520
|
+
# }, bug8964
|
521
|
+
# assert_normal_exit %q{
|
522
|
+
# prc = Proc.new {|a: []|}
|
523
|
+
# GC.stress = true
|
524
|
+
# tap { prc.call }
|
525
|
+
# GC.start
|
526
|
+
# tap { prc.call }
|
527
|
+
# }, bug8964
|
528
|
+
# end
|
529
|
+
#
|
530
|
+
# def test_dynamic_symbol_keyword
|
531
|
+
# bug10266 = '[ruby-dev:48564] [Bug #10266]'
|
532
|
+
# assert_separately(['-', bug10266], <<-'end;') # do
|
533
|
+
# bug = ARGV.shift
|
534
|
+
# "hoge".to_sym
|
535
|
+
# assert_nothing_raised(bug) {eval("def a(hoge:); end")}
|
536
|
+
# end;
|
537
|
+
# end
|
538
|
+
#
|
539
|
+
# def test_unknown_keyword_with_block
|
540
|
+
# bug10413 = '[ruby-core:65837] [Bug #10413]'
|
541
|
+
# class << (o = Object.new)
|
542
|
+
# def bar(k2: 'v2')
|
543
|
+
# end
|
544
|
+
#
|
545
|
+
# def foo
|
546
|
+
# bar(k1: 1)
|
547
|
+
# end
|
548
|
+
# end
|
549
|
+
# assert_raise_with_message(ArgumentError, /unknown keyword: k1/, bug10413) {
|
550
|
+
# o.foo {raise "unreachable"}
|
551
|
+
# }
|
552
|
+
# end
|
553
|
+
#
|
554
|
+
# def test_super_with_anon_restkeywords
|
555
|
+
# bug10659 = '[ruby-core:67157] [Bug #10659]'
|
556
|
+
#
|
557
|
+
# foo = Class.new do
|
558
|
+
# def foo(**h)
|
559
|
+
# h
|
560
|
+
# end
|
561
|
+
# end
|
562
|
+
#
|
563
|
+
# class << (obj = foo.new)
|
564
|
+
# def foo(bar: "bar", **)
|
565
|
+
# super
|
566
|
+
# end
|
567
|
+
# end
|
568
|
+
#
|
569
|
+
# assert_nothing_raised(TypeError, bug10659) {
|
570
|
+
# assert_equal({:bar => "bar"}, obj.foo, bug10659)
|
571
|
+
# }
|
572
|
+
# end
|
573
|
+
|
574
|
+
def m(a) yield a end
|
575
|
+
|
576
|
+
# def test_nonsymbol_key
|
577
|
+
# result = m(["a" => 10]) { |a = nil, **b| [a, b] }
|
578
|
+
# assert_equal([{"a" => 10}, {}], result)
|
579
|
+
# end
|
580
|
+
|
581
|
+
def method_for_test_to_hash_call_during_setup_complex_parameters k1:, k2:, **rest_kw
|
582
|
+
[k1, k2, rest_kw]
|
583
|
+
end
|
584
|
+
|
585
|
+
def test_to_hash_call_during_setup_complex_parameters
|
586
|
+
sym = "sym_#{Time.now}".to_sym
|
587
|
+
h = method_for_test_to_hash_call_during_setup_complex_parameters k1: "foo", k2: "bar", sym => "baz"
|
588
|
+
assert_equal ["foo", "bar", {sym => "baz"}], h, '[Bug #11027]'
|
589
|
+
end
|
590
|
+
end
|