opal 1.0.5 → 1.1.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (394) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +14 -12
  3. data/.gitattributes +1 -1
  4. data/.github/workflows/build.yml +15 -10
  5. data/.jshintrc +1 -1
  6. data/.overcommit.yml +35 -0
  7. data/.rubocop.yml +44 -7
  8. data/{.rubocop_todo.yml → .rubocop/todo.yml} +4 -5
  9. data/CHANGELOG.md +87 -2
  10. data/Gemfile +1 -2
  11. data/HACKING.md +2 -9
  12. data/README.md +20 -17
  13. data/UNRELEASED.md +108 -0
  14. data/benchmark-ips/bm_array_pop_1.rb +8 -0
  15. data/benchmark-ips/bm_array_shift.rb +7 -0
  16. data/benchmark-ips/class_shovel_vs_singleton_class.rb +16 -0
  17. data/bin/build-browser-source-map-support +5 -0
  18. data/bin/format-filters +54 -0
  19. data/bin/remove-filters +39 -0
  20. data/docs/roda-sprockets.md +86 -0
  21. data/docs/sinatra.md +5 -12
  22. data/examples/rack/Gemfile +1 -0
  23. data/examples/rack/app/application.rb +3 -0
  24. data/examples/rack/config.ru +5 -4
  25. data/exe/opal-repl +2 -83
  26. data/lib/opal/ast/builder.rb +1 -1
  27. data/lib/opal/builder.rb +2 -10
  28. data/lib/opal/builder_processors.rb +1 -1
  29. data/lib/opal/cli_runners.rb +27 -37
  30. data/lib/opal/cli_runners/applescript.rb +5 -44
  31. data/lib/opal/cli_runners/chrome.js +7 -35
  32. data/lib/opal/cli_runners/chrome.rb +75 -17
  33. data/lib/opal/cli_runners/compiler.rb +17 -0
  34. data/lib/opal/cli_runners/nashorn.rb +9 -43
  35. data/lib/opal/cli_runners/nodejs.rb +18 -47
  36. data/lib/opal/cli_runners/server.rb +18 -6
  37. data/lib/opal/cli_runners/source-map-support-browser.js +6445 -0
  38. data/lib/opal/cli_runners/source-map-support.js +639 -0
  39. data/lib/opal/cli_runners/system_runner.rb +45 -0
  40. data/lib/opal/compiler.rb +57 -29
  41. data/lib/opal/config.rb +0 -5
  42. data/lib/opal/erb.rb +1 -1
  43. data/lib/opal/magic_comments.rb +34 -0
  44. data/lib/opal/nodes/args/arity_check.rb +2 -1
  45. data/lib/opal/nodes/base.rb +1 -1
  46. data/lib/opal/nodes/call.rb +1 -4
  47. data/lib/opal/nodes/def.rb +2 -0
  48. data/lib/opal/nodes/iter.rb +1 -1
  49. data/lib/opal/nodes/literal.rb +19 -14
  50. data/lib/opal/nodes/logic.rb +5 -80
  51. data/lib/opal/nodes/masgn.rb +2 -0
  52. data/lib/opal/nodes/rescue.rb +1 -1
  53. data/lib/opal/nodes/super.rb +24 -10
  54. data/lib/opal/nodes/top.rb +5 -4
  55. data/lib/opal/parser/with_c_lexer.rb +2 -1
  56. data/lib/opal/parser/with_ruby_lexer.rb +1 -1
  57. data/lib/opal/path_reader.rb +2 -2
  58. data/lib/opal/paths.rb +8 -5
  59. data/lib/opal/repl.rb +103 -0
  60. data/lib/opal/rewriter.rb +4 -0
  61. data/lib/opal/rewriters/for_rewriter.rb +1 -1
  62. data/lib/opal/rewriters/js_reserved_words.rb +7 -7
  63. data/lib/opal/rewriters/numblocks.rb +31 -0
  64. data/lib/opal/rewriters/returnable_logic.rb +33 -0
  65. data/lib/opal/version.rb +1 -1
  66. data/opal.gemspec +25 -25
  67. data/opal/corelib/array.rb +160 -118
  68. data/opal/corelib/array/pack.rb +5 -3
  69. data/opal/corelib/basic_object.rb +4 -4
  70. data/opal/corelib/class.rb +2 -1
  71. data/opal/corelib/comparable.rb +49 -31
  72. data/opal/corelib/constants.rb +5 -5
  73. data/opal/corelib/enumerable.rb +108 -46
  74. data/opal/corelib/enumerator.rb +27 -12
  75. data/opal/corelib/file.rb +3 -1
  76. data/opal/corelib/hash.rb +6 -1
  77. data/opal/corelib/helpers.rb +8 -28
  78. data/opal/corelib/io.rb +12 -7
  79. data/opal/corelib/kernel.rb +45 -14
  80. data/opal/corelib/kernel/format.rb +3 -1
  81. data/opal/corelib/math.rb +8 -6
  82. data/opal/corelib/method.rb +8 -0
  83. data/opal/corelib/module.rb +17 -2
  84. data/opal/corelib/number.rb +3 -12
  85. data/opal/corelib/proc.rb +16 -0
  86. data/opal/corelib/random/mersenne_twister.rb +147 -0
  87. data/opal/corelib/range.rb +3 -13
  88. data/opal/corelib/regexp.rb +10 -6
  89. data/opal/corelib/runtime.js +208 -81
  90. data/opal/corelib/string.rb +55 -49
  91. data/opal/corelib/string/encoding.rb +109 -32
  92. data/opal/corelib/string/unpack.rb +2 -17
  93. data/opal/corelib/struct.rb +14 -1
  94. data/opal/corelib/time.rb +4 -0
  95. data/opal/opal.rb +1 -1
  96. data/opal/opal/mini.rb +1 -1
  97. data/package.json +1 -0
  98. data/spec/README.md +10 -0
  99. data/spec/filters/bugs/array.rb +76 -0
  100. data/spec/filters/bugs/base64.rb +10 -0
  101. data/spec/filters/bugs/basicobject.rb +12 -0
  102. data/spec/filters/bugs/bigdecimal.rb +248 -0
  103. data/spec/filters/bugs/class.rb +12 -0
  104. data/spec/filters/bugs/complex.rb +7 -0
  105. data/spec/filters/bugs/date.rb +104 -0
  106. data/spec/filters/bugs/encoding.rb +259 -0
  107. data/spec/filters/bugs/enumerable.rb +26 -0
  108. data/spec/filters/bugs/enumerator.rb +48 -0
  109. data/spec/filters/bugs/exception.rb +120 -0
  110. data/spec/filters/bugs/file.rb +48 -0
  111. data/spec/filters/bugs/float.rb +74 -0
  112. data/spec/filters/bugs/hash.rb +60 -0
  113. data/spec/filters/bugs/integer.rb +78 -0
  114. data/spec/filters/bugs/io.rb +9 -0
  115. data/spec/filters/bugs/kernel.rb +401 -0
  116. data/spec/filters/bugs/language.rb +451 -0
  117. data/spec/filters/bugs/marshal.rb +50 -0
  118. data/spec/filters/bugs/math.rb +4 -0
  119. data/spec/filters/bugs/method.rb +79 -0
  120. data/spec/filters/bugs/module.rb +281 -0
  121. data/spec/filters/bugs/nilclass.rb +4 -0
  122. data/spec/filters/bugs/numeric.rb +27 -0
  123. data/spec/filters/bugs/openstruct.rb +8 -0
  124. data/spec/filters/bugs/pack_unpack.rb +138 -0
  125. data/spec/filters/bugs/pathname.rb +9 -0
  126. data/spec/filters/bugs/proc.rb +80 -0
  127. data/spec/filters/bugs/random.rb +20 -0
  128. data/spec/filters/bugs/range.rb +139 -0
  129. data/spec/filters/bugs/rational.rb +12 -0
  130. data/spec/filters/bugs/regexp.rb +91 -0
  131. data/spec/filters/bugs/set.rb +51 -0
  132. data/spec/filters/bugs/singleton.rb +7 -0
  133. data/spec/filters/bugs/string.rb +341 -0
  134. data/spec/filters/bugs/stringscanner.rb +78 -0
  135. data/spec/filters/bugs/struct.rb +26 -0
  136. data/spec/filters/bugs/symbol.rb +7 -0
  137. data/spec/filters/bugs/time.rb +109 -0
  138. data/spec/filters/bugs/unboundmethod.rb +33 -0
  139. data/spec/filters/bugs/warnings.rb +30 -0
  140. data/spec/filters/unsupported/array.rb +168 -0
  141. data/spec/filters/unsupported/basicobject.rb +15 -0
  142. data/spec/filters/unsupported/bignum.rb +55 -0
  143. data/spec/filters/unsupported/class.rb +5 -0
  144. data/spec/filters/unsupported/delegator.rb +6 -0
  145. data/spec/filters/unsupported/enumerable.rb +12 -0
  146. data/spec/filters/unsupported/enumerator.rb +14 -0
  147. data/spec/filters/unsupported/file.rb +4 -0
  148. data/spec/filters/unsupported/fixnum.rb +15 -0
  149. data/spec/filters/unsupported/float.rb +47 -0
  150. data/spec/filters/unsupported/freeze.rb +259 -0
  151. data/spec/filters/unsupported/hash.rb +44 -0
  152. data/spec/filters/unsupported/integer.rb +101 -0
  153. data/spec/filters/unsupported/kernel.rb +35 -0
  154. data/spec/filters/unsupported/language.rb +25 -0
  155. data/spec/filters/unsupported/marshal.rb +44 -0
  156. data/spec/filters/unsupported/matchdata.rb +63 -0
  157. data/spec/filters/unsupported/math.rb +4 -0
  158. data/spec/filters/unsupported/pathname.rb +4 -0
  159. data/spec/filters/unsupported/privacy.rb +287 -0
  160. data/spec/filters/unsupported/proc.rb +4 -0
  161. data/spec/filters/unsupported/random.rb +5 -0
  162. data/spec/filters/unsupported/range.rb +8 -0
  163. data/spec/filters/unsupported/regexp.rb +70 -0
  164. data/spec/filters/unsupported/set.rb +5 -0
  165. data/spec/filters/unsupported/singleton.rb +7 -0
  166. data/spec/filters/unsupported/string.rb +687 -0
  167. data/spec/filters/unsupported/struct.rb +7 -0
  168. data/spec/filters/unsupported/symbol.rb +21 -0
  169. data/spec/filters/unsupported/taint.rb +162 -0
  170. data/spec/filters/unsupported/thread.rb +10 -0
  171. data/spec/filters/unsupported/time.rb +204 -0
  172. data/spec/filters/unsupported/usage_of_files.rb +262 -0
  173. data/spec/lib/builder_processors_spec.rb +44 -0
  174. data/spec/lib/builder_spec.rb +133 -0
  175. data/spec/lib/cli_runners/server_spec.rb +25 -0
  176. data/spec/lib/cli_runners_spec.rb +16 -0
  177. data/spec/lib/cli_spec.rb +256 -0
  178. data/spec/lib/compiler_spec.rb +693 -0
  179. data/spec/lib/config_spec.rb +112 -0
  180. data/spec/lib/dependency_resolver_spec.rb +43 -0
  181. data/spec/lib/deprecations_spec.rb +17 -0
  182. data/spec/lib/fixtures/complex_sprockets.js.rb.erb +4 -0
  183. data/spec/lib/fixtures/file_with_directives.js +2 -0
  184. data/spec/lib/fixtures/jst_file.js.jst +1 -0
  185. data/spec/lib/fixtures/no_requires.rb +1 -0
  186. data/spec/lib/fixtures/opal_file.rb +2 -0
  187. data/spec/lib/fixtures/require_tree_test.rb +3 -0
  188. data/spec/lib/fixtures/required_file.js +1 -0
  189. data/spec/lib/fixtures/required_tree_test/required_file1.rb +1 -0
  190. data/spec/lib/fixtures/required_tree_test/required_file2.rb +1 -0
  191. data/spec/lib/fixtures/requires.rb +7 -0
  192. data/spec/lib/fixtures/source_location_test.rb +7 -0
  193. data/spec/lib/fixtures/source_map.rb +1 -0
  194. data/spec/lib/fixtures/source_map/subfolder/other_file.rb +1 -0
  195. data/spec/lib/fixtures/sprockets_file.js.rb +3 -0
  196. data/spec/lib/fixtures/sprockets_require_tree_test.rb +3 -0
  197. data/spec/lib/path_reader_spec.rb +47 -0
  198. data/spec/lib/paths_spec.rb +18 -0
  199. data/spec/lib/repl_spec.rb +28 -0
  200. data/spec/lib/rewriters/base_spec.rb +68 -0
  201. data/spec/lib/rewriters/binary_operator_assignment_spec.rb +153 -0
  202. data/spec/lib/rewriters/block_to_iter_spec.rb +28 -0
  203. data/spec/lib/rewriters/dot_js_syntax_spec.rb +108 -0
  204. data/spec/lib/rewriters/explicit_writer_return_spec.rb +186 -0
  205. data/spec/lib/rewriters/for_rewriter_spec.rb +92 -0
  206. data/spec/lib/rewriters/hashes/key_duplicates_rewriter_spec.rb +47 -0
  207. data/spec/lib/rewriters/js_reserved_words_spec.rb +119 -0
  208. data/spec/lib/rewriters/logical_operator_assignment_spec.rb +202 -0
  209. data/spec/lib/rewriters/opal_engine_check_spec.rb +84 -0
  210. data/spec/lib/rewriters/returnable_logic_spec.rb +52 -0
  211. data/spec/lib/rewriters/rubyspec/filters_rewriter_spec.rb +59 -0
  212. data/spec/lib/simple_server_spec.rb +56 -0
  213. data/spec/lib/source_map/file_spec.rb +67 -0
  214. data/spec/lib/source_map/index_spec.rb +80 -0
  215. data/spec/lib/spec_helper.rb +105 -0
  216. data/spec/mspec-opal/formatters.rb +197 -0
  217. data/spec/mspec-opal/runner.rb +172 -0
  218. data/spec/opal/compiler/irb_spec.rb +44 -0
  219. data/spec/opal/compiler/unicode_spec.rb +10 -0
  220. data/spec/opal/core/array/dup_spec.rb +23 -0
  221. data/spec/opal/core/array/intersection_spec.rb +38 -0
  222. data/spec/opal/core/array/minus_spec.rb +38 -0
  223. data/spec/opal/core/array/union_spec.rb +38 -0
  224. data/spec/opal/core/array/uniq_spec.rb +49 -0
  225. data/spec/opal/core/class/inherited_spec.rb +18 -0
  226. data/spec/opal/core/enumerable/all_break_spec.rb +5 -0
  227. data/spec/opal/core/enumerable/any_break_spec.rb +5 -0
  228. data/spec/opal/core/enumerable/collect_break_spec.rb +13 -0
  229. data/spec/opal/core/enumerable/count_break_spec.rb +5 -0
  230. data/spec/opal/core/enumerable/detect_break_spec.rb +5 -0
  231. data/spec/opal/core/enumerable/drop_while_break_spec.rb +5 -0
  232. data/spec/opal/core/enumerable/each_slice_break_spec.rb +6 -0
  233. data/spec/opal/core/enumerable/each_with_index_break_spec.rb +5 -0
  234. data/spec/opal/core/enumerable/each_with_object_break_spec.rb +5 -0
  235. data/spec/opal/core/enumerable/find_all_break_spec.rb +5 -0
  236. data/spec/opal/core/enumerable/find_index_break_spec.rb +5 -0
  237. data/spec/opal/core/enumerable/grep_break_spec.rb +5 -0
  238. data/spec/opal/core/enumerable/max_break_spec.rb +5 -0
  239. data/spec/opal/core/enumerable/max_by_break_spec.rb +5 -0
  240. data/spec/opal/core/enumerable/min_break_spec.rb +5 -0
  241. data/spec/opal/core/enumerable/min_by_break_spec.rb +5 -0
  242. data/spec/opal/core/enumerable/none_break_spec.rb +5 -0
  243. data/spec/opal/core/enumerable/one_break_spec.rb +5 -0
  244. data/spec/opal/core/enumerable/reduce_break_spec.rb +5 -0
  245. data/spec/opal/core/enumerable/take_while_break_spec.rb +5 -0
  246. data/spec/opal/core/enumerator/with_index_spec.rb +6 -0
  247. data/spec/opal/core/exception_spec.rb +8 -0
  248. data/spec/opal/core/fixtures/require_tree_files/file 1.rb +1 -0
  249. data/spec/opal/core/fixtures/require_tree_files/file 2.rb +1 -0
  250. data/spec/opal/core/fixtures/require_tree_files/file 3.rb +1 -0
  251. data/spec/opal/core/fixtures/require_tree_files/file 4.rb +1 -0
  252. data/spec/opal/core/fixtures/require_tree_files/file 5.rb +1 -0
  253. data/spec/opal/core/fixtures/require_tree_files/nested/nested 1.rb +1 -0
  254. data/spec/opal/core/fixtures/require_tree_files/nested/nested 2.rb +1 -0
  255. data/spec/opal/core/fixtures/require_tree_files/other/other 1.rb +1 -0
  256. data/spec/opal/core/fixtures/require_tree_with_dot/file 1.rb +1 -0
  257. data/spec/opal/core/fixtures/require_tree_with_dot/file 2.rb +1 -0
  258. data/spec/opal/core/fixtures/require_tree_with_dot/file 3.rb +1 -0
  259. data/spec/opal/core/fixtures/require_tree_with_dot/index.rb +3 -0
  260. data/spec/opal/core/hash/internals_spec.rb +339 -0
  261. data/spec/opal/core/helpers_spec.rb +14 -0
  262. data/spec/opal/core/iterable_props_spec.rb +53 -0
  263. data/spec/opal/core/kernel/at_exit_spec.rb +70 -0
  264. data/spec/opal/core/kernel/freeze_spec.rb +15 -0
  265. data/spec/opal/core/kernel/instance_variables_spec.rb +110 -0
  266. data/spec/opal/core/kernel/methods_spec.rb +25 -0
  267. data/spec/opal/core/kernel/public_methods_spec.rb +25 -0
  268. data/spec/opal/core/kernel/require_tree_spec.rb +18 -0
  269. data/spec/opal/core/kernel/respond_to_spec.rb +15 -0
  270. data/spec/opal/core/language/DATA/characters_support_spec.rb +9 -0
  271. data/spec/opal/core/language/DATA/empty___END___spec.rb +7 -0
  272. data/spec/opal/core/language/DATA/multiple___END___spec.rb +10 -0
  273. data/spec/opal/core/language/arguments/mlhs_arg_spec.rb +18 -0
  274. data/spec/opal/core/language/keyword_arguments_spec.rb +9 -0
  275. data/spec/opal/core/language/numblocks_spec.rb +16 -0
  276. data/spec/opal/core/language/safe_navigator_spec.rb +7 -0
  277. data/spec/opal/core/language/while_spec.rb +31 -0
  278. data/spec/opal/core/language_spec.rb +29 -0
  279. data/spec/opal/core/marshal/dump_spec.rb +81 -0
  280. data/spec/opal/core/marshal/load_spec.rb +13 -0
  281. data/spec/opal/core/module_spec.rb +27 -0
  282. data/spec/opal/core/object_id_spec.rb +56 -0
  283. data/spec/opal/core/regexp/interpolation_spec.rb +40 -0
  284. data/spec/opal/core/regexp/match_spec.rb +78 -0
  285. data/spec/opal/core/runtime/bridged_classes_spec.rb +123 -0
  286. data/spec/opal/core/runtime/constants_spec.rb +16 -0
  287. data/spec/opal/core/runtime/eval_spec.rb +5 -0
  288. data/spec/opal/core/runtime/exit_spec.rb +29 -0
  289. data/spec/opal/core/runtime/is_a_spec.rb +48 -0
  290. data/spec/opal/core/runtime/loaded_spec.rb +20 -0
  291. data/spec/opal/core/runtime/main_methods_spec.rb +39 -0
  292. data/spec/opal/core/runtime/method_missing_spec.rb +68 -0
  293. data/spec/opal/core/runtime/rescue_spec.rb +37 -0
  294. data/spec/opal/core/runtime/string_spec.rb +25 -0
  295. data/spec/opal/core/runtime/truthy_spec.rb +61 -0
  296. data/spec/opal/core/runtime_spec.rb +58 -0
  297. data/spec/opal/core/string/each_byte_spec.rb +19 -0
  298. data/spec/opal/core/string/gsub_spec.rb +35 -0
  299. data/spec/opal/core/string/to_sym_spec.rb +9 -0
  300. data/spec/opal/core/string_spec.rb +28 -0
  301. data/spec/opal/core/struct/dup_spec.rb +11 -0
  302. data/spec/opal/core/time_spec.rb +68 -0
  303. data/spec/opal/stdlib/erb/erb_spec.rb +30 -0
  304. data/spec/opal/stdlib/erb/inline_block.opalerb +3 -0
  305. data/spec/opal/stdlib/erb/quoted.opalerb +1 -0
  306. data/spec/opal/stdlib/erb/simple.opalerb +1 -0
  307. data/spec/opal/stdlib/js_spec.rb +72 -0
  308. data/spec/opal/stdlib/json/ext_spec.rb +55 -0
  309. data/spec/opal/stdlib/json/parse_spec.rb +37 -0
  310. data/spec/opal/stdlib/logger/logger_spec.rb +308 -0
  311. data/spec/opal/stdlib/native/alias_native_spec.rb +27 -0
  312. data/spec/opal/stdlib/native/array_spec.rb +11 -0
  313. data/spec/opal/stdlib/native/date_spec.rb +12 -0
  314. data/spec/opal/stdlib/native/deprecated_include_spec.rb +8 -0
  315. data/spec/opal/stdlib/native/each_spec.rb +13 -0
  316. data/spec/opal/stdlib/native/element_reference_spec.rb +16 -0
  317. data/spec/opal/stdlib/native/exposure_spec.rb +33 -0
  318. data/spec/opal/stdlib/native/ext_spec.rb +19 -0
  319. data/spec/opal/stdlib/native/hash_spec.rb +67 -0
  320. data/spec/opal/stdlib/native/initialize_spec.rb +17 -0
  321. data/spec/opal/stdlib/native/method_missing_spec.rb +51 -0
  322. data/spec/opal/stdlib/native/native_alias_spec.rb +26 -0
  323. data/spec/opal/stdlib/native/native_class_spec.rb +18 -0
  324. data/spec/opal/stdlib/native/native_module_spec.rb +13 -0
  325. data/spec/opal/stdlib/native/native_reader_spec.rb +22 -0
  326. data/spec/opal/stdlib/native/native_writer_spec.rb +30 -0
  327. data/spec/opal/stdlib/native/new_spec.rb +92 -0
  328. data/spec/opal/stdlib/native/struct_spec.rb +12 -0
  329. data/spec/opal/stdlib/pp_spec.rb +5 -0
  330. data/spec/opal/stdlib/promise/always_spec.rb +49 -0
  331. data/spec/opal/stdlib/promise/error_spec.rb +15 -0
  332. data/spec/opal/stdlib/promise/rescue_spec.rb +53 -0
  333. data/spec/opal/stdlib/promise/then_spec.rb +79 -0
  334. data/spec/opal/stdlib/promise/trace_spec.rb +51 -0
  335. data/spec/opal/stdlib/promise/value_spec.rb +15 -0
  336. data/spec/opal/stdlib/promise/when_spec.rb +34 -0
  337. data/spec/opal/stdlib/source_map_spec.rb +8 -0
  338. data/spec/opal/stdlib/strscan/scan_spec.rb +11 -0
  339. data/spec/opal/stdlib/template/paths_spec.rb +10 -0
  340. data/spec/opal/stdlib/thread/mutex_spec.rb +40 -0
  341. data/spec/opal/stdlib/thread/thread_queue_spec.rb +32 -0
  342. data/spec/opal/stdlib/thread/thread_spec.rb +60 -0
  343. data/spec/ruby_specs +183 -0
  344. data/spec/spec_helper.rb +31 -0
  345. data/spec/support/guard_platform.rb +4 -0
  346. data/spec/support/match_helpers.rb +57 -0
  347. data/spec/support/mspec_rspec_adapter.rb +33 -0
  348. data/spec/support/rewriters_helper.rb +54 -0
  349. data/spec/support/source_map_helper.rb +190 -0
  350. data/stdlib/base64.rb +2 -2
  351. data/stdlib/bigdecimal.rb +15 -3
  352. data/stdlib/bigdecimal/bignumber.js.rb +1 -1
  353. data/stdlib/bigdecimal/util.rb +148 -0
  354. data/stdlib/delegate.rb +8 -0
  355. data/stdlib/nodejs/fileutils.rb +1 -1
  356. data/stdlib/nodejs/kernel.rb +0 -13
  357. data/stdlib/nodejs/stacktrace.rb +4 -179
  358. data/stdlib/ostruct.rb +5 -0
  359. data/stdlib/pp.rb +586 -19
  360. data/stdlib/prettyprint.rb +556 -0
  361. data/stdlib/rbconfig/sizeof.rb +2 -0
  362. data/stdlib/securerandom.rb +32 -0
  363. data/stdlib/set.rb +36 -0
  364. data/stdlib/strscan.rb +15 -0
  365. data/tasks/benchmarking.rake +1 -1
  366. data/tasks/releasing.rake +0 -3
  367. data/tasks/testing.rake +16 -11
  368. data/tasks/testing/mspec_special_calls.rb +1 -19
  369. data/test/nodejs/fixtures/cat.png +0 -0
  370. data/test/nodejs/fixtures/hello.rb +1 -0
  371. data/test/nodejs/fixtures/iso88591.txt +1 -0
  372. data/test/nodejs/fixtures/utf8.txt +1 -0
  373. data/test/nodejs/fixtures/win1258.txt +1 -0
  374. data/test/nodejs/test_dir.rb +39 -0
  375. data/test/nodejs/test_env.rb +62 -0
  376. data/test/nodejs/test_error.rb +29 -0
  377. data/test/nodejs/test_file.rb +206 -0
  378. data/test/nodejs/test_file_encoding.rb +20 -0
  379. data/test/nodejs/test_io.rb +18 -0
  380. data/test/nodejs/test_opal_builder.rb +12 -0
  381. data/test/nodejs/test_pathname.rb +16 -0
  382. data/test/opal/cat.png +0 -0
  383. data/test/opal/http_server.rb +52 -0
  384. data/test/opal/test_base64.rb +115 -0
  385. data/test/opal/test_keyword.rb +590 -0
  386. data/test/opal/test_matrix.rb +661 -0
  387. data/test/opal/test_openuri.rb +53 -0
  388. data/test/opal/unsupported_and_bugs.rb +39 -0
  389. data/yarn.lock +1114 -3
  390. metadata +889 -31
  391. data/lib/opal/nodes/runtime_helpers.rb +0 -51
  392. data/opal/corelib/random/MersenneTwister.js +0 -137
  393. data/opal/corelib/random/mersenne_twister.js.rb +0 -13
  394. data/stdlib/bigdecimal/kernel.rb +0 -5
