mirror of
https://github.com/rails/execjs
synced 2023-03-27 23:21:20 -04:00
Add a Rake task for each engine so that engine tests run in isolation
This commit is contained in:
parent
0893e12fe9
commit
e9e1b97b26
4 changed files with 68 additions and 50 deletions
54
Rakefile
54
Rakefile
|
@ -2,6 +2,56 @@ require "rake/testtask"
|
||||||
|
|
||||||
task :default => :test
|
task :default => :test
|
||||||
|
|
||||||
Rake::TestTask.new do |t|
|
$:.unshift File.expand_path("../lib", __FILE__)
|
||||||
t.warning = true
|
require "execjs/runtimes"
|
||||||
|
|
||||||
|
tests = namespace :test do |tests|
|
||||||
|
ExecJS::Runtimes.names.each do |name|
|
||||||
|
task(name.downcase) do
|
||||||
|
ENV["EXECJS_RUNTIME"] = name
|
||||||
|
end
|
||||||
|
|
||||||
|
Rake::TestTask.new(name.downcase) do |t|
|
||||||
|
t.libs << "test"
|
||||||
|
t.warning = true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def banner(text)
|
||||||
|
warn ""
|
||||||
|
warn "=" * Rake.application.terminal_width
|
||||||
|
warn text
|
||||||
|
warn "=" * Rake.application.terminal_width
|
||||||
|
warn ""
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "Run tests for all installed runtimes"
|
||||||
|
task :test do
|
||||||
|
passed = []
|
||||||
|
failed = []
|
||||||
|
skipped = []
|
||||||
|
|
||||||
|
tests.tasks.each do |task|
|
||||||
|
banner "Running #{task.name}"
|
||||||
|
|
||||||
|
begin
|
||||||
|
task.invoke
|
||||||
|
rescue Exception => e
|
||||||
|
if e.message[/Command failed with status \((\d+)\)/, 1] == "2"
|
||||||
|
skipped << task.name
|
||||||
|
else
|
||||||
|
failed << task.name
|
||||||
|
end
|
||||||
|
else
|
||||||
|
passed << task.name
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
messages = ["PASSED: #{passed.join(", ")}"]
|
||||||
|
messages << "FAILURES: #{failed.join(", ")}" if failed.any?
|
||||||
|
messages << "SKIPPED: #{skipped.join(", ")}" if skipped.any?
|
||||||
|
banner messages.join("\n")
|
||||||
|
|
||||||
|
raise "test failures" if failed.any?
|
||||||
end
|
end
|
||||||
|
|
9
test/execjs_test.rb
Normal file
9
test/execjs_test.rb
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
require "test/unit"
|
||||||
|
require "execjs/module"
|
||||||
|
|
||||||
|
begin
|
||||||
|
require "execjs"
|
||||||
|
rescue ExecJS::RuntimeUnavailable => e
|
||||||
|
warn e
|
||||||
|
exit 2
|
||||||
|
end
|
|
@ -1,5 +1,4 @@
|
||||||
require "execjs"
|
require "execjs_test"
|
||||||
require "test/unit"
|
|
||||||
|
|
||||||
class TestExecJS < Test::Unit::TestCase
|
class TestExecJS < Test::Unit::TestCase
|
||||||
def test_exec
|
def test_exec
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
require "execjs"
|
require "execjs_test"
|
||||||
require "test/unit"
|
|
||||||
|
class TestRuntime < Test::Unit::TestCase
|
||||||
|
def setup
|
||||||
|
@runtime = ExecJS::Runtimes.autodetect
|
||||||
|
end
|
||||||
|
|
||||||
module TestRuntime
|
|
||||||
def test_exec
|
def test_exec
|
||||||
assert_nil @runtime.exec("1")
|
assert_nil @runtime.exec("1")
|
||||||
assert_nil @runtime.exec("return")
|
assert_nil @runtime.exec("return")
|
||||||
|
@ -76,46 +79,3 @@ module TestRuntime
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
runtimes = [
|
|
||||||
"RubyRacer",
|
|
||||||
"RubyRhino",
|
|
||||||
"Mustang",
|
|
||||||
"Node",
|
|
||||||
"JavaScriptCore",
|
|
||||||
"Spidermonkey",
|
|
||||||
"JScript"]
|
|
||||||
|
|
||||||
warn "Runtime Support:"
|
|
||||||
runtimes.each do |name|
|
|
||||||
runtime = ExecJS::Runtimes.const_get(name)
|
|
||||||
ok = runtime.available?
|
|
||||||
|
|
||||||
warn " %s %-21s %s" %
|
|
||||||
if ok
|
|
||||||
["✓", runtime.name, "Found"]
|
|
||||||
else
|
|
||||||
[" ", runtime.name, "Not found"]
|
|
||||||
end
|
|
||||||
|
|
||||||
if ok
|
|
||||||
klass_name = "Test#{name}"
|
|
||||||
instance_eval "class ::#{klass_name} < Test::Unit::TestCase; end"
|
|
||||||
test_suite = Kernel.const_get(klass_name)
|
|
||||||
|
|
||||||
test_suite.instance_eval do
|
|
||||||
include TestRuntime
|
|
||||||
|
|
||||||
instance_exec do
|
|
||||||
define_method(:name) do
|
|
||||||
runtime.name
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
define_method(:setup) do
|
|
||||||
instance_variable_set(:@runtime, runtime)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
warn ""
|
|
Loading…
Reference in a new issue