summaryrefslogtreecommitdiff
path: root/jni/ruby/test/-ext-/bug_reporter/test_bug_reporter.rb
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/test/-ext-/bug_reporter/test_bug_reporter.rb
Fresh start
Diffstat (limited to 'jni/ruby/test/-ext-/bug_reporter/test_bug_reporter.rb')
-rw-r--r--jni/ruby/test/-ext-/bug_reporter/test_bug_reporter.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/jni/ruby/test/-ext-/bug_reporter/test_bug_reporter.rb b/jni/ruby/test/-ext-/bug_reporter/test_bug_reporter.rb
new file mode 100644
index 0000000..6ac5b8f
--- /dev/null
+++ b/jni/ruby/test/-ext-/bug_reporter/test_bug_reporter.rb
@@ -0,0 +1,25 @@
+require 'test/unit'
+require 'tmpdir'
+
+class TestBugReporter < Test::Unit::TestCase
+ def test_bug_reporter_add
+ expected_stderr = [
+ :*,
+ /\[BUG\]\sSegmentation\sfault.*\n/,
+ /#{ Regexp.quote(RUBY_DESCRIPTION) }\n\n/,
+ :*,
+ /Sample bug reporter: 12345/,
+ :*
+ ]
+ tmpdir = Dir.mktmpdir
+
+ args = ["--disable-gems", "-r-test-/bug_reporter/bug_reporter",
+ "-C", tmpdir]
+ stdin = "register_sample_bug_reporter(12345); Process.kill :SEGV, $$"
+ _, stderr, status = EnvUtil.invoke_ruby(args, stdin, false, true)
+ stderr.force_encoding("ASCII-8BIT")
+ assert_pattern_list(expected_stderr, stderr)
+ ensure
+ FileUtils.rm_rf(tmpdir) if tmpdir
+ end
+end