@@ -0,0 +1,44 @@
1
+ require 'lib/spec_helper'
2
+ require 'opal/builder_processors'
3
+
4
+ RSpec.describe Opal::BuilderProcessors::JsProcessor do
5
+ it 'maps to one fragment per line' do
6
+ processor = described_class.new("line1\n line2\n line3", 'file.js')
7
+ expect(processor.source_map.fragments.map(&:code)).to eq([
8
+ "line1\n",
9
+ " line2\n",
10
+ " line3\n",
11
+ "Opal.loaded([\"file.js\"]);",
12
+ ])
13
+ end
14
+
15
+ it 'adds loading code at the end of the source' do
16
+ processor = described_class.new("line1\n line2\n line3", 'file.js')
17
+ expect(processor.source).to eq(%Q{line1\n line2\n line3\nOpal.loaded(["file.js"]);})
18
+ end
19
+ end
20
+
21
+ RSpec.describe Opal::BuilderProcessors::RubyProcessor do
22
+ it 'compiles ruby to js' do
23
+ processor = described_class.new('puts 5', '-e')
24
+ expect(processor.to_s).to include('$puts(5)')
25
+ end
26
+
27
+ describe ':requirable option' do
28
+ it 'is respected' do
29
+ processor = described_class.new('puts 5', '-e', requirable: true)
30
+ expect(processor.to_s).to include('Opal.modules[')
31
+ end
32
+
33
+ it 'defaults to "false"' do
34
+ processor = described_class.new('puts 5', '-e')
35
+ expect(processor.to_s).not_to include('Opal.modules[')
36
+ end
37
+ end
38
+
39
+ it 'fills required_trees' do
40
+ processor = described_class.new('require_tree "./pippo"', '-e')
41
+ expect(processor.required_trees).to eq(['./pippo'])
42
+ end
43
+ end
44
+
@@ -0,0 +1,133 @@
1
+ require 'lib/spec_helper'
2
+ require 'opal/builder'
3
+
4
+ RSpec.describe Opal::Builder do
5
+ subject(:builder) { described_class.new(options) }
6
+ let(:options) { {} }
7
+ let(:ruby_processor) { Opal::BuilderProcessors::RubyProcessor }
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(ruby_processor).to receive('new').with(source, anything, anything).once.and_call_original
24
+ expect(ruby_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(ruby_processor).to receive('new').with(anything, './base64.rb', anything).once.and_call_original
45
+ expect(ruby_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(global_object)")
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(global_object)")
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('$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('$foo$1.$$parameters = []')
87
+ end
88
+
89
+ describe '#missing_require_severity' do
90
+ it 'defaults to warning' do
91
+ expect(builder.missing_require_severity).to eq(:error)
92
+ end
93
+
94
+ context 'when set to :warning' do
95
+ let(:options) { {missing_require_severity: :warning} }
96
+ it 'warns the user' do
97
+ expect(builder.missing_require_severity).to eq(:warning)
98
+ expect(builder).to receive(:warn) { |message| expect(message).to start_with(%{can't find file: "non-existen-file"}) }.at_least(1)
99
+ builder.build_str("require 'non-existen-file'", 'foo.rb')
100
+ end
101
+ end
102
+
103
+ context 'when set to :ignore' do
104
+ let(:options) { {missing_require_severity: :ignore} }
105
+ it 'does nothing' do
106
+ expect(builder.missing_require_severity).to eq(:ignore)
107
+ expect(builder).not_to receive(:warn)
108
+ expect{ builder.build_str("require 'non-existen-file'", 'foo.rb') }.not_to raise_error
109
+ end
110
+ end
111
+
112
+ context 'when set to :error' do
113
+ let(:options) { {missing_require_severity: :error} }
114
+ it 'raises MissingRequire' do
115
+ expect(builder.missing_require_severity).to eq(:error)
116
+ expect(builder).not_to receive(:warn)
117
+ expect{ builder.build_str("require 'non-existen-file'", 'foo.rb') }.to raise_error(described_class::MissingRequire)
118
+ end
119
+ end
120
+ end
121
+
122
+ describe ':requirable' do
123
+ it 'it uses relative paths as module names' do
124
+ expect(builder.build('stringio', requirable: true).to_s).to include(%{Opal.modules["stringio"]})
125
+ end
126
+ end
127
+
128
+ describe ':requirable' do
129
+ it 'it uses front slash as module name' do
130
+ expect(builder.build('opal/platform', requirable: true).to_s).to include(%{Opal.modules["opal/platform"]})
131
+ end
132
+ end
133
+ end
@@ -0,0 +1,25 @@
1
+ require 'lib/spec_helper'
2
+ require 'opal/cli_runners'
3
+ require 'rack/test'
4
+
5
+ RSpec.describe Opal::CliRunners::Server do
6
+ include Rack::Test::Methods
7
+
8
+ def app
9
+ @app
10
+ end
11
+
12
+ it 'starts a server for the given code' do
13
+ expect(Rack::Server).to receive(:start) do |options|
14
+ @app = options[:app]
15
+ expect(options[:Port]).to eq(1234)
16
+ end
17
+
18
+ builder = Opal::Builder.new
19
+ builder.build_str("puts 123", "app.rb")
20
+ described_class.call(builder: builder, options: {port: 1234})
21
+
22
+ get '/cli_runner.js'
23
+ expect(last_response.body).to include(".$puts(123)")
24
+ end
25
+ end
@@ -0,0 +1,16 @@
1
+ require 'lib/spec_helper'
2
+ require 'opal/cli_runners'
3
+
4
+ RSpec.describe Opal::CliRunners do
5
+ around do |example|
6
+ original_register = described_class.instance_variable_get :@register
7
+ example.run
8
+ described_class.instance_variable_set :@register, original_register
9
+ end
10
+
11
+ describe '.alias_runner' do
12
+ it 'aliases between runner names' do
13
+ expect(described_class[:node]).to eq(described_class[:nodejs])
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,256 @@
1
+ require 'lib/spec_helper'
2
+ require 'opal/cli'
3
+ require 'stringio'
4
+ require 'tmpdir'
5
+
6
+ RSpec.describe Opal::CLI do
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, runner: :compiler, 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, runner: :compiler, 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, runner: :compiler, 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, runner: :compiler, 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, runner: :compiler, 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 ':rbrequires options' do
125
+ context 'when set' do
126
+ let(:options) { {:rbrequires => ["some_nonexisting_require"], :evals => [''] } }
127
+ it 'requires the file before compiling' do
128
+ expect{ subject.run }.to raise_error(LoadError)
129
+ end
130
+ end
131
+ end
132
+
133
+ describe ':gems options' do
134
+ context 'with a Gem name' do
135
+ let(:dir) { File.dirname(file) }
136
+ let(:filename) { File.basename(file) }
137
+ let(:gem_name) { 'ast' }
138
+ let(:options) { {:gems => [gem_name], :evals => ['']} }
139
+
140
+ it "adds the gem's lib paths to Opal.path" do
141
+ builder = cli.builder
142
+
143
+ spec = Gem::Specification.find_by_name(gem_name)
144
+ spec.require_paths.each do |require_path|
145
+ require_path = File.join(spec.gem_dir, require_path)
146
+ expect(builder.path_reader.send(:file_finder).paths).to include(require_path)
147
+ end
148
+ end
149
+ end
150
+ end
151
+
152
+ describe ':stubs options' do
153
+ context 'with a stubbed file' do
154
+ let(:dir) { File.dirname(file) }
155
+ let(:filename) { File.basename(file) }
156
+ let(:stub_name) { 'an_unparsable_lib' }
157
+ let(:options) { {:stubs => [stub_name], :evals => ["require #{stub_name.inspect}"]} }
158
+
159
+ it "adds the gem's lib paths to Opal.path" do
160
+ expect_output_of{ subject.run }.to eq('')
161
+ end
162
+ end
163
+ end
164
+
165
+ describe ':verbose option' do
166
+ let(:options) { {:verbose => true, :evals => ['']} }
167
+
168
+ it 'sets the verbose flag (currently unused)' do
169
+ expect(cli.verbose).to eq(true)
170
+ end
171
+ end
172
+
173
+ describe ':runner option' do
174
+ context 'when :compile' do
175
+ let(:options) { {runner: :compiler, evals: ['puts 2342']} }
176
+
177
+ it 'outputs the compiled javascript' do
178
+ expect_output_of{ subject.run }.to include(".$puts(2342)")
179
+ expect_output_of{ subject.run }.not_to include("2342\n")
180
+ end
181
+
182
+ context 'with the :map_file runner option' do
183
+ let(:map_file) { "#{Dir.mktmpdir 'opal-map'}/file.map" }
184
+ let(:runner_options) { { map_file: map_file } }
185
+ let(:options) { super().merge(runner_options: runner_options) }
186
+
187
+ it 'writes the map file to the specified path' do
188
+ expect_output_of{ subject.run }.to include(".$puts(2342)")
189
+ expect_output_of{ subject.run }.not_to include("2342\n")
190
+ expect(File.read(map_file)).to include(%{"version":3})
191
+ end
192
+ end
193
+ end
194
+
195
+ # TODO: test more runners
196
+ end
197
+
198
+ describe ':load_paths options' do
199
+ let(:dir) { File.dirname(file) }
200
+ let(:filename) { File.basename(file) }
201
+ let(:options) { {:load_paths => [dir], :requires => [filename], :evals => ['']} }
202
+ it 'requires files' do
203
+ expect_output_of{ subject.run }.to eq("hi from opal!\n")
204
+ end
205
+ end
206
+
207
+ describe ':sexp option' do
208
+ let(:options) { {evals: ['puts 4'], sexp: true} }
209
+ it 'prints syntax expressions for the given code' do
210
+ expect_output_of{ subject.run }.to eq("s(:send, nil, :puts,\n s(:int, 4))\n")
211
+ end
212
+ end
213
+
214
+ describe ':parse_comments option' do
215
+ let(:code) do
216
+ <<-CODE
217
+ # multiline
218
+ # comment
219
+ def m
220
+ end
221
+ CODE
222
+ end
223
+ let(:options) { { parse_comments: true, evals: [code], runner: :compiler } }
224
+
225
+ it 'sets $$comment prop for compiled methods' do
226
+ expect_output_of { subject.run }.to include('$$comments = ["# multiline", "# comment"]')
227
+ end
228
+ end
229
+
230
+ describe ':enable_source_location' do
231
+ let(:file) { File.expand_path('../fixtures/source_location_test.rb', __FILE__) }
232
+ let(:options) { { enable_source_location: true, runner: :compiler, file: File.open(file) } }
233
+
234
+ it 'sets $$source_location prop for compiled methods' do
235
+ expect_output_of { subject.run }.to include("source_location_test.rb', 6]")
236
+ end
237
+ end
238
+
239
+ private
240
+
241
+ def expect_output_of
242
+ @output, _result = output_and_result_of { yield }
243
+ expect(@output)
244
+ end
245
+
246
+ def output_and_result_of
247
+ fake_stdout = StringIO.new
248
+ stdout = described_class.stdout
249
+ described_class.stdout = fake_stdout
250
+ result = yield
251
+ output = fake_stdout.tap(&:rewind).read
252
+ return output, result
253
+ ensure
254
+ described_class.stdout = stdout
255
+ end
256
+ end