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.
Files changed (493) hide show
  1. checksums.yaml +4 -4
  2. data/.jshintrc +1 -1
  3. data/.travis.yml +14 -2
  4. data/CHANGELOG.md +30 -5
  5. data/HACKING.md +2 -2
  6. data/README.md +4 -5
  7. data/appveyor.yml +3 -4
  8. data/bin +1 -0
  9. data/docs/headless_chrome.md +105 -0
  10. data/docs/rspec.md +2 -19
  11. data/{bin → exe}/opal +0 -0
  12. data/{bin → exe}/opal-build +0 -0
  13. data/{bin → exe}/opal-mspec +0 -0
  14. data/{bin → exe}/opal-repl +0 -0
  15. data/lib/opal.rb +1 -0
  16. data/lib/opal/ast/builder.rb +0 -4
  17. data/lib/opal/builder.rb +69 -15
  18. data/lib/opal/builder_processors.rb +8 -7
  19. data/lib/opal/cli.rb +1 -1
  20. data/lib/opal/cli_options.rb +1 -1
  21. data/lib/opal/cli_runners.rb +1 -1
  22. data/lib/opal/cli_runners/applescript.rb +0 -1
  23. data/lib/opal/cli_runners/chrome.js +135 -0
  24. data/lib/opal/cli_runners/chrome.rb +100 -0
  25. data/lib/opal/cli_runners/nashorn.rb +0 -1
  26. data/lib/opal/cli_runners/node_modules/.bin/chrome-remote-interface +1 -0
  27. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/LICENSE +18 -0
  28. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/README.md +843 -0
  29. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/bin/client.js +326 -0
  30. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/chrome-remote-interface.js +11 -0
  31. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/index.js +39 -0
  32. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/api.js +84 -0
  33. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/chrome.js +289 -0
  34. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/defaults.js +4 -0
  35. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/devtools.js +245 -0
  36. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/external-request.js +23 -0
  37. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/protocol.json +13303 -0
  38. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/websocket-wrapper.js +32 -0
  39. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/package.json +128 -0
  40. data/lib/opal/cli_runners/node_modules/chrome-remote-interface/webpack.config.js +55 -0
  41. data/lib/opal/cli_runners/node_modules/commander/Readme.md +195 -0
  42. data/lib/opal/cli_runners/node_modules/commander/index.js +851 -0
  43. data/lib/opal/cli_runners/node_modules/commander/package.json +92 -0
  44. data/lib/opal/cli_runners/node_modules/ultron/LICENSE +22 -0
  45. data/lib/opal/cli_runners/node_modules/ultron/index.js +138 -0
  46. data/lib/opal/cli_runners/node_modules/ultron/package.json +112 -0
  47. data/lib/opal/cli_runners/node_modules/ws/LICENSE +21 -0
  48. data/lib/opal/cli_runners/node_modules/ws/README.md +259 -0
  49. data/lib/opal/cli_runners/node_modules/ws/SECURITY.md +33 -0
  50. data/lib/opal/cli_runners/node_modules/ws/index.js +15 -0
  51. data/lib/opal/cli_runners/node_modules/ws/lib/BufferUtil.fallback.js +56 -0
  52. data/lib/opal/cli_runners/node_modules/ws/lib/BufferUtil.js +15 -0
  53. data/lib/opal/cli_runners/node_modules/ws/lib/ErrorCodes.js +28 -0
  54. data/lib/opal/cli_runners/node_modules/ws/lib/EventTarget.js +158 -0
  55. data/lib/opal/cli_runners/node_modules/ws/lib/Extensions.js +69 -0
  56. data/lib/opal/cli_runners/node_modules/ws/lib/PerMessageDeflate.js +339 -0
  57. data/lib/opal/cli_runners/node_modules/ws/lib/Receiver.js +520 -0
  58. data/lib/opal/cli_runners/node_modules/ws/lib/Sender.js +438 -0
  59. data/lib/opal/cli_runners/node_modules/ws/lib/Validation.fallback.js +9 -0
  60. data/lib/opal/cli_runners/node_modules/ws/lib/Validation.js +17 -0
  61. data/lib/opal/cli_runners/node_modules/ws/lib/WebSocket.js +705 -0
  62. data/lib/opal/cli_runners/node_modules/ws/lib/WebSocketServer.js +336 -0
  63. data/lib/opal/cli_runners/node_modules/ws/package.json +122 -0
  64. data/lib/opal/cli_runners/nodejs.rb +0 -1
  65. data/lib/opal/cli_runners/package.json +5 -0
  66. data/lib/opal/cli_runners/server.rb +0 -1
  67. data/lib/opal/compiler.rb +8 -18
  68. data/lib/opal/deprecations.rb +1 -1
  69. data/lib/opal/eof_content.rb +36 -0
  70. data/lib/opal/nodes.rb +0 -1
  71. data/lib/opal/nodes/args/kwarg.rb +8 -6
  72. data/lib/opal/nodes/args/kwoptarg.rb +12 -6
  73. data/lib/opal/nodes/call.rb +3 -2
  74. data/lib/opal/nodes/call_special.rb +10 -1
  75. data/lib/opal/nodes/definitions.rb +5 -3
  76. data/lib/opal/nodes/helpers.rb +4 -8
  77. data/lib/opal/nodes/literal.rb +13 -1
  78. data/lib/opal/nodes/logic.rb +19 -32
  79. data/lib/opal/nodes/node_with_args.rb +1 -1
  80. data/lib/opal/nodes/scope.rb +1 -0
  81. data/lib/opal/nodes/super.rb +0 -4
  82. data/lib/opal/nodes/variables.rb +11 -0
  83. data/lib/opal/parser.rb +24 -19
  84. data/lib/opal/path_reader.rb +17 -4
  85. data/lib/opal/rewriter.rb +5 -1
  86. data/lib/opal/rewriters/base.rb +37 -34
  87. data/lib/opal/rewriters/binary_operator_assignment.rb +0 -3
  88. data/lib/opal/rewriters/for_rewriter.rb +93 -0
  89. data/lib/opal/rewriters/hashes/key_duplicates_rewriter.rb +58 -0
  90. data/lib/opal/rewriters/js_reserved_words.rb +5 -8
  91. data/lib/opal/rewriters/logical_operator_assignment.rb +0 -1
  92. data/lib/opal/simple_server.rb +1 -0
  93. data/lib/opal/util.rb +1 -1
  94. data/lib/opal/version.rb +1 -1
  95. data/opal.gemspec +32 -30
  96. data/opal/corelib/array.rb +53 -30
  97. data/opal/corelib/boolean.rb +11 -3
  98. data/opal/corelib/comparable.rb +16 -0
  99. data/opal/corelib/constants.rb +3 -3
  100. data/opal/corelib/enumerable.rb +48 -1
  101. data/opal/corelib/file.rb +54 -11
  102. data/opal/corelib/hash.rb +98 -0
  103. data/opal/corelib/io.rb +2 -2
  104. data/opal/corelib/kernel.rb +28 -11
  105. data/opal/corelib/marshal/read_buffer.rb +288 -150
  106. data/opal/corelib/marshal/write_buffer.rb +27 -2
  107. data/opal/corelib/nil.rb +11 -3
  108. data/opal/corelib/number.rb +90 -20
  109. data/opal/corelib/numeric.rb +3 -3
  110. data/opal/corelib/random.rb +1 -1
  111. data/opal/corelib/range.rb +22 -22
  112. data/opal/corelib/regexp.rb +45 -4
  113. data/opal/corelib/runtime.js +25 -9
  114. data/opal/corelib/string.rb +1 -1
  115. data/opal/corelib/string/encoding.rb +21 -29
  116. data/opal/corelib/string/inheritance.rb +1 -1
  117. data/opal/corelib/struct.rb +0 -5
  118. data/opal/corelib/time.rb +1 -1
  119. data/stdlib/buffer/array.rb +4 -2
  120. data/stdlib/date.rb +46 -12
  121. data/stdlib/headless_chrome.rb +11 -0
  122. data/stdlib/nodejs/file.rb +36 -11
  123. data/stdlib/nodejs/io.rb +8 -0
  124. data/stdlib/nodejs/stacktrace.rb +116 -100
  125. data/stdlib/opal-builder.rb +1 -0
  126. data/stdlib/opal-platform.rb +6 -6
  127. data/stdlib/opal/platform.rb +2 -2
  128. data/stdlib/rbconfig.rb +1 -1
  129. data/stdlib/securerandom.rb +1 -1
  130. data/tasks/testing.rake +58 -26
  131. data/tasks/testing/opal_rspec_smoketest.Gemfile +5 -12
  132. metadata +64 -733
  133. data/lib/opal/cli_runners/phantom.js +0 -69
  134. data/lib/opal/cli_runners/phantomjs.rb +0 -29
  135. data/lib/opal/hike_path_finder.rb +0 -19
  136. data/lib/opal/nodes/for.rb +0 -75
  137. data/spec/README.md +0 -10
  138. data/spec/filters/bugs/array.rb +0 -16
  139. data/spec/filters/bugs/basicobject.rb +0 -13
  140. data/spec/filters/bugs/bigdecimal.rb +0 -146
  141. data/spec/filters/bugs/class.rb +0 -11
  142. data/spec/filters/bugs/comparable.rb +0 -5
  143. data/spec/filters/bugs/complex.rb +0 -3
  144. data/spec/filters/bugs/date.rb +0 -94
  145. data/spec/filters/bugs/enumerable.rb +0 -43
  146. data/spec/filters/bugs/enumerator.rb +0 -40
  147. data/spec/filters/bugs/exception.rb +0 -72
  148. data/spec/filters/bugs/file.rb +0 -8
  149. data/spec/filters/bugs/float.rb +0 -39
  150. data/spec/filters/bugs/hash.rb +0 -15
  151. data/spec/filters/bugs/inheritance.rb +0 -5
  152. data/spec/filters/bugs/integer.rb +0 -30
  153. data/spec/filters/bugs/io.rb +0 -8
  154. data/spec/filters/bugs/kernel.rb +0 -168
  155. data/spec/filters/bugs/language.rb +0 -190
  156. data/spec/filters/bugs/marshal.rb +0 -41
  157. data/spec/filters/bugs/method.rb +0 -60
  158. data/spec/filters/bugs/module.rb +0 -158
  159. data/spec/filters/bugs/numeric.rb +0 -8
  160. data/spec/filters/bugs/pathname.rb +0 -7
  161. data/spec/filters/bugs/proc.rb +0 -37
  162. data/spec/filters/bugs/random.rb +0 -7
  163. data/spec/filters/bugs/range.rb +0 -36
  164. data/spec/filters/bugs/rational.rb +0 -4
  165. data/spec/filters/bugs/regexp.rb +0 -158
  166. data/spec/filters/bugs/set.rb +0 -41
  167. data/spec/filters/bugs/singleton.rb +0 -6
  168. data/spec/filters/bugs/string.rb +0 -98
  169. data/spec/filters/bugs/stringscanner.rb +0 -71
  170. data/spec/filters/bugs/struct.rb +0 -4
  171. data/spec/filters/bugs/time.rb +0 -35
  172. data/spec/filters/bugs/unboundmethod.rb +0 -17
  173. data/spec/filters/unsupported/array.rb +0 -167
  174. data/spec/filters/unsupported/basicobject.rb +0 -14
  175. data/spec/filters/unsupported/bignum.rb +0 -55
  176. data/spec/filters/unsupported/class.rb +0 -4
  177. data/spec/filters/unsupported/delegator.rb +0 -5
  178. data/spec/filters/unsupported/enumerable.rb +0 -11
  179. data/spec/filters/unsupported/enumerator.rb +0 -13
  180. data/spec/filters/unsupported/file.rb +0 -4
  181. data/spec/filters/unsupported/fixnum.rb +0 -14
  182. data/spec/filters/unsupported/float.rb +0 -46
  183. data/spec/filters/unsupported/freeze.rb +0 -75
  184. data/spec/filters/unsupported/hash.rb +0 -43
  185. data/spec/filters/unsupported/integer.rb +0 -3
  186. data/spec/filters/unsupported/kernel.rb +0 -32
  187. data/spec/filters/unsupported/language.rb +0 -22
  188. data/spec/filters/unsupported/marshal.rb +0 -46
  189. data/spec/filters/unsupported/matchdata.rb +0 -33
  190. data/spec/filters/unsupported/math.rb +0 -3
  191. data/spec/filters/unsupported/pathname.rb +0 -3
  192. data/spec/filters/unsupported/privacy.rb +0 -279
  193. data/spec/filters/unsupported/proc.rb +0 -3
  194. data/spec/filters/unsupported/random.rb +0 -4
  195. data/spec/filters/unsupported/range.rb +0 -7
  196. data/spec/filters/unsupported/regexp.rb +0 -69
  197. data/spec/filters/unsupported/set.rb +0 -4
  198. data/spec/filters/unsupported/singleton.rb +0 -6
  199. data/spec/filters/unsupported/string.rb +0 -546
  200. data/spec/filters/unsupported/struct.rb +0 -6
  201. data/spec/filters/unsupported/symbol.rb +0 -20
  202. data/spec/filters/unsupported/taint.rb +0 -30
  203. data/spec/filters/unsupported/thread.rb +0 -7
  204. data/spec/filters/unsupported/time.rb +0 -202
  205. data/spec/lib/builder_processors_spec.rb +0 -27
  206. data/spec/lib/builder_spec.rb +0 -89
  207. data/spec/lib/cli_runners/phantomjs_spec.rb +0 -39
  208. data/spec/lib/cli_spec.rb +0 -240
  209. data/spec/lib/compiler/call_spec.rb +0 -732
  210. data/spec/lib/compiler_spec.rb +0 -294
  211. data/spec/lib/config_spec.rb +0 -110
  212. data/spec/lib/dependency_resolver_spec.rb +0 -40
  213. data/spec/lib/deprecations_spec.rb +0 -16
  214. data/spec/lib/fixtures/complex_sprockets.js.rb.erb +0 -4
  215. data/spec/lib/fixtures/file_with_directives.js +0 -2
  216. data/spec/lib/fixtures/jst_file.js.jst +0 -1
  217. data/spec/lib/fixtures/no_requires.rb +0 -1
  218. data/spec/lib/fixtures/opal_file.rb +0 -2
  219. data/spec/lib/fixtures/require_tree_test.rb +0 -3
  220. data/spec/lib/fixtures/required_file.js +0 -1
  221. data/spec/lib/fixtures/required_tree_test/required_file1.rb +0 -1
  222. data/spec/lib/fixtures/required_tree_test/required_file2.rb +0 -1
  223. data/spec/lib/fixtures/requires.rb +0 -7
  224. data/spec/lib/fixtures/source_location_test.rb +0 -7
  225. data/spec/lib/fixtures/source_map.rb +0 -1
  226. data/spec/lib/fixtures/source_map/subfolder/other_file.rb +0 -1
  227. data/spec/lib/fixtures/sprockets_file.js.rb +0 -3
  228. data/spec/lib/fixtures/sprockets_require_tree_test.rb +0 -3
  229. data/spec/lib/hike_path_finder_spec.rb +0 -23
  230. data/spec/lib/path_reader_spec.rb +0 -36
  231. data/spec/lib/paths_spec.rb +0 -18
  232. data/spec/lib/rewriters/binary_operator_assignment_spec.rb +0 -151
  233. data/spec/lib/rewriters/block_to_iter_spec.rb +0 -28
  234. data/spec/lib/rewriters/dot_js_syntax_spec.rb +0 -108
  235. data/spec/lib/rewriters/explicit_writer_return_spec.rb +0 -186
  236. data/spec/lib/rewriters/js_reserved_words_spec.rb +0 -116
  237. data/spec/lib/rewriters/logical_operator_assignment_spec.rb +0 -202
  238. data/spec/lib/rewriters/opal_engine_check_spec.rb +0 -82
  239. data/spec/lib/rewriters/rubyspec/filters_rewriter_spec.rb +0 -53
  240. data/spec/lib/shared/path_finder_shared.rb +0 -19
  241. data/spec/lib/shared/path_reader_shared.rb +0 -31
  242. data/spec/lib/simple_server_spec.rb +0 -54
  243. data/spec/lib/spec_helper.rb +0 -100
  244. data/spec/mspec-opal/formatters.rb +0 -236
  245. data/spec/mspec-opal/runner.rb +0 -173
  246. data/spec/opal/compiler/irb_spec.rb +0 -44
  247. data/spec/opal/core/arity_spec.rb +0 -142
  248. data/spec/opal/core/array/intersection_spec.rb +0 -38
  249. data/spec/opal/core/array/minus_spec.rb +0 -38
  250. data/spec/opal/core/array/select_spec.rb +0 -14
  251. data/spec/opal/core/array/set_range_to_array_spec.rb +0 -7
  252. data/spec/opal/core/array/union_spec.rb +0 -38
  253. data/spec/opal/core/array/uniq_spec.rb +0 -49
  254. data/spec/opal/core/date_spec.rb +0 -191
  255. data/spec/opal/core/enumerable/all_break_spec.rb +0 -5
  256. data/spec/opal/core/enumerable/any_break_spec.rb +0 -5
  257. data/spec/opal/core/enumerable/collect_break_spec.rb +0 -13
  258. data/spec/opal/core/enumerable/count_break_spec.rb +0 -5
  259. data/spec/opal/core/enumerable/detect_break_spec.rb +0 -5
  260. data/spec/opal/core/enumerable/drop_while_break_spec.rb +0 -5
  261. data/spec/opal/core/enumerable/each_slice_break.rb +0 -6
  262. data/spec/opal/core/enumerable/each_with_index_break_spec.rb +0 -5
  263. data/spec/opal/core/enumerable/each_with_object_break_spec.rb +0 -5
  264. data/spec/opal/core/enumerable/find_all_break_spec.rb +0 -5
  265. data/spec/opal/core/enumerable/find_index_break_spec.rb +0 -5
  266. data/spec/opal/core/enumerable/grep_break_spec.rb +0 -5
  267. data/spec/opal/core/enumerable/max_break_spec.rb +0 -5
  268. data/spec/opal/core/enumerable/max_by_break_spec.rb +0 -5
  269. data/spec/opal/core/enumerable/min_break_spec.rb +0 -5
  270. data/spec/opal/core/enumerable/min_by_break_spec.rb +0 -5
  271. data/spec/opal/core/enumerable/none_break_spec.rb +0 -5
  272. data/spec/opal/core/enumerable/one_break_spec.rb +0 -5
  273. data/spec/opal/core/enumerable/reduce_break_spec.rb +0 -5
  274. data/spec/opal/core/enumerable/take_while_break_spec.rb +0 -5
  275. data/spec/opal/core/enumerator/with_index_spec.rb +0 -6
  276. data/spec/opal/core/exception_spec.rb +0 -30
  277. data/spec/opal/core/fixtures/class.rb +0 -124
  278. data/spec/opal/core/fixtures/class_variables.rb +0 -0
  279. data/spec/opal/core/fixtures/constants.rb +0 -33
  280. data/spec/opal/core/fixtures/require_tree_files/file 1.rb +0 -1
  281. data/spec/opal/core/fixtures/require_tree_files/file 2.rb +0 -1
  282. data/spec/opal/core/fixtures/require_tree_files/file 3.rb +0 -1
  283. data/spec/opal/core/fixtures/require_tree_files/file 4.rb +0 -1
  284. data/spec/opal/core/fixtures/require_tree_files/file 5.rb +0 -1
  285. data/spec/opal/core/fixtures/require_tree_files/nested/nested 1.rb +0 -1
  286. data/spec/opal/core/fixtures/require_tree_files/nested/nested 2.rb +0 -1
  287. data/spec/opal/core/fixtures/require_tree_files/other/other 1.rb +0 -1
  288. data/spec/opal/core/fixtures/require_tree_with_dot/file 1.rb +0 -1
  289. data/spec/opal/core/fixtures/require_tree_with_dot/file 2.rb +0 -1
  290. data/spec/opal/core/fixtures/require_tree_with_dot/file 3.rb +0 -1
  291. data/spec/opal/core/fixtures/require_tree_with_dot/index.rb +0 -3
  292. data/spec/opal/core/hash/has_value_spec.rb +0 -13
  293. data/spec/opal/core/hash/internals_spec.rb +0 -332
  294. data/spec/opal/core/helpers_spec.rb +0 -14
  295. data/spec/opal/core/kernel/Array_spec.rb +0 -10
  296. data/spec/opal/core/kernel/at_exit_spec.rb +0 -70
  297. data/spec/opal/core/kernel/block_given_spec.rb +0 -30
  298. data/spec/opal/core/kernel/class_spec.rb +0 -6
  299. data/spec/opal/core/kernel/define_singleton_method_spec.rb +0 -21
  300. data/spec/opal/core/kernel/equal_value_spec.rb +0 -12
  301. data/spec/opal/core/kernel/extend_spec.rb +0 -21
  302. data/spec/opal/core/kernel/format_spec.rb +0 -122
  303. data/spec/opal/core/kernel/freeze_spec.rb +0 -15
  304. data/spec/opal/core/kernel/instance_eval_spec.rb +0 -28
  305. data/spec/opal/core/kernel/instance_variable_defined_spec.rb +0 -15
  306. data/spec/opal/core/kernel/instance_variable_get_spec.rb +0 -14
  307. data/spec/opal/core/kernel/instance_variable_set_spec.rb +0 -10
  308. data/spec/opal/core/kernel/instance_variables_spec.rb +0 -110
  309. data/spec/opal/core/kernel/loop_spec.rb +0 -23
  310. data/spec/opal/core/kernel/match_spec.rb +0 -5
  311. data/spec/opal/core/kernel/method_spec.rb +0 -31
  312. data/spec/opal/core/kernel/methods_spec.rb +0 -25
  313. data/spec/opal/core/kernel/nil_spec.rb +0 -7
  314. data/spec/opal/core/kernel/p_spec.rb +0 -15
  315. data/spec/opal/core/kernel/printf_spec.rb +0 -11
  316. data/spec/opal/core/kernel/proc_spec.rb +0 -13
  317. data/spec/opal/core/kernel/raise_spec.rb +0 -13
  318. data/spec/opal/core/kernel/rand_spec.rb +0 -19
  319. data/spec/opal/core/kernel/require_tree_spec.rb +0 -18
  320. data/spec/opal/core/kernel/respond_to_spec.rb +0 -44
  321. data/spec/opal/core/kernel/send_spec.rb +0 -56
  322. data/spec/opal/core/kernel/sprintf_spec.rb +0 -5
  323. data/spec/opal/core/language/arguments/mlhs_arg_spec.rb +0 -19
  324. data/spec/opal/core/language/class_spec.rb +0 -55
  325. data/spec/opal/core/language/constant_lookup_spec.rb +0 -38
  326. data/spec/opal/core/language/equal_spec.rb +0 -8
  327. data/spec/opal/core/language/fixtures/array.rb +0 -11
  328. data/spec/opal/core/language/fixtures/block.rb +0 -57
  329. data/spec/opal/core/language/fixtures/break.rb +0 -240
  330. data/spec/opal/core/language/fixtures/ensure.rb +0 -72
  331. data/spec/opal/core/language/fixtures/literal_lambda.rb +0 -7
  332. data/spec/opal/core/language/fixtures/metaclass.rb +0 -33
  333. data/spec/opal/core/language/fixtures/module.rb +0 -24
  334. data/spec/opal/core/language/fixtures/next.rb +0 -128
  335. data/spec/opal/core/language/fixtures/return.rb +0 -118
  336. data/spec/opal/core/language/fixtures/send.rb +0 -111
  337. data/spec/opal/core/language/fixtures/send_1.9.rb +0 -22
  338. data/spec/opal/core/language/fixtures/super.rb +0 -308
  339. data/spec/opal/core/language/fixtures/variables.rb +0 -58
  340. data/spec/opal/core/language/fixtures/yield.rb +0 -28
  341. data/spec/opal/core/language/heredoc_spec.rb +0 -42
  342. data/spec/opal/core/language/keyword_arguments_spec.rb +0 -11
  343. data/spec/opal/core/language/predefined_spec.rb +0 -138
  344. data/spec/opal/core/language/regexp_spec.rb +0 -20
  345. data/spec/opal/core/language/rescue_spec.rb +0 -18
  346. data/spec/opal/core/language/safe_navigator_spec.rb +0 -7
  347. data/spec/opal/core/language/send_spec.rb +0 -222
  348. data/spec/opal/core/language/string_spec.rb +0 -44
  349. data/spec/opal/core/language/ternary_operator_spec.rb +0 -20
  350. data/spec/opal/core/language/versions/array_1.9.rb +0 -39
  351. data/spec/opal/core/language/versions/block_1.9.rb +0 -0
  352. data/spec/opal/core/language/versions/break_1.9.rb +0 -0
  353. data/spec/opal/core/language/versions/case_1.9.rb +0 -20
  354. data/spec/opal/core/language/versions/def_2_0_spec.rb +0 -58
  355. data/spec/opal/core/language/versions/hash_1_9_spec.rb +0 -23
  356. data/spec/opal/core/language/versions/literal_lambda_1.9.rb +0 -143
  357. data/spec/opal/core/language/versions/not_1.9.rb +0 -22
  358. data/spec/opal/core/language/versions/send_1.9.rb +0 -241
  359. data/spec/opal/core/language/versions/symbol_1.9.rb +0 -15
  360. data/spec/opal/core/language/versions/variables_1.9.rb +0 -8
  361. data/spec/opal/core/language_spec.rb +0 -77
  362. data/spec/opal/core/marshal/dump_spec.rb +0 -53
  363. data/spec/opal/core/marshal/load_spec.rb +0 -7
  364. data/spec/opal/core/method/to_proc_spec.rb +0 -28
  365. data/spec/opal/core/module/alias_method_spec.rb +0 -28
  366. data/spec/opal/core/module/ancestors_spec.rb +0 -11
  367. data/spec/opal/core/module/append_features_spec.rb +0 -14
  368. data/spec/opal/core/module/attr_accessor_spec.rb +0 -26
  369. data/spec/opal/core/module/const_defined_spec.rb +0 -84
  370. data/spec/opal/core/module/const_get_spec.rb +0 -85
  371. data/spec/opal/core/module/const_missing_spec.rb +0 -17
  372. data/spec/opal/core/module/const_set_spec.rb +0 -64
  373. data/spec/opal/core/module/constants_spec.rb +0 -49
  374. data/spec/opal/core/module/fixtures/classes.rb +0 -444
  375. data/spec/opal/core/module/method_defined_spec.rb +0 -48
  376. data/spec/opal/core/module/method_lookup_spec.rb +0 -13
  377. data/spec/opal/core/module/module_function_spec.rb +0 -25
  378. data/spec/opal/core/module/name_spec.rb +0 -41
  379. data/spec/opal/core/module/public_method_defined_spec.rb +0 -18
  380. data/spec/opal/core/module/remove_const_spec.rb +0 -22
  381. data/spec/opal/core/module/undef_method_spec.rb +0 -66
  382. data/spec/opal/core/numeric/bit_and_spec.rb +0 -7
  383. data/spec/opal/core/numeric/bit_or_spec.rb +0 -8
  384. data/spec/opal/core/numeric/bit_xor_spec.rb +0 -6
  385. data/spec/opal/core/numeric/ceil_spec.rb +0 -8
  386. data/spec/opal/core/numeric/chr_spec.rb +0 -8
  387. data/spec/opal/core/numeric/comparison_spec.rb +0 -24
  388. data/spec/opal/core/numeric/complement_spec.rb +0 -8
  389. data/spec/opal/core/numeric/divide_spec.rb +0 -10
  390. data/spec/opal/core/numeric/eql_spec.rb +0 -9
  391. data/spec/opal/core/numeric/exponent_spec.rb +0 -33
  392. data/spec/opal/core/numeric/floor_spec.rb +0 -8
  393. data/spec/opal/core/numeric/gt_spec.rb +0 -11
  394. data/spec/opal/core/numeric/gte_spec.rb +0 -12
  395. data/spec/opal/core/numeric/integer_spec.rb +0 -9
  396. data/spec/opal/core/numeric/left_shift_spec.rb +0 -21
  397. data/spec/opal/core/numeric/lt_spec.rb +0 -11
  398. data/spec/opal/core/numeric/lte_spec.rb +0 -12
  399. data/spec/opal/core/numeric/minus_spec.rb +0 -8
  400. data/spec/opal/core/numeric/modulo_spec.rb +0 -19
  401. data/spec/opal/core/numeric/multiply_spec.rb +0 -9
  402. data/spec/opal/core/numeric/next_spec.rb +0 -9
  403. data/spec/opal/core/numeric/ord_spec.rb +0 -9
  404. data/spec/opal/core/numeric/plus_spec.rb +0 -8
  405. data/spec/opal/core/numeric/pred_spec.rb +0 -7
  406. data/spec/opal/core/numeric/right_shift_spec.rb +0 -25
  407. data/spec/opal/core/numeric/step_spec.rb +0 -11
  408. data/spec/opal/core/numeric/succ_spec.rb +0 -9
  409. data/spec/opal/core/numeric/times_spec.rb +0 -36
  410. data/spec/opal/core/numeric/to_f_spec.rb +0 -7
  411. data/spec/opal/core/numeric/to_i_spec.rb +0 -7
  412. data/spec/opal/core/numeric/to_json_spec.rb +0 -8
  413. data/spec/opal/core/numeric/to_s_spec.rb +0 -26
  414. data/spec/opal/core/numeric/uminus_spec.rb +0 -9
  415. data/spec/opal/core/numeric/upto_spec.rb +0 -19
  416. data/spec/opal/core/numeric/zero_spec.rb +0 -7
  417. data/spec/opal/core/object_id_spec.rb +0 -56
  418. data/spec/opal/core/proc/call_spec.rb +0 -21
  419. data/spec/opal/core/proc/element_reference_spec.rb +0 -21
  420. data/spec/opal/core/proc/proc_tricks_spec.rb +0 -7
  421. data/spec/opal/core/runtime/begin_spec.rb +0 -39
  422. data/spec/opal/core/runtime/block_spec.rb +0 -23
  423. data/spec/opal/core/runtime/bridged_classes_spec.rb +0 -123
  424. data/spec/opal/core/runtime/constants_spec.rb +0 -13
  425. data/spec/opal/core/runtime/donate_spec.rb +0 -53
  426. data/spec/opal/core/runtime/eval_spec.rb +0 -5
  427. data/spec/opal/core/runtime/is_a_spec.rb +0 -36
  428. data/spec/opal/core/runtime/main_methods_spec.rb +0 -27
  429. data/spec/opal/core/runtime/method_missing_spec.rb +0 -68
  430. data/spec/opal/core/runtime/method_spec.rb +0 -31
  431. data/spec/opal/core/runtime/operator_call_spec.rb +0 -13
  432. data/spec/opal/core/runtime/paren_spec.rb +0 -14
  433. data/spec/opal/core/runtime/rescue_spec.rb +0 -106
  434. data/spec/opal/core/runtime/return_spec.rb +0 -38
  435. data/spec/opal/core/runtime/singleton_class_spec.rb +0 -13
  436. data/spec/opal/core/runtime/super_spec.rb +0 -223
  437. data/spec/opal/core/runtime/truthy_spec.rb +0 -63
  438. data/spec/opal/core/runtime/variables_spec.rb +0 -20
  439. data/spec/opal/core/runtime_spec.rb +0 -58
  440. data/spec/opal/core/source_map_spec.rb +0 -49
  441. data/spec/opal/core/string_spec.rb +0 -32
  442. data/spec/opal/core/time_spec.rb +0 -38
  443. data/spec/opal/javascript_api_spec.rb +0 -16
  444. data/spec/opal/stdlib/erb/erb_spec.rb +0 -30
  445. data/spec/opal/stdlib/erb/inline_block.opalerb +0 -3
  446. data/spec/opal/stdlib/erb/quoted.opalerb +0 -1
  447. data/spec/opal/stdlib/erb/simple.opalerb +0 -1
  448. data/spec/opal/stdlib/js_spec.rb +0 -66
  449. data/spec/opal/stdlib/json/ext_spec.rb +0 -48
  450. data/spec/opal/stdlib/json/parse_spec.rb +0 -37
  451. data/spec/opal/stdlib/native/alias_native_spec.rb +0 -27
  452. data/spec/opal/stdlib/native/array_spec.rb +0 -11
  453. data/spec/opal/stdlib/native/each_spec.rb +0 -13
  454. data/spec/opal/stdlib/native/element_reference_spec.rb +0 -16
  455. data/spec/opal/stdlib/native/exposure_spec.rb +0 -33
  456. data/spec/opal/stdlib/native/ext_spec.rb +0 -19
  457. data/spec/opal/stdlib/native/hash_spec.rb +0 -67
  458. data/spec/opal/stdlib/native/initialize_spec.rb +0 -17
  459. data/spec/opal/stdlib/native/method_missing_spec.rb +0 -51
  460. data/spec/opal/stdlib/native/native_alias_spec.rb +0 -19
  461. data/spec/opal/stdlib/native/native_class_spec.rb +0 -18
  462. data/spec/opal/stdlib/native/native_module_spec.rb +0 -13
  463. data/spec/opal/stdlib/native/native_reader_spec.rb +0 -22
  464. data/spec/opal/stdlib/native/native_writer_spec.rb +0 -30
  465. data/spec/opal/stdlib/native/new_spec.rb +0 -92
  466. data/spec/opal/stdlib/native/struct_spec.rb +0 -12
  467. data/spec/opal/stdlib/promise/always_spec.rb +0 -49
  468. data/spec/opal/stdlib/promise/error_spec.rb +0 -15
  469. data/spec/opal/stdlib/promise/rescue_spec.rb +0 -53
  470. data/spec/opal/stdlib/promise/then_spec.rb +0 -79
  471. data/spec/opal/stdlib/promise/trace_spec.rb +0 -51
  472. data/spec/opal/stdlib/promise/value_spec.rb +0 -15
  473. data/spec/opal/stdlib/promise/when_spec.rb +0 -34
  474. data/spec/opal/stdlib/source_map_spec.rb +0 -8
  475. data/spec/opal/stdlib/strscan/scan_spec.rb +0 -11
  476. data/spec/opal/stdlib/template/paths_spec.rb +0 -10
  477. data/spec/opal/stdlib/thread/mutex_spec.rb +0 -40
  478. data/spec/opal/stdlib/thread/thread_queue_spec.rb +0 -32
  479. data/spec/opal/stdlib/thread/thread_spec.rb +0 -60
  480. data/spec/ruby_specs +0 -122
  481. data/spec/spec_helper.rb +0 -27
  482. data/spec/support/match_helpers.rb +0 -57
  483. data/spec/support/mspec_rspec_adapter.rb +0 -33
  484. data/spec/support/rewriters_helper.rb +0 -24
  485. data/stdlib/phantomjs.rb +0 -17
  486. data/tasks/testing/sprockets-phantomjs.js +0 -54
  487. data/test/nodejs/fixtures/hello.rb +0 -1
  488. data/test/nodejs/test_dir.rb +0 -17
  489. data/test/nodejs/test_file.rb +0 -87
  490. data/test/nodejs/test_io.rb +0 -18
  491. data/test/nodejs/test_opal_builder.rb +0 -12
  492. data/test/opal/test_keyword.rb +0 -590
  493. data/test/opal/unsupported_and_bugs.rb +0 -39
