opal 0.11.0.rc1 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.jshintrc +1 -1
- data/.travis.yml +14 -2
- data/CHANGELOG.md +30 -5
- data/HACKING.md +2 -2
- data/README.md +4 -5
- data/appveyor.yml +3 -4
- data/bin +1 -0
- data/docs/headless_chrome.md +105 -0
- data/docs/rspec.md +2 -19
- data/{bin → exe}/opal +0 -0
- data/{bin → exe}/opal-build +0 -0
- data/{bin → exe}/opal-mspec +0 -0
- data/{bin → exe}/opal-repl +0 -0
- data/lib/opal.rb +1 -0
- data/lib/opal/ast/builder.rb +0 -4
- data/lib/opal/builder.rb +69 -15
- data/lib/opal/builder_processors.rb +8 -7
- data/lib/opal/cli.rb +1 -1
- data/lib/opal/cli_options.rb +1 -1
- data/lib/opal/cli_runners.rb +1 -1
- data/lib/opal/cli_runners/applescript.rb +0 -1
- data/lib/opal/cli_runners/chrome.js +135 -0
- data/lib/opal/cli_runners/chrome.rb +100 -0
- data/lib/opal/cli_runners/nashorn.rb +0 -1
- data/lib/opal/cli_runners/node_modules/.bin/chrome-remote-interface +1 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/LICENSE +18 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/README.md +843 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/bin/client.js +326 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/chrome-remote-interface.js +11 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/index.js +39 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/api.js +84 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/chrome.js +289 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/defaults.js +4 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/devtools.js +245 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/external-request.js +23 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/protocol.json +13303 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/websocket-wrapper.js +32 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/package.json +128 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/webpack.config.js +55 -0
- data/lib/opal/cli_runners/node_modules/commander/Readme.md +195 -0
- data/lib/opal/cli_runners/node_modules/commander/index.js +851 -0
- data/lib/opal/cli_runners/node_modules/commander/package.json +92 -0
- data/lib/opal/cli_runners/node_modules/ultron/LICENSE +22 -0
- data/lib/opal/cli_runners/node_modules/ultron/index.js +138 -0
- data/lib/opal/cli_runners/node_modules/ultron/package.json +112 -0
- data/lib/opal/cli_runners/node_modules/ws/LICENSE +21 -0
- data/lib/opal/cli_runners/node_modules/ws/README.md +259 -0
- data/lib/opal/cli_runners/node_modules/ws/SECURITY.md +33 -0
- data/lib/opal/cli_runners/node_modules/ws/index.js +15 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/BufferUtil.fallback.js +56 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/BufferUtil.js +15 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/ErrorCodes.js +28 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/EventTarget.js +158 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Extensions.js +69 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/PerMessageDeflate.js +339 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Receiver.js +520 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Sender.js +438 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Validation.fallback.js +9 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Validation.js +17 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/WebSocket.js +705 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/WebSocketServer.js +336 -0
- data/lib/opal/cli_runners/node_modules/ws/package.json +122 -0
- data/lib/opal/cli_runners/nodejs.rb +0 -1
- data/lib/opal/cli_runners/package.json +5 -0
- data/lib/opal/cli_runners/server.rb +0 -1
- data/lib/opal/compiler.rb +8 -18
- data/lib/opal/deprecations.rb +1 -1
- data/lib/opal/eof_content.rb +36 -0
- data/lib/opal/nodes.rb +0 -1
- data/lib/opal/nodes/args/kwarg.rb +8 -6
- data/lib/opal/nodes/args/kwoptarg.rb +12 -6
- data/lib/opal/nodes/call.rb +3 -2
- data/lib/opal/nodes/call_special.rb +10 -1
- data/lib/opal/nodes/definitions.rb +5 -3
- data/lib/opal/nodes/helpers.rb +4 -8
- data/lib/opal/nodes/literal.rb +13 -1
- data/lib/opal/nodes/logic.rb +19 -32
- data/lib/opal/nodes/node_with_args.rb +1 -1
- data/lib/opal/nodes/scope.rb +1 -0
- data/lib/opal/nodes/super.rb +0 -4
- data/lib/opal/nodes/variables.rb +11 -0
- data/lib/opal/parser.rb +24 -19
- data/lib/opal/path_reader.rb +17 -4
- data/lib/opal/rewriter.rb +5 -1
- data/lib/opal/rewriters/base.rb +37 -34
- data/lib/opal/rewriters/binary_operator_assignment.rb +0 -3
- data/lib/opal/rewriters/for_rewriter.rb +93 -0
- data/lib/opal/rewriters/hashes/key_duplicates_rewriter.rb +58 -0
- data/lib/opal/rewriters/js_reserved_words.rb +5 -8
- data/lib/opal/rewriters/logical_operator_assignment.rb +0 -1
- data/lib/opal/simple_server.rb +1 -0
- data/lib/opal/util.rb +1 -1
- data/lib/opal/version.rb +1 -1
- data/opal.gemspec +32 -30
- data/opal/corelib/array.rb +53 -30
- data/opal/corelib/boolean.rb +11 -3
- data/opal/corelib/comparable.rb +16 -0
- data/opal/corelib/constants.rb +3 -3
- data/opal/corelib/enumerable.rb +48 -1
- data/opal/corelib/file.rb +54 -11
- data/opal/corelib/hash.rb +98 -0
- data/opal/corelib/io.rb +2 -2
- data/opal/corelib/kernel.rb +28 -11
- data/opal/corelib/marshal/read_buffer.rb +288 -150
- data/opal/corelib/marshal/write_buffer.rb +27 -2
- data/opal/corelib/nil.rb +11 -3
- data/opal/corelib/number.rb +90 -20
- data/opal/corelib/numeric.rb +3 -3
- data/opal/corelib/random.rb +1 -1
- data/opal/corelib/range.rb +22 -22
- data/opal/corelib/regexp.rb +45 -4
- data/opal/corelib/runtime.js +25 -9
- data/opal/corelib/string.rb +1 -1
- data/opal/corelib/string/encoding.rb +21 -29
- data/opal/corelib/string/inheritance.rb +1 -1
- data/opal/corelib/struct.rb +0 -5
- data/opal/corelib/time.rb +1 -1
- data/stdlib/buffer/array.rb +4 -2
- data/stdlib/date.rb +46 -12
- data/stdlib/headless_chrome.rb +11 -0
- data/stdlib/nodejs/file.rb +36 -11
- data/stdlib/nodejs/io.rb +8 -0
- data/stdlib/nodejs/stacktrace.rb +116 -100
- data/stdlib/opal-builder.rb +1 -0
- data/stdlib/opal-platform.rb +6 -6
- data/stdlib/opal/platform.rb +2 -2
- data/stdlib/rbconfig.rb +1 -1
- data/stdlib/securerandom.rb +1 -1
- data/tasks/testing.rake +58 -26
- data/tasks/testing/opal_rspec_smoketest.Gemfile +5 -12
- metadata +64 -733
- data/lib/opal/cli_runners/phantom.js +0 -69
- data/lib/opal/cli_runners/phantomjs.rb +0 -29
- data/lib/opal/hike_path_finder.rb +0 -19
- data/lib/opal/nodes/for.rb +0 -75
- data/spec/README.md +0 -10
- data/spec/filters/bugs/array.rb +0 -16
- data/spec/filters/bugs/basicobject.rb +0 -13
- data/spec/filters/bugs/bigdecimal.rb +0 -146
- data/spec/filters/bugs/class.rb +0 -11
- data/spec/filters/bugs/comparable.rb +0 -5
- data/spec/filters/bugs/complex.rb +0 -3
- data/spec/filters/bugs/date.rb +0 -94
- data/spec/filters/bugs/enumerable.rb +0 -43
- data/spec/filters/bugs/enumerator.rb +0 -40
- data/spec/filters/bugs/exception.rb +0 -72
- data/spec/filters/bugs/file.rb +0 -8
- data/spec/filters/bugs/float.rb +0 -39
- data/spec/filters/bugs/hash.rb +0 -15
- data/spec/filters/bugs/inheritance.rb +0 -5
- data/spec/filters/bugs/integer.rb +0 -30
- data/spec/filters/bugs/io.rb +0 -8
- data/spec/filters/bugs/kernel.rb +0 -168
- data/spec/filters/bugs/language.rb +0 -190
- data/spec/filters/bugs/marshal.rb +0 -41
- data/spec/filters/bugs/method.rb +0 -60
- data/spec/filters/bugs/module.rb +0 -158
- data/spec/filters/bugs/numeric.rb +0 -8
- data/spec/filters/bugs/pathname.rb +0 -7
- data/spec/filters/bugs/proc.rb +0 -37
- data/spec/filters/bugs/random.rb +0 -7
- data/spec/filters/bugs/range.rb +0 -36
- data/spec/filters/bugs/rational.rb +0 -4
- data/spec/filters/bugs/regexp.rb +0 -158
- data/spec/filters/bugs/set.rb +0 -41
- data/spec/filters/bugs/singleton.rb +0 -6
- data/spec/filters/bugs/string.rb +0 -98
- data/spec/filters/bugs/stringscanner.rb +0 -71
- data/spec/filters/bugs/struct.rb +0 -4
- data/spec/filters/bugs/time.rb +0 -35
- data/spec/filters/bugs/unboundmethod.rb +0 -17
- data/spec/filters/unsupported/array.rb +0 -167
- data/spec/filters/unsupported/basicobject.rb +0 -14
- data/spec/filters/unsupported/bignum.rb +0 -55
- data/spec/filters/unsupported/class.rb +0 -4
- data/spec/filters/unsupported/delegator.rb +0 -5
- data/spec/filters/unsupported/enumerable.rb +0 -11
- data/spec/filters/unsupported/enumerator.rb +0 -13
- data/spec/filters/unsupported/file.rb +0 -4
- data/spec/filters/unsupported/fixnum.rb +0 -14
- data/spec/filters/unsupported/float.rb +0 -46
- data/spec/filters/unsupported/freeze.rb +0 -75
- data/spec/filters/unsupported/hash.rb +0 -43
- data/spec/filters/unsupported/integer.rb +0 -3
- data/spec/filters/unsupported/kernel.rb +0 -32
- data/spec/filters/unsupported/language.rb +0 -22
- data/spec/filters/unsupported/marshal.rb +0 -46
- data/spec/filters/unsupported/matchdata.rb +0 -33
- data/spec/filters/unsupported/math.rb +0 -3
- data/spec/filters/unsupported/pathname.rb +0 -3
- data/spec/filters/unsupported/privacy.rb +0 -279
- data/spec/filters/unsupported/proc.rb +0 -3
- data/spec/filters/unsupported/random.rb +0 -4
- data/spec/filters/unsupported/range.rb +0 -7
- data/spec/filters/unsupported/regexp.rb +0 -69
- data/spec/filters/unsupported/set.rb +0 -4
- data/spec/filters/unsupported/singleton.rb +0 -6
- data/spec/filters/unsupported/string.rb +0 -546
- data/spec/filters/unsupported/struct.rb +0 -6
- data/spec/filters/unsupported/symbol.rb +0 -20
- data/spec/filters/unsupported/taint.rb +0 -30
- data/spec/filters/unsupported/thread.rb +0 -7
- data/spec/filters/unsupported/time.rb +0 -202
- data/spec/lib/builder_processors_spec.rb +0 -27
- data/spec/lib/builder_spec.rb +0 -89
- data/spec/lib/cli_runners/phantomjs_spec.rb +0 -39
- data/spec/lib/cli_spec.rb +0 -240
- data/spec/lib/compiler/call_spec.rb +0 -732
- data/spec/lib/compiler_spec.rb +0 -294
- data/spec/lib/config_spec.rb +0 -110
- data/spec/lib/dependency_resolver_spec.rb +0 -40
- data/spec/lib/deprecations_spec.rb +0 -16
- data/spec/lib/fixtures/complex_sprockets.js.rb.erb +0 -4
- data/spec/lib/fixtures/file_with_directives.js +0 -2
- data/spec/lib/fixtures/jst_file.js.jst +0 -1
- data/spec/lib/fixtures/no_requires.rb +0 -1
- data/spec/lib/fixtures/opal_file.rb +0 -2
- data/spec/lib/fixtures/require_tree_test.rb +0 -3
- data/spec/lib/fixtures/required_file.js +0 -1
- data/spec/lib/fixtures/required_tree_test/required_file1.rb +0 -1
- data/spec/lib/fixtures/required_tree_test/required_file2.rb +0 -1
- data/spec/lib/fixtures/requires.rb +0 -7
- data/spec/lib/fixtures/source_location_test.rb +0 -7
- data/spec/lib/fixtures/source_map.rb +0 -1
- data/spec/lib/fixtures/source_map/subfolder/other_file.rb +0 -1
- data/spec/lib/fixtures/sprockets_file.js.rb +0 -3
- data/spec/lib/fixtures/sprockets_require_tree_test.rb +0 -3
- data/spec/lib/hike_path_finder_spec.rb +0 -23
- data/spec/lib/path_reader_spec.rb +0 -36
- data/spec/lib/paths_spec.rb +0 -18
- data/spec/lib/rewriters/binary_operator_assignment_spec.rb +0 -151
- data/spec/lib/rewriters/block_to_iter_spec.rb +0 -28
- data/spec/lib/rewriters/dot_js_syntax_spec.rb +0 -108
- data/spec/lib/rewriters/explicit_writer_return_spec.rb +0 -186
- data/spec/lib/rewriters/js_reserved_words_spec.rb +0 -116
- data/spec/lib/rewriters/logical_operator_assignment_spec.rb +0 -202
- data/spec/lib/rewriters/opal_engine_check_spec.rb +0 -82
- data/spec/lib/rewriters/rubyspec/filters_rewriter_spec.rb +0 -53
- data/spec/lib/shared/path_finder_shared.rb +0 -19
- data/spec/lib/shared/path_reader_shared.rb +0 -31
- data/spec/lib/simple_server_spec.rb +0 -54
- data/spec/lib/spec_helper.rb +0 -100
- data/spec/mspec-opal/formatters.rb +0 -236
- data/spec/mspec-opal/runner.rb +0 -173
- data/spec/opal/compiler/irb_spec.rb +0 -44
- data/spec/opal/core/arity_spec.rb +0 -142
- data/spec/opal/core/array/intersection_spec.rb +0 -38
- data/spec/opal/core/array/minus_spec.rb +0 -38
- data/spec/opal/core/array/select_spec.rb +0 -14
- data/spec/opal/core/array/set_range_to_array_spec.rb +0 -7
- data/spec/opal/core/array/union_spec.rb +0 -38
- data/spec/opal/core/array/uniq_spec.rb +0 -49
- data/spec/opal/core/date_spec.rb +0 -191
- data/spec/opal/core/enumerable/all_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/any_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/collect_break_spec.rb +0 -13
- data/spec/opal/core/enumerable/count_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/detect_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/drop_while_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/each_slice_break.rb +0 -6
- data/spec/opal/core/enumerable/each_with_index_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/each_with_object_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/find_all_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/find_index_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/grep_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/max_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/max_by_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/min_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/min_by_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/none_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/one_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/reduce_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/take_while_break_spec.rb +0 -5
- data/spec/opal/core/enumerator/with_index_spec.rb +0 -6
- data/spec/opal/core/exception_spec.rb +0 -30
- data/spec/opal/core/fixtures/class.rb +0 -124
- data/spec/opal/core/fixtures/class_variables.rb +0 -0
- data/spec/opal/core/fixtures/constants.rb +0 -33
- data/spec/opal/core/fixtures/require_tree_files/file 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 2.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 3.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 4.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 5.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 2.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/other/other 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/file 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/file 2.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/file 3.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/index.rb +0 -3
- data/spec/opal/core/hash/has_value_spec.rb +0 -13
- data/spec/opal/core/hash/internals_spec.rb +0 -332
- data/spec/opal/core/helpers_spec.rb +0 -14
- data/spec/opal/core/kernel/Array_spec.rb +0 -10
- data/spec/opal/core/kernel/at_exit_spec.rb +0 -70
- data/spec/opal/core/kernel/block_given_spec.rb +0 -30
- data/spec/opal/core/kernel/class_spec.rb +0 -6
- data/spec/opal/core/kernel/define_singleton_method_spec.rb +0 -21
- data/spec/opal/core/kernel/equal_value_spec.rb +0 -12
- data/spec/opal/core/kernel/extend_spec.rb +0 -21
- data/spec/opal/core/kernel/format_spec.rb +0 -122
- data/spec/opal/core/kernel/freeze_spec.rb +0 -15
- data/spec/opal/core/kernel/instance_eval_spec.rb +0 -28
- data/spec/opal/core/kernel/instance_variable_defined_spec.rb +0 -15
- data/spec/opal/core/kernel/instance_variable_get_spec.rb +0 -14
- data/spec/opal/core/kernel/instance_variable_set_spec.rb +0 -10
- data/spec/opal/core/kernel/instance_variables_spec.rb +0 -110
- data/spec/opal/core/kernel/loop_spec.rb +0 -23
- data/spec/opal/core/kernel/match_spec.rb +0 -5
- data/spec/opal/core/kernel/method_spec.rb +0 -31
- data/spec/opal/core/kernel/methods_spec.rb +0 -25
- data/spec/opal/core/kernel/nil_spec.rb +0 -7
- data/spec/opal/core/kernel/p_spec.rb +0 -15
- data/spec/opal/core/kernel/printf_spec.rb +0 -11
- data/spec/opal/core/kernel/proc_spec.rb +0 -13
- data/spec/opal/core/kernel/raise_spec.rb +0 -13
- data/spec/opal/core/kernel/rand_spec.rb +0 -19
- data/spec/opal/core/kernel/require_tree_spec.rb +0 -18
- data/spec/opal/core/kernel/respond_to_spec.rb +0 -44
- data/spec/opal/core/kernel/send_spec.rb +0 -56
- data/spec/opal/core/kernel/sprintf_spec.rb +0 -5
- data/spec/opal/core/language/arguments/mlhs_arg_spec.rb +0 -19
- data/spec/opal/core/language/class_spec.rb +0 -55
- data/spec/opal/core/language/constant_lookup_spec.rb +0 -38
- data/spec/opal/core/language/equal_spec.rb +0 -8
- data/spec/opal/core/language/fixtures/array.rb +0 -11
- data/spec/opal/core/language/fixtures/block.rb +0 -57
- data/spec/opal/core/language/fixtures/break.rb +0 -240
- data/spec/opal/core/language/fixtures/ensure.rb +0 -72
- data/spec/opal/core/language/fixtures/literal_lambda.rb +0 -7
- data/spec/opal/core/language/fixtures/metaclass.rb +0 -33
- data/spec/opal/core/language/fixtures/module.rb +0 -24
- data/spec/opal/core/language/fixtures/next.rb +0 -128
- data/spec/opal/core/language/fixtures/return.rb +0 -118
- data/spec/opal/core/language/fixtures/send.rb +0 -111
- data/spec/opal/core/language/fixtures/send_1.9.rb +0 -22
- data/spec/opal/core/language/fixtures/super.rb +0 -308
- data/spec/opal/core/language/fixtures/variables.rb +0 -58
- data/spec/opal/core/language/fixtures/yield.rb +0 -28
- data/spec/opal/core/language/heredoc_spec.rb +0 -42
- data/spec/opal/core/language/keyword_arguments_spec.rb +0 -11
- data/spec/opal/core/language/predefined_spec.rb +0 -138
- data/spec/opal/core/language/regexp_spec.rb +0 -20
- data/spec/opal/core/language/rescue_spec.rb +0 -18
- data/spec/opal/core/language/safe_navigator_spec.rb +0 -7
- data/spec/opal/core/language/send_spec.rb +0 -222
- data/spec/opal/core/language/string_spec.rb +0 -44
- data/spec/opal/core/language/ternary_operator_spec.rb +0 -20
- data/spec/opal/core/language/versions/array_1.9.rb +0 -39
- data/spec/opal/core/language/versions/block_1.9.rb +0 -0
- data/spec/opal/core/language/versions/break_1.9.rb +0 -0
- data/spec/opal/core/language/versions/case_1.9.rb +0 -20
- data/spec/opal/core/language/versions/def_2_0_spec.rb +0 -58
- data/spec/opal/core/language/versions/hash_1_9_spec.rb +0 -23
- data/spec/opal/core/language/versions/literal_lambda_1.9.rb +0 -143
- data/spec/opal/core/language/versions/not_1.9.rb +0 -22
- data/spec/opal/core/language/versions/send_1.9.rb +0 -241
- data/spec/opal/core/language/versions/symbol_1.9.rb +0 -15
- data/spec/opal/core/language/versions/variables_1.9.rb +0 -8
- data/spec/opal/core/language_spec.rb +0 -77
- data/spec/opal/core/marshal/dump_spec.rb +0 -53
- data/spec/opal/core/marshal/load_spec.rb +0 -7
- data/spec/opal/core/method/to_proc_spec.rb +0 -28
- data/spec/opal/core/module/alias_method_spec.rb +0 -28
- data/spec/opal/core/module/ancestors_spec.rb +0 -11
- data/spec/opal/core/module/append_features_spec.rb +0 -14
- data/spec/opal/core/module/attr_accessor_spec.rb +0 -26
- data/spec/opal/core/module/const_defined_spec.rb +0 -84
- data/spec/opal/core/module/const_get_spec.rb +0 -85
- data/spec/opal/core/module/const_missing_spec.rb +0 -17
- data/spec/opal/core/module/const_set_spec.rb +0 -64
- data/spec/opal/core/module/constants_spec.rb +0 -49
- data/spec/opal/core/module/fixtures/classes.rb +0 -444
- data/spec/opal/core/module/method_defined_spec.rb +0 -48
- data/spec/opal/core/module/method_lookup_spec.rb +0 -13
- data/spec/opal/core/module/module_function_spec.rb +0 -25
- data/spec/opal/core/module/name_spec.rb +0 -41
- data/spec/opal/core/module/public_method_defined_spec.rb +0 -18
- data/spec/opal/core/module/remove_const_spec.rb +0 -22
- data/spec/opal/core/module/undef_method_spec.rb +0 -66
- data/spec/opal/core/numeric/bit_and_spec.rb +0 -7
- data/spec/opal/core/numeric/bit_or_spec.rb +0 -8
- data/spec/opal/core/numeric/bit_xor_spec.rb +0 -6
- data/spec/opal/core/numeric/ceil_spec.rb +0 -8
- data/spec/opal/core/numeric/chr_spec.rb +0 -8
- data/spec/opal/core/numeric/comparison_spec.rb +0 -24
- data/spec/opal/core/numeric/complement_spec.rb +0 -8
- data/spec/opal/core/numeric/divide_spec.rb +0 -10
- data/spec/opal/core/numeric/eql_spec.rb +0 -9
- data/spec/opal/core/numeric/exponent_spec.rb +0 -33
- data/spec/opal/core/numeric/floor_spec.rb +0 -8
- data/spec/opal/core/numeric/gt_spec.rb +0 -11
- data/spec/opal/core/numeric/gte_spec.rb +0 -12
- data/spec/opal/core/numeric/integer_spec.rb +0 -9
- data/spec/opal/core/numeric/left_shift_spec.rb +0 -21
- data/spec/opal/core/numeric/lt_spec.rb +0 -11
- data/spec/opal/core/numeric/lte_spec.rb +0 -12
- data/spec/opal/core/numeric/minus_spec.rb +0 -8
- data/spec/opal/core/numeric/modulo_spec.rb +0 -19
- data/spec/opal/core/numeric/multiply_spec.rb +0 -9
- data/spec/opal/core/numeric/next_spec.rb +0 -9
- data/spec/opal/core/numeric/ord_spec.rb +0 -9
- data/spec/opal/core/numeric/plus_spec.rb +0 -8
- data/spec/opal/core/numeric/pred_spec.rb +0 -7
- data/spec/opal/core/numeric/right_shift_spec.rb +0 -25
- data/spec/opal/core/numeric/step_spec.rb +0 -11
- data/spec/opal/core/numeric/succ_spec.rb +0 -9
- data/spec/opal/core/numeric/times_spec.rb +0 -36
- data/spec/opal/core/numeric/to_f_spec.rb +0 -7
- data/spec/opal/core/numeric/to_i_spec.rb +0 -7
- data/spec/opal/core/numeric/to_json_spec.rb +0 -8
- data/spec/opal/core/numeric/to_s_spec.rb +0 -26
- data/spec/opal/core/numeric/uminus_spec.rb +0 -9
- data/spec/opal/core/numeric/upto_spec.rb +0 -19
- data/spec/opal/core/numeric/zero_spec.rb +0 -7
- data/spec/opal/core/object_id_spec.rb +0 -56
- data/spec/opal/core/proc/call_spec.rb +0 -21
- data/spec/opal/core/proc/element_reference_spec.rb +0 -21
- data/spec/opal/core/proc/proc_tricks_spec.rb +0 -7
- data/spec/opal/core/runtime/begin_spec.rb +0 -39
- data/spec/opal/core/runtime/block_spec.rb +0 -23
- data/spec/opal/core/runtime/bridged_classes_spec.rb +0 -123
- data/spec/opal/core/runtime/constants_spec.rb +0 -13
- data/spec/opal/core/runtime/donate_spec.rb +0 -53
- data/spec/opal/core/runtime/eval_spec.rb +0 -5
- data/spec/opal/core/runtime/is_a_spec.rb +0 -36
- data/spec/opal/core/runtime/main_methods_spec.rb +0 -27
- data/spec/opal/core/runtime/method_missing_spec.rb +0 -68
- data/spec/opal/core/runtime/method_spec.rb +0 -31
- data/spec/opal/core/runtime/operator_call_spec.rb +0 -13
- data/spec/opal/core/runtime/paren_spec.rb +0 -14
- data/spec/opal/core/runtime/rescue_spec.rb +0 -106
- data/spec/opal/core/runtime/return_spec.rb +0 -38
- data/spec/opal/core/runtime/singleton_class_spec.rb +0 -13
- data/spec/opal/core/runtime/super_spec.rb +0 -223
- data/spec/opal/core/runtime/truthy_spec.rb +0 -63
- data/spec/opal/core/runtime/variables_spec.rb +0 -20
- data/spec/opal/core/runtime_spec.rb +0 -58
- data/spec/opal/core/source_map_spec.rb +0 -49
- data/spec/opal/core/string_spec.rb +0 -32
- data/spec/opal/core/time_spec.rb +0 -38
- data/spec/opal/javascript_api_spec.rb +0 -16
- data/spec/opal/stdlib/erb/erb_spec.rb +0 -30
- data/spec/opal/stdlib/erb/inline_block.opalerb +0 -3
- data/spec/opal/stdlib/erb/quoted.opalerb +0 -1
- data/spec/opal/stdlib/erb/simple.opalerb +0 -1
- data/spec/opal/stdlib/js_spec.rb +0 -66
- data/spec/opal/stdlib/json/ext_spec.rb +0 -48
- data/spec/opal/stdlib/json/parse_spec.rb +0 -37
- data/spec/opal/stdlib/native/alias_native_spec.rb +0 -27
- data/spec/opal/stdlib/native/array_spec.rb +0 -11
- data/spec/opal/stdlib/native/each_spec.rb +0 -13
- data/spec/opal/stdlib/native/element_reference_spec.rb +0 -16
- data/spec/opal/stdlib/native/exposure_spec.rb +0 -33
- data/spec/opal/stdlib/native/ext_spec.rb +0 -19
- data/spec/opal/stdlib/native/hash_spec.rb +0 -67
- data/spec/opal/stdlib/native/initialize_spec.rb +0 -17
- data/spec/opal/stdlib/native/method_missing_spec.rb +0 -51
- data/spec/opal/stdlib/native/native_alias_spec.rb +0 -19
- data/spec/opal/stdlib/native/native_class_spec.rb +0 -18
- data/spec/opal/stdlib/native/native_module_spec.rb +0 -13
- data/spec/opal/stdlib/native/native_reader_spec.rb +0 -22
- data/spec/opal/stdlib/native/native_writer_spec.rb +0 -30
- data/spec/opal/stdlib/native/new_spec.rb +0 -92
- data/spec/opal/stdlib/native/struct_spec.rb +0 -12
- data/spec/opal/stdlib/promise/always_spec.rb +0 -49
- data/spec/opal/stdlib/promise/error_spec.rb +0 -15
- data/spec/opal/stdlib/promise/rescue_spec.rb +0 -53
- data/spec/opal/stdlib/promise/then_spec.rb +0 -79
- data/spec/opal/stdlib/promise/trace_spec.rb +0 -51
- data/spec/opal/stdlib/promise/value_spec.rb +0 -15
- data/spec/opal/stdlib/promise/when_spec.rb +0 -34
- data/spec/opal/stdlib/source_map_spec.rb +0 -8
- data/spec/opal/stdlib/strscan/scan_spec.rb +0 -11
- data/spec/opal/stdlib/template/paths_spec.rb +0 -10
- data/spec/opal/stdlib/thread/mutex_spec.rb +0 -40
- data/spec/opal/stdlib/thread/thread_queue_spec.rb +0 -32
- data/spec/opal/stdlib/thread/thread_spec.rb +0 -60
- data/spec/ruby_specs +0 -122
- data/spec/spec_helper.rb +0 -27
- data/spec/support/match_helpers.rb +0 -57
- data/spec/support/mspec_rspec_adapter.rb +0 -33
- data/spec/support/rewriters_helper.rb +0 -24
- data/stdlib/phantomjs.rb +0 -17
- data/tasks/testing/sprockets-phantomjs.js +0 -54
- data/test/nodejs/fixtures/hello.rb +0 -1
- data/test/nodejs/test_dir.rb +0 -17
- data/test/nodejs/test_file.rb +0 -87
- data/test/nodejs/test_io.rb +0 -18
- data/test/nodejs/test_opal_builder.rb +0 -12
- data/test/opal/test_keyword.rb +0 -590
- data/test/opal/unsupported_and_bugs.rb +0 -39
@@ -1,6 +0,0 @@
|
|
1
|
-
opal_unsupported_filter "Struct" do
|
2
|
-
fails "Struct#initialize is private"
|
3
|
-
fails "Struct.new does not create a constant with symbol as first argument"
|
4
|
-
fails "Struct.new fails with invalid constant name as first argument" # this invalid name gets interpreted as a struct member
|
5
|
-
fails "Struct.new raises a TypeError if object is not a Symbol"
|
6
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
opal_unsupported_filter "Symbol" do
|
2
|
-
fails "Numeric#coerce raises a TypeError when passed a Symbol"
|
3
|
-
fails "Fixnum#coerce raises a TypeError when given an Object that does not respond to #to_f"
|
4
|
-
fails "Symbol#to_proc produces a proc that always returns [[:rest]] for #parameters"
|
5
|
-
fails "The throw keyword does not convert strings to a symbol"
|
6
|
-
fails "Module#const_get raises a NameError if a Symbol has a toplevel scope qualifier"
|
7
|
-
fails "Module#const_get raises a NameError if a Symbol is a scoped constant name"
|
8
|
-
fails "A Symbol literal is a ':' followed by any number of valid characters"
|
9
|
-
fails "A Symbol literal is a ':' followed by a single- or double-quoted string that may contain otherwise invalid characters"
|
10
|
-
fails "A Symbol literal is converted to a literal, unquoted representation if the symbol contains only valid characters"
|
11
|
-
fails "A Symbol literal can be created by the %s-delimited expression"
|
12
|
-
fails "A Symbol literal can contain null in the string"
|
13
|
-
fails "A Symbol literal can be an empty string"
|
14
|
-
fails "Marshal.dump with a Symbol dumps a Symbol"
|
15
|
-
fails "Marshal.dump with a Symbol dumps a big Symbol"
|
16
|
-
fails "Marshal.dump with a Symbol dumps an encoded Symbol"
|
17
|
-
fails "Marshal.dump with a Symbol dumps a binary encoded Symbol"
|
18
|
-
fails "Marshal.dump with an Array dumps a non-empty Array" # this particular spec dumps a Symbol, spec with String instead of Symbol is in spec/opal/
|
19
|
-
fails "Hash literal raises a TypeError if any splatted elements keys are not symbols"
|
20
|
-
end
|
@@ -1,30 +0,0 @@
|
|
1
|
-
opal_unsupported_filter "taint" do
|
2
|
-
fails "Hash#reject with extra state does not taint the resulting hash"
|
3
|
-
fails "Kernel#inspect returns a tainted string if self is tainted"
|
4
|
-
fails "Module#append_features copies own tainted status to the given module"
|
5
|
-
fails "Module#append_features copies own untrusted status to the given module"
|
6
|
-
fails "Module#extend_object does not copy own tainted status to the given object"
|
7
|
-
fails "Module#extend_object does not copy own untrusted status to the given object"
|
8
|
-
fails "Module#prepend_features copies own tainted status to the given module"
|
9
|
-
fails "Module#prepend_features copies own untrusted status to the given module"
|
10
|
-
fails "String#% doesn't taint the result for %E when argument is tainted"
|
11
|
-
fails "String#% doesn't taint the result for %G when argument is tainted"
|
12
|
-
fails "String#% doesn't taint the result for %e when argument is tainted"
|
13
|
-
fails "String#% doesn't taint the result for %f when argument is tainted"
|
14
|
-
fails "String#% doesn't taint the result for %g when argument is tainted"
|
15
|
-
fails "String#[] with Regexp always taints resulting strings when self or regexp is tainted"
|
16
|
-
fails "String#[] with Regexp returns an untrusted string if the regexp is untrusted"
|
17
|
-
fails "String#byteslice with Range always taints resulting strings when self is tainted"
|
18
|
-
fails "String#byteslice with index, length always taints resulting strings when self is tainted"
|
19
|
-
fails "String#dump taints the result if self is tainted"
|
20
|
-
fails "String#slice with Regexp always taints resulting strings when self or regexp is tainted"
|
21
|
-
fails "String#slice with Regexp returns an untrusted string if the regexp is untrusted"
|
22
|
-
fails "StringScanner#getbyte taints the returned String if the input was tainted"
|
23
|
-
fails "StringScanner#getch taints the returned String if the input was tainted"
|
24
|
-
fails "StringScanner#matched taints the returned String if the input was tainted"
|
25
|
-
fails "StringScanner#peek taints the returned String if the input was tainted"
|
26
|
-
fails "StringScanner#peep taints the returned String if the input was tainted"
|
27
|
-
fails "StringScanner#post_match taints the returned String if the input was tainted"
|
28
|
-
fails "StringScanner#pre_match taints the returned String if the input was tainted"
|
29
|
-
fails "StringScanner#rest taints the returned String if the input was tainted"
|
30
|
-
end
|
@@ -1,7 +0,0 @@
|
|
1
|
-
opal_unsupported_filter "Thread" do
|
2
|
-
fails "StandardError is a superclass of ThreadError"
|
3
|
-
fails "The throw keyword raises an ArgumentError if used to exit a thread"
|
4
|
-
fails "The throw keyword clears the current exception"
|
5
|
-
fails "Module#autoload loads the registered constant even if the constant was already loaded by another thread"
|
6
|
-
fails "The return keyword in a Thread raises a LocalJumpError if used to exit a thread"
|
7
|
-
end
|
@@ -1,202 +0,0 @@
|
|
1
|
-
opal_unsupported_filter "Time" do
|
2
|
-
fails "Time#+ accepts arguments that can be coerced into Rational"
|
3
|
-
fails "Time#+ adds a negative Float"
|
4
|
-
fails "Time#+ increments the time by the specified amount as rational numbers"
|
5
|
-
fails "Time#+ maintains microseconds precision"
|
6
|
-
fails "Time#+ maintains nanoseconds precision"
|
7
|
-
fails "Time#+ maintains precision"
|
8
|
-
fails "Time#+ maintains subseconds precision"
|
9
|
-
fails "Time#+ returns a time with the same fixed offset as self"
|
10
|
-
fails "Time#+ tracks microseconds"
|
11
|
-
fails "Time#+ tracks nanoseconds"
|
12
|
-
fails "Time#- accepts arguments that can be coerced into Rational"
|
13
|
-
fails "Time#- maintains microseconds precision"
|
14
|
-
fails "Time#- maintains nanoseconds precision"
|
15
|
-
fails "Time#- maintains precision"
|
16
|
-
fails "Time#- maintains subseconds precision"
|
17
|
-
fails "Time#- returns a time with nanoseconds precision between two time objects"
|
18
|
-
fails "Time#- returns a time with the same fixed offset as self"
|
19
|
-
fails "Time#- tracks microseconds"
|
20
|
-
fails "Time#- tracks nanoseconds"
|
21
|
-
fails "Time#<=> returns -1 if the first argument is a fraction of a microsecond before the second argument"
|
22
|
-
fails "Time#<=> returns -1 if the first argument is a point in time before the second argument (down to a microsecond)"
|
23
|
-
fails "Time#<=> returns 0 if time is the same as other, including fractional microseconds"
|
24
|
-
fails "Time#<=> returns 1 if the first argument is a fraction of a microsecond after the second argument"
|
25
|
-
fails "Time#<=> returns 1 if the first argument is a point in time after the second argument (down to a microsecond)"
|
26
|
-
fails "Time#day returns the day of the month (1..n) for a local Time"
|
27
|
-
fails "Time#day returns the day of the month for a Time with a fixed offset"
|
28
|
-
fails "Time#dst? dst? returns whether time is during daylight saving time"
|
29
|
-
fails "Time#dup returns a subclass instance"
|
30
|
-
fails "Time#eql? returns false if self and other have differing fractional microseconds"
|
31
|
-
fails "Time#eql? returns false if self and other have differing numbers of microseconds"
|
32
|
-
fails "Time#getgm returns a new time which is the utc representation of time"
|
33
|
-
fails "Time#getlocal raises ArgumentError if the argument represents a value greater than or equal to 86400 seconds"
|
34
|
-
fails "Time#getlocal raises ArgumentError if the argument represents a value less than or equal to -86400 seconds"
|
35
|
-
fails "Time#getlocal raises ArgumentError if the String argument is not of the form (+|-)HH:MM"
|
36
|
-
fails "Time#getlocal returns a new time which is the local representation of time"
|
37
|
-
fails "Time#getlocal returns a new time with the correct utc_offset according to the set timezone"
|
38
|
-
fails "Time#getlocal returns a Time with a UTC offset of the specified number of Rational seconds"
|
39
|
-
fails "Time#getlocal returns a Time with a UTC offset specified as +HH:MM"
|
40
|
-
fails "Time#getlocal returns a Time with a UTC offset specified as -HH:MM"
|
41
|
-
fails "Time#getlocal returns a Time with UTC offset specified as an Integer number of seconds"
|
42
|
-
fails "Time#getlocal with an argument that responds to #to_int coerces using #to_int"
|
43
|
-
fails "Time#getlocal with an argument that responds to #to_r coerces using #to_r"
|
44
|
-
fails "Time#getlocal with an argument that responds to #to_str coerces using #to_str"
|
45
|
-
fails "Time#getutc returns a new time which is the utc representation of time"
|
46
|
-
fails "Time#gmtime returns the utc representation of time"
|
47
|
-
fails "Time#gmtoff given negative offset returns a negative offset"
|
48
|
-
fails "Time#gmtoff given positive offset returns a positive offset"
|
49
|
-
fails "Time#gmtoff returns offset as Rational"
|
50
|
-
fails "Time#gmtoff returns the correct offset for Hawaii around daylight savings time change"
|
51
|
-
fails "Time#gmtoff returns the correct offset for New Zealand around daylight savings time change"
|
52
|
-
fails "Time#gmtoff returns the correct offset for US Eastern time zone around daylight savings time change"
|
53
|
-
fails "Time#gmtoff returns the offset in seconds between the timezone of time and UTC"
|
54
|
-
fails "Time#gmt_offset given negative offset returns a negative offset"
|
55
|
-
fails "Time#gmt_offset given positive offset returns a positive offset"
|
56
|
-
fails "Time#gmt_offset returns offset as Rational"
|
57
|
-
fails "Time#gmt_offset returns the correct offset for Hawaii around daylight savings time change"
|
58
|
-
fails "Time#gmt_offset returns the correct offset for New Zealand around daylight savings time change"
|
59
|
-
fails "Time#gmt_offset returns the correct offset for US Eastern time zone around daylight savings time change"
|
60
|
-
fails "Time#gmt_offset returns the offset in seconds between the timezone of time and UTC"
|
61
|
-
fails "Time#hash returns a Fixnum"
|
62
|
-
fails "Time#hour returns the hour of the day (0..23) for a local Time"
|
63
|
-
fails "Time#hour returns the hour of the day for a Time with a fixed offset"
|
64
|
-
fails "Time#isdst dst? returns whether time is during daylight saving time"
|
65
|
-
fails "Time#localtime changes the timezone according to the set one"
|
66
|
-
fails "Time#localtime converts self to local time, modifying the receiver"
|
67
|
-
fails "Time#localtime converts time to the UTC offset specified as an Integer number of seconds"
|
68
|
-
fails "Time#localtime raises ArgumentError if the argument represents a value greater than or equal to 86400 seconds"
|
69
|
-
fails "Time#localtime raises ArgumentError if the argument represents a value less than or equal to -86400 seconds"
|
70
|
-
fails "Time#localtime raises ArgumentError if the String argument is not of the form (+|-)HH:MM"
|
71
|
-
fails "Time#localtime returns a Time with a UTC offset of the specified number of Rational seconds"
|
72
|
-
fails "Time#localtime returns a Time with a UTC offset specified as +HH:MM"
|
73
|
-
fails "Time#localtime returns a Time with a UTC offset specified as -HH:MM"
|
74
|
-
fails "Time#localtime returns self"
|
75
|
-
fails "Time#localtime with an argument that responds to #to_int coerces using #to_int"
|
76
|
-
fails "Time#localtime with an argument that responds to #to_r coerces using #to_r"
|
77
|
-
fails "Time#localtime with an argument that responds to #to_str coerces using #to_str"
|
78
|
-
fails "Time#mday returns the day of the month (1..n) for a local Time"
|
79
|
-
fails "Time#mday returns the day of the month for a Time with a fixed offset"
|
80
|
-
fails "Time#min returns the minute of the hour (0..59) for a local Time"
|
81
|
-
fails "Time#min returns the minute of the hour for a Time with a fixed offset"
|
82
|
-
fails "Time#mon returns the four digit year for a Time with a fixed offset"
|
83
|
-
fails "Time#mon returns the month of the year for a local Time"
|
84
|
-
fails "Time#month returns the four digit year for a Time with a fixed offset"
|
85
|
-
fails "Time#month returns the month of the year for a local Time"
|
86
|
-
fails "Time#nsec returns 0 for a Time constructed with a whole number of seconds"
|
87
|
-
fails "Time#nsec returns the nanoseconds part of a Time constructed with a Float number of seconds"
|
88
|
-
fails "Time#nsec returns the nanoseconds part of a Time constructed with a Rational number of seconds"
|
89
|
-
fails "Time#nsec returns the nanoseconds part of a Time constructed with an Float number of microseconds"
|
90
|
-
fails "Time#nsec returns the nanoseconds part of a Time constructed with an Integer number of microseconds"
|
91
|
-
fails "Time#nsec returns the nanoseconds part of a Time constructed with an Rational number of microseconds"
|
92
|
-
fails "Time#strftime with %L formats the milliseconds of the second"
|
93
|
-
fails "Time#strftime with %z formats a local time with negative UTC offset as '-HHMM'"
|
94
|
-
fails "Time#strftime with %z formats a local time with positive UTC offset as '+HHMM'"
|
95
|
-
fails "Time#strftime with %z formats a time with fixed negative offset as '-HHMM'"
|
96
|
-
fails "Time#strftime with %z formats a time with fixed offset as '+/-HH:MM' with ':' specifier"
|
97
|
-
fails "Time#strftime with %z formats a time with fixed offset as '+/-HH:MM:SS' with '::' specifier"
|
98
|
-
fails "Time#strftime with %z formats a time with fixed positive offset as '+HHMM'"
|
99
|
-
fails "Time#strftime with %z formats a UTC time offset as '+0000'"
|
100
|
-
fails "Time#subsec returns 0 as a Fixnum for a Time with a whole number of seconds"
|
101
|
-
fails "Time#subsec returns the fractional seconds as a Rational for a Time constructed with a Float number of seconds"
|
102
|
-
fails "Time#subsec returns the fractional seconds as a Rational for a Time constructed with a Rational number of seconds"
|
103
|
-
fails "Time#subsec returns the fractional seconds as a Rational for a Time constructed with an Float number of microseconds"
|
104
|
-
fails "Time#subsec returns the fractional seconds as a Rational for a Time constructed with an Integer number of microseconds"
|
105
|
-
fails "Time#subsec returns the fractional seconds as a Rational for a Time constructed with an Rational number of microseconds"
|
106
|
-
fails "Time#to_a returns a 10 element array representing the deconstructed time"
|
107
|
-
fails "Time#to_r returns a Rational even for a whole number of seconds"
|
108
|
-
fails "Time#to_r returns the a Rational representing seconds and subseconds since the epoch"
|
109
|
-
fails "Time#usec returns 0 for a Time constructed with an Rational number of microseconds < 1"
|
110
|
-
fails "Time#usec returns the microseconds for time created by Time#local"
|
111
|
-
fails "Time#usec returns the microseconds part of a Time constructed with a Rational number of seconds"
|
112
|
-
fails "Time#usec returns the microseconds part of a Time constructed with an Float number of microseconds > 1"
|
113
|
-
fails "Time#usec returns the microseconds part of a Time constructed with an Integer number of microseconds"
|
114
|
-
fails "Time#usec returns the microseconds part of a Time constructed with an Rational number of microseconds > 1"
|
115
|
-
fails "Time#utc returns the utc representation of time"
|
116
|
-
fails "Time#utc_offset given negative offset returns a negative offset"
|
117
|
-
fails "Time#utc_offset given positive offset returns a positive offset"
|
118
|
-
fails "Time#utc_offset returns offset as Rational"
|
119
|
-
fails "Time#utc_offset returns the correct offset for Hawaii around daylight savings time change"
|
120
|
-
fails "Time#utc_offset returns the correct offset for New Zealand around daylight savings time change"
|
121
|
-
fails "Time#utc_offset returns the correct offset for US Eastern time zone around daylight savings time change"
|
122
|
-
fails "Time#utc_offset returns the offset in seconds between the timezone of time and UTC"
|
123
|
-
fails "Time#wday returns an integer representing the day of the week, 0..6, with Sunday being 0"
|
124
|
-
fails "Time#year returns the four digit year for a local Time as an Integer"
|
125
|
-
fails "Time#year returns the four digit year for a Time with a fixed offset"
|
126
|
-
fails "Time#zone Encoding.default_internal is set doesn't raise errors for a Time with a fixed offset"
|
127
|
-
fails "Time#zone Encoding.default_internal is set returns the string with the default internal encoding"
|
128
|
-
fails "Time#zone returns nil for a Time with a fixed offset"
|
129
|
-
fails "Time#zone returns nil when getting the local time with a fixed offset"
|
130
|
-
fails "Time#zone returns the correct timezone for a local time"
|
131
|
-
fails "Time#zone returns the time zone used for time"
|
132
|
-
fails "Time#zone returns UTC when called on a UTC time"
|
133
|
-
fails "Time.at passed non-Time, non-Numeric with an argument that responds to #to_r coerces using #to_r"
|
134
|
-
fails "Time.at passed Numeric returns a subclass instance on a Time subclass"
|
135
|
-
fails "Time.at passed Time returns a subclass instance"
|
136
|
-
fails "Time.at passed [Integer, Numeric] returns a Time object representing the given number of seconds and Float microseconds since 1970-01-01 00:00:00 UTC"
|
137
|
-
fails "Time.at with a second argument that responds to #to_r coerces using #to_r"
|
138
|
-
fails "Time.gm handles fractional microseconds as a Float"
|
139
|
-
fails "Time.gm handles fractional microseconds as a Rational"
|
140
|
-
fails "Time.gm handles fractional seconds as a Rational"
|
141
|
-
fails "Time.gm handles microseconds"
|
142
|
-
fails "Time.gm ignores fractional seconds if a passed fractional number of microseconds"
|
143
|
-
fails "Time.gm ignores fractional seconds if a passed whole number of microseconds"
|
144
|
-
fails "Time.gm returns subclass instances"
|
145
|
-
fails "Time.local creates a time based on given C-style gmtime arguments, interpreted in the local time zone"
|
146
|
-
fails "Time.local creates a time based on given values, interpreted in the local time zone"
|
147
|
-
fails "Time.local creates the correct time just after dst change"
|
148
|
-
fails "Time.local creates the correct time just before dst change"
|
149
|
-
fails "Time.local handles fractional microseconds as a Float"
|
150
|
-
fails "Time.local handles fractional microseconds as a Rational"
|
151
|
-
fails "Time.local handles fractional seconds as a Rational"
|
152
|
-
fails "Time.local handles microseconds"
|
153
|
-
fails "Time.local ignores fractional seconds if a passed fractional number of microseconds"
|
154
|
-
fails "Time.local ignores fractional seconds if a passed whole number of microseconds"
|
155
|
-
fails "Time.local respects rare old timezones"
|
156
|
-
fails "Time.local returns subclass instances"
|
157
|
-
fails "Time.local timezone changes correctly adjusts the timezone change to 'CEST' on 'Europe/Amsterdam'"
|
158
|
-
fails "Time.local timezone changes correctly adjusts the timezone change to 'EET' on 'Europe/Istanbul'"
|
159
|
-
fails "Time.mktime creates a time based on given C-style gmtime arguments, interpreted in the local time zone"
|
160
|
-
fails "Time.mktime creates a time based on given values, interpreted in the local time zone"
|
161
|
-
fails "Time.mktime creates the correct time just after dst change"
|
162
|
-
fails "Time.mktime creates the correct time just before dst change"
|
163
|
-
fails "Time.mktime handles fractional microseconds as a Float"
|
164
|
-
fails "Time.mktime handles fractional microseconds as a Rational"
|
165
|
-
fails "Time.mktime handles fractional seconds as a Rational"
|
166
|
-
fails "Time.mktime handles microseconds"
|
167
|
-
fails "Time.mktime ignores fractional seconds if a passed fractional number of microseconds"
|
168
|
-
fails "Time.mktime ignores fractional seconds if a passed whole number of microseconds"
|
169
|
-
fails "Time.mktime respects rare old timezones"
|
170
|
-
fails "Time.mktime returns subclass instances"
|
171
|
-
fails "Time.mktime timezone changes correctly adjusts the timezone change to 'CEST' on 'Europe/Amsterdam'"
|
172
|
-
fails "Time.mktime timezone changes correctly adjusts the timezone change to 'EET' on 'Europe/Istanbul'"
|
173
|
-
fails "Time.new creates a subclass instance if called on a subclass"
|
174
|
-
fails "Time.new creates a time based on given values, interpreted in the local time zone"
|
175
|
-
fails "Time.new handles fractional seconds as a Rational"
|
176
|
-
fails "Time.new respects rare old timezones"
|
177
|
-
fails "Time.new returns subclass instances"
|
178
|
-
fails "Time.new timezone changes correctly adjusts the timezone change to 'CEST' on 'Europe/Amsterdam'"
|
179
|
-
fails "Time.new timezone changes correctly adjusts the timezone change to 'EET' on 'Europe/Istanbul'"
|
180
|
-
fails "Time.new with a utc_offset argument adds one hour if the offset minute value is greater than 59"
|
181
|
-
fails "Time.new with a utc_offset argument raises ArgumentError if the argument represents a value greater than or equal to 86400 seconds"
|
182
|
-
fails "Time.new with a utc_offset argument raises ArgumentError if the argument represents a value less than or equal to -86400 seconds"
|
183
|
-
fails "Time.new with a utc_offset argument raises ArgumentError if the hour value is greater than 23"
|
184
|
-
fails "Time.new with a utc_offset argument raises ArgumentError if the String argument is not of the form (+|-)HH:MM"
|
185
|
-
fails "Time.new with a utc_offset argument returns a local Time if the argument is nil"
|
186
|
-
fails "Time.new with a utc_offset argument returns a non-UTC time"
|
187
|
-
fails "Time.new with a utc_offset argument returns a Time with a UTC offset of the specified number of Integer seconds"
|
188
|
-
fails "Time.new with a utc_offset argument returns a Time with a UTC offset of the specified number of Rational seconds"
|
189
|
-
fails "Time.new with a utc_offset argument returns a Time with a UTC offset specified as +HH:MM"
|
190
|
-
fails "Time.new with a utc_offset argument returns a Time with a UTC offset specified as -HH:MM"
|
191
|
-
fails "Time.new with a utc_offset argument with an argument that responds to #to_int coerces using #to_int"
|
192
|
-
fails "Time.new with a utc_offset argument with an argument that responds to #to_r coerces using #to_r"
|
193
|
-
fails "Time.new with a utc_offset argument with an argument that responds to #to_str coerces using #to_str"
|
194
|
-
fails "Time.now creates a subclass instance if called on a subclass"
|
195
|
-
fails "Time.utc handles fractional microseconds as a Float"
|
196
|
-
fails "Time.utc handles fractional microseconds as a Rational"
|
197
|
-
fails "Time.utc handles fractional seconds as a Rational"
|
198
|
-
fails "Time.utc handles microseconds"
|
199
|
-
fails "Time.utc ignores fractional seconds if a passed fractional number of microseconds"
|
200
|
-
fails "Time.utc ignores fractional seconds if a passed whole number of microseconds"
|
201
|
-
fails "Time.utc returns subclass instances"
|
202
|
-
end
|
@@ -1,27 +0,0 @@
|
|
1
|
-
require 'lib/spec_helper'
|
2
|
-
require 'opal/builder_processors'
|
3
|
-
|
4
|
-
describe Opal::Builder::RubyProcessor do
|
5
|
-
it 'compiles ruby to js' do
|
6
|
-
processor = described_class.new('puts 5', '-e')
|
7
|
-
expect(processor.to_s).to include('$puts(5)')
|
8
|
-
end
|
9
|
-
|
10
|
-
describe ':requirable option' do
|
11
|
-
it 'is respected' do
|
12
|
-
processor = described_class.new('puts 5', '-e', requirable: true)
|
13
|
-
expect(processor.to_s).to include('Opal.modules[')
|
14
|
-
end
|
15
|
-
|
16
|
-
it 'defaults to "false"' do
|
17
|
-
processor = described_class.new('puts 5', '-e')
|
18
|
-
expect(processor.to_s).not_to include('Opal.modules[')
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
it 'fills required_trees' do
|
23
|
-
processor = described_class.new('require_tree "./pippo"', '-e')
|
24
|
-
expect(processor.required_trees).to eq(['pippo'])
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
data/spec/lib/builder_spec.rb
DELETED
@@ -1,89 +0,0 @@
|
|
1
|
-
require 'lib/spec_helper'
|
2
|
-
require 'opal/builder'
|
3
|
-
require 'lib/shared/path_reader_shared'
|
4
|
-
|
5
|
-
describe Opal::Builder do
|
6
|
-
subject(:builder) { described_class.new(options) }
|
7
|
-
let(:options) { {} }
|
8
|
-
|
9
|
-
it 'compiles opal' do
|
10
|
-
expect(builder.build('opal').to_s).to match('(Opal);')
|
11
|
-
end
|
12
|
-
|
13
|
-
it 'respect #require_tree calls' do
|
14
|
-
builder.append_paths(File.expand_path('..', __FILE__))
|
15
|
-
expect(builder.build('fixtures/require_tree_test').to_s).to include('Opal.modules["fixtures/required_tree_test/required_file1"]')
|
16
|
-
end
|
17
|
-
|
18
|
-
describe ':stubs' do
|
19
|
-
let(:options) { {stubs: ['foo']} }
|
20
|
-
|
21
|
-
it 'compiles them as empty files' do
|
22
|
-
source = 'require "foo"'
|
23
|
-
expect(builder.default_processor).to receive('new').with(source, anything, anything).once.and_call_original
|
24
|
-
expect(builder.default_processor).to receive('new').with('', anything, anything).once.and_call_original
|
25
|
-
|
26
|
-
builder.build_str(source, 'bar.rb')
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
describe ':prerequired' do
|
31
|
-
let(:options) { {prerequired: ['foo']} }
|
32
|
-
|
33
|
-
it 'compiles them as empty files' do
|
34
|
-
source = 'require "foo"'
|
35
|
-
builder.build_str(source, 'bar.rb')
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
describe ':preload' do
|
40
|
-
let(:options) { {preload: ['base64']} }
|
41
|
-
|
42
|
-
it 'compiles them as empty files' do
|
43
|
-
source = 'puts 5'
|
44
|
-
expect(builder.default_processor).to receive('new').with(anything, 'base64', anything).once.and_call_original
|
45
|
-
expect(builder.default_processor).to receive('new').with(source, anything, anything).once.and_call_original
|
46
|
-
|
47
|
-
builder.build_str(source, 'bar.rb')
|
48
|
-
end
|
49
|
-
end
|
50
|
-
|
51
|
-
describe 'dup' do
|
52
|
-
it 'duplicates internal structures' do
|
53
|
-
b2 = builder.dup
|
54
|
-
b2.should_not equal(builder)
|
55
|
-
[:stubs, :preload, :processors, :path_reader, :prerequired, :compiler_options, :processed].each do |m|
|
56
|
-
b2.send(m).should_not equal(builder.send(m))
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
60
|
-
|
61
|
-
describe 'requiring a native .js file' do
|
62
|
-
it 'can be required without specifying extension' do
|
63
|
-
builder.build_str('require "corelib/runtime"', 'foo')
|
64
|
-
expect(builder.to_s).to start_with('(function(undefined)')
|
65
|
-
end
|
66
|
-
|
67
|
-
it 'can be required specifying extension' do
|
68
|
-
builder.build_str('require "corelib/runtime.js"', 'foo')
|
69
|
-
expect(builder.to_s).to start_with('(function(undefined)')
|
70
|
-
end
|
71
|
-
end
|
72
|
-
|
73
|
-
it 'defaults config from Opal::Config' do
|
74
|
-
Opal::Config.arity_check_enabled = false
|
75
|
-
expect(Opal::Config.arity_check_enabled).to eq(false)
|
76
|
-
expect(Opal::Config.compiler_options[:arity_check]).to eq(false)
|
77
|
-
builder = described_class.new
|
78
|
-
builder.build_str('def foo; end', 'foo')
|
79
|
-
expect(builder.to_s).not_to include('TMP_foo_1.$$parameters = []')
|
80
|
-
|
81
|
-
Opal::Config.arity_check_enabled = true
|
82
|
-
expect(Opal::Config.arity_check_enabled).to eq(true)
|
83
|
-
expect(Opal::Config.compiler_options[:arity_check]).to eq(true)
|
84
|
-
builder = described_class.new
|
85
|
-
builder.build_str('def foo; end', 'foo')
|
86
|
-
expect(builder.to_s).to include('TMP_foo_1.$$parameters = []')
|
87
|
-
end
|
88
|
-
|
89
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
require 'lib/spec_helper'
|
2
|
-
require 'opal/cli_runners/phantomjs'
|
3
|
-
require 'stringio'
|
4
|
-
|
5
|
-
describe Opal::CliRunners::Phantomjs do
|
6
|
-
# FIXME: Unfotunately there are some issues on 1.9.3, probably
|
7
|
-
# related to IO.pipe and process spawning in general.
|
8
|
-
before { pending if RUBY_VERSION == '1.9.3' }
|
9
|
-
|
10
|
-
it 'accepts arguments' do
|
11
|
-
expect(output_of(%{
|
12
|
-
var ARGV = JSON.parse(callPhantom(['argv']));
|
13
|
-
callPhantom(['stdout', JSON.stringify(ARGV)]);
|
14
|
-
callPhantom(['exit', 0]);
|
15
|
-
}, ['foo', 'bar'])).to eq('["foo","bar"]')
|
16
|
-
end
|
17
|
-
|
18
|
-
it 'sets env' do
|
19
|
-
ENV['FOO'] = 'BAR'
|
20
|
-
expect(output_of(%{
|
21
|
-
var ENV = JSON.parse(callPhantom(['env']));
|
22
|
-
callPhantom(['stdout', JSON.stringify(ENV)]);
|
23
|
-
callPhantom(['exit', 0]);
|
24
|
-
}, [])).to include(%{"FOO":"BAR"})
|
25
|
-
end
|
26
|
-
|
27
|
-
|
28
|
-
private
|
29
|
-
|
30
|
-
def output_of(*args)
|
31
|
-
read, write = IO.pipe
|
32
|
-
runner = described_class.new(output: write)
|
33
|
-
|
34
|
-
runner.run(*args)
|
35
|
-
write.close
|
36
|
-
|
37
|
-
return read.read
|
38
|
-
end
|
39
|
-
end
|
data/spec/lib/cli_spec.rb
DELETED
@@ -1,240 +0,0 @@
|
|
1
|
-
require 'lib/spec_helper'
|
2
|
-
require 'opal/cli'
|
3
|
-
require 'stringio'
|
4
|
-
|
5
|
-
describe Opal::CLI do
|
6
|
-
let(:fake_stdout) { StringIO.new }
|
7
|
-
let(:file) { File.expand_path('../fixtures/opal_file.rb', __FILE__) }
|
8
|
-
let(:options) { {} }
|
9
|
-
subject(:cli) { described_class.new(options) }
|
10
|
-
|
11
|
-
context 'with a file' do
|
12
|
-
let(:options) { {:file => File.open(file)} }
|
13
|
-
|
14
|
-
it 'runs the file' do
|
15
|
-
expect_output_of{ subject.run }.to eq("hi from opal!\n")
|
16
|
-
end
|
17
|
-
|
18
|
-
context 'with lib_only: true' do
|
19
|
-
let(:options) { super().merge lib_only: true }
|
20
|
-
|
21
|
-
it 'raises ArgumentError' do
|
22
|
-
expect{subject.run}.to raise_error(ArgumentError)
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
describe ':evals option' do
|
28
|
-
context 'without evals and paths' do
|
29
|
-
it 'raises ArgumentError' do
|
30
|
-
expect { subject.run }.to raise_error(ArgumentError)
|
31
|
-
end
|
32
|
-
|
33
|
-
context 'with lib_only: true and opal require' do
|
34
|
-
let(:options) { super().merge lib_only: true }
|
35
|
-
|
36
|
-
it 'does not raise an error' do
|
37
|
-
expect{subject.run}.not_to raise_error
|
38
|
-
end
|
39
|
-
end
|
40
|
-
end
|
41
|
-
|
42
|
-
context 'with one eval' do
|
43
|
-
let(:options) { {:evals => ['puts "hello"']} }
|
44
|
-
|
45
|
-
it 'executes the code' do
|
46
|
-
expect_output_of{ subject.run }.to eq("hello\n")
|
47
|
-
end
|
48
|
-
|
49
|
-
context 'with lib_only: true' do
|
50
|
-
let(:options) { super().merge lib_only: true }
|
51
|
-
|
52
|
-
it 'raises ArgumentError' do
|
53
|
-
expect{subject.run}.to raise_error(ArgumentError)
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
57
|
-
|
58
|
-
context 'with many evals' do
|
59
|
-
let(:options) { {:evals => ['puts "hello"', 'puts "ciao"']} }
|
60
|
-
|
61
|
-
it 'executes the code' do
|
62
|
-
expect_output_of{ subject.run }.to eq("hello\nciao\n")
|
63
|
-
end
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
describe ':no_exit option' do
|
68
|
-
context 'when false' do
|
69
|
-
let(:options) { {no_exit: false, compile: true, evals: ['']} }
|
70
|
-
it 'appends a Kernel#exit at the end of the source' do
|
71
|
-
expect_output_of{ subject.run }.to include(".$exit()")
|
72
|
-
end
|
73
|
-
end
|
74
|
-
|
75
|
-
context 'when true' do
|
76
|
-
let(:options) { {no_exit: true, compile: true, evals: ['']} }
|
77
|
-
it 'appends a Kernel#exit at the end of the source' do
|
78
|
-
expect_output_of{ subject.run }.not_to include(".$exit();")
|
79
|
-
end
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
|
-
describe ':lib_only option' do
|
84
|
-
context 'when false' do
|
85
|
-
let(:options) { {lib_only: false, compile: true, evals: [''], skip_opal_require: true, no_exit: true} }
|
86
|
-
it 'appends an empty code block at the end of the source' do
|
87
|
-
expect_output_of{ subject.run }.to include("function(Opal)")
|
88
|
-
end
|
89
|
-
end
|
90
|
-
|
91
|
-
context 'when true' do
|
92
|
-
let(:options) { {lib_only: true, compile: true, no_exit: true} }
|
93
|
-
it 'appends code block at the end of the source' do
|
94
|
-
expect_output_of{ subject.run }.not_to eq("\n")
|
95
|
-
end
|
96
|
-
|
97
|
-
context 'without any require' do
|
98
|
-
let(:options) { {lib_only: true, compile: true, skip_opal_require: true, no_exit: true} }
|
99
|
-
it 'raises ArgumentError' do
|
100
|
-
expect{subject.run}.to raise_error(ArgumentError)
|
101
|
-
end
|
102
|
-
end
|
103
|
-
end
|
104
|
-
end
|
105
|
-
|
106
|
-
describe ':requires options' do
|
107
|
-
context 'with an absolute path' do
|
108
|
-
let(:options) { {:requires => [file], :evals => ['']} }
|
109
|
-
it 'requires the file' do
|
110
|
-
expect_output_of{ subject.run }.to eq("hi from opal!\n")
|
111
|
-
end
|
112
|
-
end
|
113
|
-
|
114
|
-
context 'with a path relative to a load path' do
|
115
|
-
let(:dir) { File.dirname(file) }
|
116
|
-
let(:filename) { File.basename(file) }
|
117
|
-
let(:options) { {:load_paths => [dir], :requires => [filename], :evals => ['']} }
|
118
|
-
it 'requires the file' do
|
119
|
-
expect_output_of{ subject.run }.to eq("hi from opal!\n")
|
120
|
-
end
|
121
|
-
end
|
122
|
-
end
|
123
|
-
|
124
|
-
describe ':gems options' do
|
125
|
-
context 'with a Gem name' do
|
126
|
-
let(:dir) { File.dirname(file) }
|
127
|
-
let(:filename) { File.basename(file) }
|
128
|
-
let(:gem_name) { 'mspec' }
|
129
|
-
let(:options) { {:gems => [gem_name], :evals => ['']} }
|
130
|
-
|
131
|
-
it "adds the gem's lib paths to Opal.path" do
|
132
|
-
builder = cli.builder
|
133
|
-
|
134
|
-
spec = Gem::Specification.find_by_name(gem_name)
|
135
|
-
spec.require_paths.each do |require_path|
|
136
|
-
require_path = File.join(spec.gem_dir, require_path)
|
137
|
-
expect(builder.path_reader.send(:file_finder).paths).to include(require_path)
|
138
|
-
end
|
139
|
-
end
|
140
|
-
end
|
141
|
-
end
|
142
|
-
|
143
|
-
describe ':stubs options' do
|
144
|
-
context 'with a stubbed file' do
|
145
|
-
let(:dir) { File.dirname(file) }
|
146
|
-
let(:filename) { File.basename(file) }
|
147
|
-
let(:stub_name) { 'an_unparsable_lib' }
|
148
|
-
let(:options) { {:stubs => [stub_name], :evals => ["require #{stub_name.inspect}"]} }
|
149
|
-
|
150
|
-
it "adds the gem's lib paths to Opal.path" do
|
151
|
-
expect_output_of{ subject.run }.to eq('')
|
152
|
-
end
|
153
|
-
end
|
154
|
-
end
|
155
|
-
|
156
|
-
describe ':verbose option' do
|
157
|
-
let(:options) { {:verbose => true, :evals => ['']} }
|
158
|
-
|
159
|
-
it 'sets the verbose flag (currently unused)' do
|
160
|
-
expect(cli.verbose).to eq(true)
|
161
|
-
end
|
162
|
-
end
|
163
|
-
|
164
|
-
describe ':compile option' do
|
165
|
-
let(:options) { {:compile => true, :evals => ['puts 2342']} }
|
166
|
-
|
167
|
-
it 'outputs the compiled javascript' do
|
168
|
-
expect_output_of{ subject.run }.to include(".$puts(2342)")
|
169
|
-
expect_output_of{ subject.run }.not_to include("2342\n")
|
170
|
-
end
|
171
|
-
end
|
172
|
-
|
173
|
-
describe ':load_paths options' do
|
174
|
-
let(:dir) { File.dirname(file) }
|
175
|
-
let(:filename) { File.basename(file) }
|
176
|
-
let(:options) { {:load_paths => [dir], :requires => [filename], :evals => ['']} }
|
177
|
-
it 'requires files' do
|
178
|
-
expect_output_of{ subject.run }.to eq("hi from opal!\n")
|
179
|
-
end
|
180
|
-
end
|
181
|
-
|
182
|
-
describe ':sexp option' do
|
183
|
-
let(:options) { {evals: ['puts 4'], sexp: true} }
|
184
|
-
it 'prints syntax expressions for the given code' do
|
185
|
-
expect_output_of{ subject.run }.to eq("s(:send, nil, :puts,\n s(:int, 4))\n")
|
186
|
-
end
|
187
|
-
end
|
188
|
-
|
189
|
-
describe ':map option' do
|
190
|
-
let(:map_path) { "#{Dir.mktmpdir 'opal-map'}/file.map" }
|
191
|
-
let(:options) { {map: map_path, evals: ['123']} }
|
192
|
-
|
193
|
-
it 'sets the verbose flag (currently unused)' do
|
194
|
-
expect_output_of{ subject.run }.to eq('')
|
195
|
-
expect(File.read(map_path)).to include(%{"version":3})
|
196
|
-
end
|
197
|
-
end
|
198
|
-
|
199
|
-
describe ':parse_comments option' do
|
200
|
-
let(:code) do
|
201
|
-
<<-CODE
|
202
|
-
# multiline
|
203
|
-
# comment
|
204
|
-
def m
|
205
|
-
end
|
206
|
-
CODE
|
207
|
-
end
|
208
|
-
let(:options) { { parse_comments: true, evals: [code], compile: true } }
|
209
|
-
|
210
|
-
it 'sets $$comment prop for compiled methods' do
|
211
|
-
expect_output_of { subject.run }.to include('$$comments = ["# multiline", "# comment"]')
|
212
|
-
end
|
213
|
-
end
|
214
|
-
|
215
|
-
describe ':enable_source_location' do
|
216
|
-
let(:file) { File.expand_path('../fixtures/source_location_test.rb', __FILE__) }
|
217
|
-
let(:options) { { enable_source_location: true, compile: true, file: File.open(file) } }
|
218
|
-
|
219
|
-
it 'sets $$source_location prop for compiled methods' do
|
220
|
-
expect_output_of { subject.run }.to include("source_location_test.rb', 6]")
|
221
|
-
end
|
222
|
-
end
|
223
|
-
|
224
|
-
private
|
225
|
-
|
226
|
-
def expect_output_of
|
227
|
-
@output, _result = output_and_result_of { yield }
|
228
|
-
expect(@output)
|
229
|
-
end
|
230
|
-
|
231
|
-
def output_and_result_of
|
232
|
-
stdout = described_class.stdout
|
233
|
-
described_class.stdout = fake_stdout
|
234
|
-
result = yield
|
235
|
-
output = fake_stdout.tap(&:rewind).read
|
236
|
-
return output, result
|
237
|
-
ensure
|
238
|
-
described_class.stdout = stdout
|
239
|
-
end
|
240
|
-
end
|