@@ -1,14 +0,0 @@
1
- opal_unsupported_filter "BasicObject" do
2
- fails "BasicObject#method_missing for a Class raises a NoMethodError when a private method is called"
3
- fails "BasicObject#method_missing for a Class raises a NoMethodError when a protected method is called"
4
- fails "BasicObject#method_missing for a Class with #method_missing defined is called when an private method is called"
5
- fails "BasicObject#method_missing for a Class with #method_missing defined is called when an protected method is called"
6
- fails "BasicObject#method_missing for a Module raises a NoMethodError when a private method is called"
7
- fails "BasicObject#method_missing for a Module raises a NoMethodError when a protected method is called"
8
- fails "BasicObject#method_missing for a Module with #method_missing defined is called when a private method is called"
9
- fails "BasicObject#method_missing for a Module with #method_missing defined is called when a protected method is called"
10
- fails "BasicObject#method_missing for an instance raises a NoMethodError when a private method is called"
11
- fails "BasicObject#method_missing for an instance raises a NoMethodError when a protected method is called"
12
- fails "BasicObject#method_missing for an instance with #method_missing defined is called when an private method is called"
13
- fails "BasicObject#method_missing for an instance with #method_missing defined is called when an protected method is called"
14
- end
@@ -1,55 +0,0 @@
1
- opal_unsupported_filter "Bignum" do
2
- fails "BasicObject#__id__ returns a different value for two Bignum literals"
3
- fails "Complex#== with Numeric returns true when self's imaginary part is 0 and the real part and other have numerical equality"
4
- fails "Complex#fdiv with an imaginary part sets the real part to self's real part fdiv'd with the argument"
5
- fails "Complex#fdiv with no imaginary part sets the real part to self's real part fdiv'd with the argument"
6
- fails "Complex#rect raises an ArgumentError if given any arguments"
7
- fails "Complex#rect returns a two-element Array"
8
- fails "Complex#rect returns an Array"
9
- fails "Complex#rect returns the imaginary part of self as the last element"
10
- fails "Complex#rect returns the real part of self as the first element"
11
- fails "Enumerable#first raises a RangeError when passed a Bignum"
12
- fails "Fixnum#& returns self bitwise AND a Bignum"
13
- fails "Fixnum#& returns self bitwise AND other"
14
- fails "Fixnum#* overflows to Bignum when the result does not fit in Fixnum"
15
- fails "Fixnum#** can raise -1 to a Bignum safely"
16
- fails "Fixnum#/ coerces fixnum and return self divided by other"
17
- fails "Fixnum#^ returns self bitwise EXCLUSIVE OR a Bignum"
18
- fails "Fixnum#^ returns self bitwise EXCLUSIVE OR other"
19
- fails "Fixnum#| returns self bitwise OR other"
20
- fails "Float#fdiv performs floating-point division between self and a Bignum"
21
- fails "Float#numerator converts self to a Rational object then returns its numerator"
22
- fails "Float#quo performs floating-point division between self and a Bignum"
23
- fails "Float#round returns rounded values for big values"
24
- fails "Integer#gcd accepts a Bignum argument"
25
- fails "Integer#gcd works if self is a Bignum"
26
- fails "Integer#gcdlcm accepts a Bignum argument"
27
- fails "Integer#gcdlcm works if self is a Bignum"
28
- fails "Integer#lcm accepts a Bignum argument"
29
- fails "Integer#lcm works if self is a Bignum"
30
- fails "Integer#odd? returns true when self is an odd number"
31
- fails "Integer#rationalize returns a Rational object"
32
- fails "Integer#rationalize uses 1 as the denominator"
33
- fails "Integer#rationalize uses self as the numerator"
34
- fails "Integer#round returns itself rounded if passed a negative value"
35
- fails "Integer#to_r works even if self is a Bignum"
36
- fails "Numeric#denominator returns 1"
37
- fails "Numeric#numerator converts self to a Rational object then returns its numerator"
38
- fails "Numeric#quo raises a ZeroDivisionError when the given Integer is 0"
39
- fails "Rational#** when passed Bignum raises ZeroDivisionError when self is Rational(0) and the exponent is negative"
40
- fails "Rational#** when passed Bignum returns 0.0 when self is < -1 and the exponent is negative"
41
- fails "Rational#** when passed Bignum returns 0.0 when self is > 1 and the exponent is negative"
42
- fails "Rational#** when passed Bignum returns positive Infinity when self < -1"
43
- fails "Rational#** when passed Bignum returns positive Infinity when self is > 1"
44
- fails "Rational#** when passed Bignum returns Rational(-1) when self is Rational(-1) and the exponent is positive and odd"
45
- fails "Rational#** when passed Bignum returns Rational(1) when self is Rational(-1) and the exponent is positive and even"
46
- fails "Rational#round with a precision > 0 doesn't fail when rounding to an absurdly large positive precision"
47
- fails "Marshal.load loads a Bignum 2**90"
48
- fails "Marshal.load for a Integer loads an Integer 2361183241434822606847"
49
- fails "Marshal.load for a Integer loads an Integer -2361183241434822606847"
50
- fails "Marshal.dump with a Bignum dumps a Bignum"
51
- fails "Marshal.dump with a Bignum dumps a Bignum"
52
- fails "Random.new_seed returns a Bignum"
53
- fails "Random.new uses a random seed value if none is supplied"
54
- fails "Random#rand with Bignum typically returns a Bignum"
55
- end
@@ -1,4 +0,0 @@
1
- opal_unsupported_filter "Class" do
2
- fails "Class#initialize is private"
3
- fails "Class.inherited is called when marked as a public class method"
4
- end
@@ -1,5 +0,0 @@
1
- opal_unsupported_filter "Delegator" do
2
- fails "SimpleDelegator.new doesn't forward private method calls even via send or __send__"
3
- fails "SimpleDelegator.new doesn't forward private method calls"
4
- fails "SimpleDelegator.new forwards protected method calls"
5
- end
@@ -1,11 +0,0 @@
1
- opal_unsupported_filter "Enumerable" do
2
- fails "Enumerable#chunk does not return elements for which the block returns :_separator"
3
- fails "Enumerable#chunk raises a RuntimeError if the block returns a Symbol starting with an underscore other than :_alone or :_separator"
4
- fails "Enumerable#chunk with [initial_state] yields an element and an object value-equal but not identical to the object passed to #chunk"
5
- fails "Enumerable#entries returns a tainted array if self is tainted"
6
- fails "Enumerable#entries returns an untrusted array if self is untrusted"
7
- fails "Enumerable#group_by returns a tainted hash if self is tainted"
8
- fails "Enumerable#group_by returns an untrusted hash if self is untrusted"
9
- fails "Enumerable#to_a returns a tainted array if self is tainted"
10
- fails "Enumerable#to_a returns an untrusted array if self is untrusted"
11
- end
@@ -1,13 +0,0 @@
1
- opal_unsupported_filter "Enumerator" do
2
- fails "Enumerator#next cannot be called again until the enumerator is rewound"
3
- fails "Enumerator#next raises a StopIteration exception at the end of the stream"
4
- fails "Enumerator#next returns the next element of the enumeration"
5
- fails "Enumerator#rewind calls the enclosed object's rewind method if one exists"
6
- fails "Enumerator#rewind clears a pending #feed value"
7
- fails "Enumerator#rewind does nothing if the object doesn't have a #rewind method"
8
- fails "Enumerator#rewind has no effect if called multiple, consecutive times"
9
- fails "Enumerator#rewind has no effect on a new enumerator"
10
- fails "Enumerator#rewind resets the enumerator to its initial state"
11
- fails "Enumerator#rewind returns self"
12
- fails "Enumerator#rewind works with peek to reset the position"
13
- end
@@ -1,4 +0,0 @@
1
- opal_unsupported_filter "File" do
2
- fails "File.join doesn't mutate the object when calling #to_str"
3
- end
4
-
@@ -1,14 +0,0 @@
1
- opal_unsupported_filter "Fixnum" do
2
- fails "Fixnum#+ overflows to Bignum when the result does not fit in Fixnum"
3
- fails "Fixnum#- returns a Bignum only if the result is too large to be a Fixnum"
4
- fails "Fixnum#<< with n << m returns -1 when n < 0, m < 0 and n > -(2**-m)"
5
- fails "Fixnum#<< with n << m returns 0 when m < 0 and m is a Bignum"
6
- fails "Fixnum#<< with n << m returns 0 when n > 0, m < 0 and n < 2**-m"
7
- fails "Fixnum#<< with n << m returns a Bignum == fixnum_max * 2 when fixnum_max << 1 and n > 0"
8
- fails "Fixnum#<< with n << m returns a Bignum == fixnum_min * 2 when fixnum_min << 1 and n < 0"
9
- fails "Fixnum#>> with n >> m returns -1 when n < 0, m > 0 and n > -(2**m)"
10
- fails "Fixnum#>> with n >> m returns 0 when m is a Bignum"
11
- fails "Fixnum#>> with n >> m returns 0 when n > 0, m > 0 and n < 2**m"
12
- fails "Fixnum#>> with n >> m returns a Bignum == fixnum_max * 2 when fixnum_max >> -1 and n > 0"
13
- fails "Fixnum#>> with n >> m returns a Bignum == fixnum_min * 2 when fixnum_min >> -1 and n < 0"
14
- end
@@ -1,46 +0,0 @@
1
- opal_unsupported_filter "Float" do
2
- fails "BasicObject#__id__ returns a different value for two Float literals"
3
- fails "Complex#/ with Fixnum raises a ZeroDivisionError when given zero"
4
- fails "Complex#eql? returns false when the imaginary parts are of different classes"
5
- fails "Complex#eql? returns false when the real parts are of different classes"
6
- fails "Complex#quo with Fixnum raises a ZeroDivisionError when given zero"
7
- fails "Complex#rationalize raises RangeError if self has 0.0 imaginary part"
8
- fails "Complex#to_f when the imaginary part is Float 0.0 raises RangeError"
9
- fails "Complex#to_i when the imaginary part is Float 0.0 raises RangeError"
10
- fails "Complex#to_r when the imaginary part is Float 0.0 raises RangeError"
11
- fails "Complex#to_s returns 1+0.0i for Complex(1, 0.0)"
12
- fails "Complex#to_s returns 1-0.0i for Complex(1, -0.0)"
13
- fails "Fixnum#% raises a ZeroDivisionError when the given argument is 0 and a Float"
14
- fails "Fixnum#% raises a ZeroDivisionError when the given argument is 0"
15
- fails "Fixnum#& raises a TypeError when passed a Float"
16
- fails "Fixnum#/ raises a ZeroDivisionError if the given argument is zero and not a Float"
17
- fails "Fixnum#/ returns self divided by the given argument"
18
- fails "Fixnum#/ supports dividing negative numbers"
19
- fails "Fixnum#coerce when given a String returns an array containing two Floats"
20
- fails "Fixnum#div coerces self and the given argument to Floats and returns self divided by other as Fixnum"
21
- fails "Fixnum#divmod raises a TypeError when given a non-Integer"
22
- fails "Fixnum#^ raises a TypeError when passed a Float"
23
- fails "Fixnum#| raises a TypeError when passed a Float"
24
- fails "Float constant MAX_10_EXP is 308"
25
- fails "Float constant MAX_EXP is 1024"
26
- fails "Float constant MIN is 2.2250738585072e-308"
27
- fails "Float constant MIN_10_EXP is -308"
28
- fails "Float constant MIN_EXP is -1021"
29
- fails "Float#coerce returns [other, self] both as Floats"
30
- fails "Float#eql? returns false if other is not a Float"
31
- fails "Float#to_s emits '-' for -0.0"
32
- fails "Float#to_s emits a trailing '.0' for a whole number"
33
- fails "Float#to_s emits a trailing '.0' for the mantissa in e format"
34
- fails "Float#to_s returns '0.0' for 0.0"
35
- fails "Math.gamma returns approximately (n-1)! given n for n between 24 and 30" # precision error
36
- fails "Rational#% returns a Float value when the argument is Float"
37
- fails "Rational#** raises ZeroDivisionError for Rational(0, 1) passed a negative Integer"
38
- fails "Rational#** when passed Integer returns the Rational value of self raised to the passed argument"
39
- fails "Rational#/ when passed an Integer raises a ZeroDivisionError when passed 0"
40
- fails "Rational#coerce returns the passed argument, self as Float, when given a Float"
41
- fails "Rational#divmod when passed an Integer returns the quotient as Integer and the remainder as Rational"
42
- fails "Struct#eql? returns false if any corresponding elements are not #eql?" # Rubyspec uses 1.eql?(1.0) which always returns true in compiled JS
43
- fails "Numeric#step with positional args when no block is given returned Enumerator size when self, stop or step is a Float and step is positive returns the difference between self and stop divided by the number of steps"
44
- fails "Numeric#step with keyword arguments when no block is given returned Enumerator size when self, stop or step is a Float and step is positive returns the difference between self and stop divided by the number of steps"
45
- fails "Numeric#step with mixed arguments when no block is given returned Enumerator size when self, stop or step is a Float and step is positive returns the difference between self and stop divided by the number of steps"
46
- end
@@ -1,75 +0,0 @@
1
- opal_unsupported_filter "freezing" do
2
- fails "A method definition inside a metaclass scope raises RuntimeError if frozen"
3
- fails "A singleton method definition raises RuntimeError if frozen"
4
- fails "Array#delete returns nil on a frozen array if a modification does not take place"
5
- fails "Array#dup does not copy frozen status from the original"
6
- fails "Array#rotate does not mutate the receiver"
7
- fails "Array#rotate! raises a RuntimeError on a frozen array"
8
- fails "Array#select! on frozen objects returns an Enumerator if no block is given"
9
- fails "Array#sort does not freezes self during being sorted"
10
- fails "Array#sort_by! raises a RuntimeError on a frozen array"
11
- fails "Array#sort_by! raises a RuntimeError on an empty frozen array"
12
- fails "Date constants freezes MONTHNAMES, DAYNAMES, ABBR_MONTHNAMES, ABBR_DAYSNAMES"
13
- fails "Enumerable#sort doesn't raise an error if #to_a returns a frozen Array"
14
- fails "Enumerator#initialize on frozen instance raises a RuntimeError"
15
- fails "Hash literal does not change encoding of literal string keys during creation"
16
- fails "Hash literal freezes string keys on initialization"
17
- fails "Hash#== compares keys with matching hash codes via eql?"
18
- fails "Hash#[]= doesn't duplicate and freeze already frozen string keys"
19
- fails "Hash#delete_if returns an Enumerator if called on a frozen instance"
20
- fails "Hash#each returns an Enumerator if called on a frozen instance"
21
- fails "Hash#each_key returns an Enumerator if called on a frozen instance"
22
- fails "Hash#each_pair returns an Enumerator if called on a frozen instance"
23
- fails "Hash#each_value returns an Enumerator if called on a frozen instance"
24
- fails "Hash#eql? compares keys with matching hash codes via eql?"
25
- fails "Hash#keep_if returns an Enumerator if called on a frozen instance"
26
- fails "Hash#reject returns an Enumerator if called on a frozen instance"
27
- fails "Hash#select returns an Enumerator if called on a frozen instance"
28
- fails "Hash#select! returns an Enumerator if called on a frozen instance"
29
- fails "Hash#store doesn't duplicate and freeze already frozen string keys"
30
- fails "Kernel#clone copies frozen state from the original"
31
- fails "Kernel#clone copies frozen? and tainted?" # Expected false to be true
32
- fails "Kernel#extend on frozen instance raises a RuntimeError"
33
- fails "Kernel#extend on frozen instance raises an ArgumentError when no arguments given"
34
- fails "Kernel#freeze causes instance_variable_set to raise RuntimeError"
35
- fails "Kernel#freeze causes mutative calls to raise RuntimeError"
36
- fails "Kernel#freeze on a Float has no effect since it is already frozen"
37
- fails "Kernel#freeze on a Symbol has no effect since it is already frozen"
38
- fails "Kernel#freeze on integers has no effect since they are already frozen"
39
- fails "Kernel#freeze on true, false and nil has no effect since they are already frozen"
40
- fails "Kernel#freeze prevents self from being further modified"
41
- fails "Kernel#freeze returns self"
42
- fails "Kernel#frozen? on a Float returns true"
43
- fails "Kernel#frozen? on a Symbol returns true"
44
- fails "Kernel#frozen? on integers returns true"
45
- fails "Kernel#frozen? on true, false and nil returns true"
46
- fails "Kernel#frozen? returns true if self is frozen"
47
- fails "Kernel#instance_variable_set on frozen objects keeps stored object after any exceptions"
48
- fails "Kernel#instance_variable_set on frozen objects raises a RuntimeError when passed replacement is different from stored object"
49
- fails "Kernel#instance_variable_set on frozen objects raises a RuntimeError when passed replacement is identical to stored object"
50
- fails "MatchData#string returns a frozen copy of the match string"
51
- fails "Module#alias_method raises RuntimeError if frozen"
52
- fails "Module#append_features when other is frozen raises a RuntimeError before appending self"
53
- fails "Module#autoload on a frozen module raises a RuntimeError before setting the name"
54
- fails "Module#class_variable_set raises a RuntimeError when self is frozen"
55
- fails "Module#const_set on a frozen module raises a RuntimeError before setting the name"
56
- fails "Module#define_method raises a RuntimeError if frozen"
57
- fails "Module#extend_object when given a frozen object raises a RuntimeError before extending the object"
58
- fails "Module#remove_method on frozen instance does not raise exceptions when no arguments given"
59
- fails "Module#remove_method on frozen instance raises a RuntimeError when passed a missing name"
60
- fails "Module#remove_method on frozen instance raises a RuntimeError when passed a name"
61
- fails "Module#remove_method on frozen instance raises a TypeError when passed a not name"
62
- fails "Module#undef_method on frozen instance does not raise exceptions when no arguments given"
63
- fails "Module#undef_method on frozen instance raises a RuntimeError when passed a missing name"
64
- fails "Module#undef_method on frozen instance raises a RuntimeError when passed a name"
65
- fails "Module#undef_method on frozen instance raises a TypeError when passed a not name"
66
- fails "OpenStruct#method_missing when called with a method name ending in '=' raises a TypeError when self is frozen"
67
- fails "String#+@ returns an unfrozen copy of a frozen String"
68
- fails "String#+@ returns self if the String is not frozen"
69
- fails "String#-@ returns a frozen copy if the String is not frozen"
70
- fails "String#-@ returns self if the String is frozen"
71
- fails "String#clone copies frozen state"
72
- fails "String#freeze doesn't produce the same object for different instances of literals in the source"
73
- fails "String#initialize with no arguments does not raise an exception when frozen"
74
- fails "StringScanner#initialize returns an instance of StringScanner"
75
- end
@@ -1,43 +0,0 @@
1
- opal_unsupported_filter "Hash" do
2
- fails "Hash#assoc only returns the first matching key-value pair for identity hashes"
3
- fails "Hash#clear raises a RuntimeError if called on a frozen instance"
4
- fails "Hash#compare_by_identity raises a RuntimeError on frozen hashes"
5
- fails "Hash#default= raises a RuntimeError if called on a frozen instance"
6
- fails "Hash#default_proc= raises a RuntimeError if self is frozen"
7
- fails "Hash#delete raises a RuntimeError if called on a frozen instance"
8
- fails "Hash#delete_if raises a RuntimeError if called on a frozen instance"
9
- fails "Hash#initialize is private"
10
- fails "Hash#initialize raises a RuntimeError if called on a frozen instance"
11
- fails "Hash#inspect returns a tainted string if self is tainted and not empty"
12
- fails "Hash#inspect returns an untrusted string if self is untrusted and not empty"
13
- fails "Hash#keep_if raises a RuntimeError if called on a frozen instance"
14
- fails "Hash#merge! checks frozen status before coercing an object with #to_hash"
15
- fails "Hash#merge! raises a RuntimeError on a frozen instance that is modified"
16
- fails "Hash#merge! raises a RuntimeError on a frozen instance that would not be modified"
17
- fails "Hash#rehash raises a RuntimeError if called on a frozen instance"
18
- fails "Hash#reject! raises a RuntimeError if called on a frozen instance that is modified"
19
- fails "Hash#reject! raises a RuntimeError if called on a frozen instance that would not be modified"
20
- fails "Hash#reject! returns an Enumerator if called on a frozen instance"
21
- fails "Hash#replace raises a RuntimeError if called on a frozen instance that is modified"
22
- fails "Hash#replace raises a RuntimeError if called on a frozen instance that would not be modified"
23
- fails "Hash#select! raises a RuntimeError if called on a frozen instance that would not be modified"
24
- fails "Hash#select! raises a RuntimeError if called on an empty frozen instance"
25
- fails "Hash#shift raises a RuntimeError if called on a frozen instance"
26
- fails "Hash#store duplicates and freezes string keys"
27
- fails "Hash#store raises a RuntimeError if called on a frozen instance"
28
- fails "Hash#to_a returns a tainted array if self is tainted"
29
- fails "Hash#to_a returns an untrusted array if self is untrusted"
30
- fails "Hash#to_proc the returned proc raises ArgumentError if not passed exactly one argument"
31
- fails "Hash#to_proc the returned proc passed as a block to instance_exec always retrieves the original hash's values"
32
- fails "Hash#to_s returns a tainted string if self is tainted and not empty"
33
- fails "Hash#to_s returns an untrusted string if self is untrusted and not empty"
34
- fails "Hash#update checks frozen status before coercing an object with #to_hash"
35
- fails "Hash#update raises a RuntimeError on a frozen instance that is modified"
36
- fails "Hash#update raises a RuntimeError on a frozen instance that would not be modified"
37
- fails "Hash#[]= duplicates and freezes string keys"
38
- fails "Hash#[]= raises a RuntimeError if called on a frozen instance"
39
- fails "Hash#inspect does not raise if inspected result is not default external encoding" # Mock 'utf_16be' expected to receive 'inspect' exactly 1 times but received it 0 times
40
- fails "Hash#inspect does not raise if inspected result is not default external encoding" # NoMethodError: undefined method `encode!' for "\"utf_16be あ\"":String
41
- fails "Hash#to_s does not raise if inspected result is not default external encoding" # Mock 'utf_16be' expected to receive 'inspect' exactly 1 times but received it 0 times
42
- fails "Hash#to_s does not raise if inspected result is not default external encoding" # NoMethodError: undefined method `encode!' for "\"utf_16be あ\"":String
43
- end
@@ -1,3 +0,0 @@
1
- opal_unsupported_filter "Integer" do
2
- fails "Integer#even? returns true for a Bignum when it is an even number"
3
- end
@@ -1,32 +0,0 @@
1
- opal_unsupported_filter "Kernel" do
2
- fails "Kernel has private instance method Array()"
3
- fails "Kernel has private instance method Hash()"
4
- fails "Kernel#Float is a private method"
5
- fails "Kernel#Float raises a TypeError if #to_f returns an Integer"
6
- fails "Kernel#Integer calls to_i on Rationals"
7
- fails "Kernel#Integer is a private method"
8
- fails "Kernel#Integer returns a Fixnum or Bignum object"
9
- fails "Kernel#String is a private method"
10
- fails "Kernel#eql? is a public instance method"
11
- fails "Kernel#format is a private method"
12
- fails "Kernel#sleep accepts a Rational"
13
- fails "Kernel#sleep is a private method"
14
- fails "Kernel#sleep pauses execution indefinitely if not given a duration"
15
- fails "Kernel#sprintf is a private method"
16
- fails "Kernel#to_s returns a tainted result if self is tainted"
17
- fails "Kernel#to_s returns an untrusted result if self is untrusted"
18
- fails "Kernel#warn is a private method"
19
- fails "Kernel.Float raises a TypeError if #to_f returns an Integer"
20
- fails "Kernel.Integer calls to_i on Rationals"
21
- fails "Kernel.Integer returns a Fixnum or Bignum object"
22
- fails "Kernel#clone preserves tainted state from the original"
23
- fails "Kernel#clone preserves untrusted state from the original"
24
- fails "Kernel#clone raises a TypeError for Symbol"
25
- fails "Kernel#dup does not copy frozen state from the original"
26
- fails "Kernel#dup preserves tainted state from the original"
27
- fails "Kernel#dup preserves untrusted state from the original"
28
- fails "Kernel#dup raises a TypeError for Symbol"
29
- fails "Kernel.fail is a private method"
30
- fails "Kernel#raise is a private method"
31
- fails "Kernel#inspect returns an untrusted string if self is untrusted"
32
- end
@@ -1,22 +0,0 @@
1
- opal_unsupported_filter "language" do
2
- fails "Magic comment can be after the shebang"
3
- fails "Magic comment can take Emacs style"
4
- fails "Magic comment can take vim style"
5
- fails "Magic comment determines __ENCODING__"
6
- fails "Magic comment is case-insensitive"
7
- fails "Magic comment must be at the first line"
8
- fails "Magic comment must be the first token of the line"
9
- fails "The defined? keyword for pseudo-variables returns 'expression' for __ENCODING__"
10
- fails "The defined? keyword when called with a method name having a module as receiver returns nil if the method is private"
11
- fails "The defined? keyword when called with a method name having a module as receiver returns nil if the method is protected"
12
- fails "The private keyword changes the visibility of the existing method in the subclass"
13
- fails "The private keyword changes visibility of previously called method"
14
- fails "The private keyword changes visiblity of previously called methods with same send/call site"
15
- fails "The private keyword is overridden when a new class is opened"
16
- fails "The private keyword marks following methods as being private"
17
- fails "Ruby String literals with a magic frozen comment produce different objects for literals with the same content in different files if the other file doesn't have the comment"
18
- fails "Ruby String literals with a magic frozen comment produce different objects for literals with the same content in different files if they have different encodings"
19
- fails "Ruby String literals with a magic frozen comment produce the same object each time"
20
- fails "Ruby String literals with a magic frozen comment produce the same object for literals with the same content"
21
- fails "Ruby String literals with a magic frozen comment produce the same object for literals with the same content in different files"
22
- end
@@ -1,46 +0,0 @@
1
- opal_unsupported_filter "Marshal" do
2
- # Marshal.load
3
- fails "Marshal.load loads a Random" # depends on the reading from the filesystem
4
- fails "Marshal.load when source is tainted returns a tainted object"
5
- fails "Marshal.load when source is tainted does not taint Symbols"
6
- fails "Marshal.load when source is tainted does not taint Fixnums"
7
- fails "Marshal.load when source is tainted does not taint Floats"
8
- fails "Marshal.load when source is tainted does not taint Bignums"
9
- fails "Marshal.load returns an untainted object if source is untainted"
10
- fails "Marshal.load preserves taintedness of nested structure"
11
- fails "Marshal.load returns a trusted object if source is trusted"
12
- fails "Marshal.load returns an untrusted object if source is untrusted"
13
- fails "Marshal.load for a String loads a string through StringIO stream"
14
- fails "Marshal.load raises EOFError on loading an empty file"
15
- fails "Marshal.load for a String loads a string with an ivar" # depends on string mutation
16
- fails "Marshal.load for a String loads a string having ivar with ref to self" # depends on string mutation
17
- fails "Marshal.load for a wrapped C pointer loads"
18
- fails "Marshal.load for a wrapped C pointer raises TypeError when the local class is missing _load_data"
19
- fails "Marshal.load for a wrapped C pointer raises ArgumentError when the local class is a regular object"
20
- fails "Marshal.load for an Array loads an array having ivar" # for some reason depends on String#instance_variable_set which is not supported. replaced with test in spec/opal
21
- fails "Marshal.load raises a TypeError with bad Marshal version" # depends on String#[]=
22
- fails "Marshal.load for a Hash preserves hash ivars when hash contains a string having ivar" # depends on String#instance_variable_set
23
-
24
- # Marshal.dump
25
- fails "Marshal.dump returns a tainted string if object is tainted"
26
- fails "Marshal.dump returns a tainted string if nested object is tainted"
27
- fails "Marshal.dump returns a trusted string if object is trusted"
28
- fails "Marshal.dump returns an untrusted string if object is untrusted"
29
- fails "Marshal.dump returns an untrusted string if nested object is untrusted"
30
- fails "Marshal.dump returns an untainted string if object is untainted"
31
- fails "Marshal.dump when passed an IO writes the serialized data to the IO-Object"
32
- fails "Marshal.dump when passed an IO returns the IO-Object"
33
- fails "Marshal.dump when passed an IO raises an Error when the IO-Object does not respond to #write"
34
- fails "Marshal.dump raises a TypeError if dumping a IO/File instance"
35
- fails "Marshal.dump with a Regexp dumps a Regexp" # depends on utf-8 encoding which is not required, replaced with test in spec/opal
36
- fails "Marshal.dump with a String dumps a String with instance variables" # depends on string mutation
37
- fails "Marshal.dump with a Float dumps a Float" # depends on the string mutating, replaced with test in spec/opal
38
- fails "Marshal.dump with a Regexp dumps a Regexp with flags" # depends on string encoding, replaced with test in spec/opal
39
- fails "Marshal.dump with a Regexp dumps an extended Regexp" # depends on string encoding, replaced with test in spec/opal
40
- fails "Marshal.dump with a String dumps a String extended with a Module" # depends on string mutation
41
- fails "Marshal.dump dumps subsequent appearances of a symbol as a link" # depends on Symbol-s
42
- fails "Marshal.dump with an object responding to #marshal_dump dumps the object returned by #marshal_dump" # depends on Symbol-s, replaced with test in spec/opal
43
- fails "Marshal.dump with a Regexp dumps a binary Regexp"
44
- fails "Marshal.dump with a Regexp dumps a UTF-8 Regexp"
45
- fails "Marshal.dump with a Regexp dumps a Regexp in another encoding"
46
- end
@@ -1,33 +0,0 @@
1
- opal_unsupported_filter "MatchData" do
2
- fails "MatchData#begin returns nil when the nth match isn't found"
3
- fails "MatchData#begin returns the offset for multi byte strings"
4
- fails "MatchData#begin returns the offset of the start of the nth element"
5
- fails "MatchData#end returns nil when the nth match isn't found"
6
- fails "MatchData#end returns the offset for multi byte strings"
7
- fails "MatchData#end returns the offset of the end of the nth element"
8
- fails "MatchData#names equals Regexp#names"
9
- fails "MatchData#names returns an Array"
10
- fails "MatchData#names returns each name only once"
11
- fails "MatchData#names returns the names of the named capture groups"
12
- fails "MatchData#names returns [] if there were no named captures"
13
- fails "MatchData#names sets each element to a String"
14
- fails "MatchData#offset returns a two element array with the begin and end of the nth match"
15
- fails "MatchData#offset returns the offset for multi byte strings"
16
- fails "MatchData#offset returns [nil, nil] when the nth match isn't found"
17
- fails "MatchData#post_match keeps taint status from the source string"
18
- fails "MatchData#post_match keeps untrusted status from the source string"
19
- fails "MatchData#pre_match keeps taint status from the source string"
20
- fails "MatchData#pre_match keeps untrusted status from the source string"
21
- fails "MatchData#regexp returns the pattern used in the match"
22
- fails "MatchData#[Symbol] raises an IndexError if there is no named match corresponding to the String"
23
- fails "MatchData#[Symbol] raises an IndexError if there is no named match corresponding to the Symbol"
24
- fails "MatchData#[Symbol] returns matches in the String's encoding"
25
- fails "MatchData#[Symbol] returns nil on non-matching named matches"
26
- fails "MatchData#[Symbol] returns the corresponding named match when given a String"
27
- fails "MatchData#[Symbol] returns the corresponding named match when given a Symbol"
28
- fails "MatchData#[Symbol] returns the last match when multiple named matches exist with the same name"
29
- fails "MatchData#[Symbol] returns the matching version of multiple corresponding named match"
30
- fails "MatchData#begin returns the offset for multi byte strings with unicode regexp"
31
- fails "MatchData#end returns the offset for multi byte strings with unicode regexp"
32
- fails "MatchData#offset returns the offset for multi byte strings with unicode regexp"
33
- end
@@ -1,3 +0,0 @@
1
- opal_unsupported_filter "Math" do
2
- fails "Math#atanh is a private instance method"
3
- end