jruby-launcher 1.1.19-java → 2.0.0.pr1-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4ecfe0c07cb66457b2c9cc77b1d668a15835d56bcf326de6e8f9cfcd1122763f
4
- data.tar.gz: ad0992bab78ac9c83d1b48448e29ec01e93701201ec34f9ac8d6e1c26dca3e3c
3
+ metadata.gz: 50562b25fc7dd7b82d467334c1251f8364e6f41d8c92a0ffa8473a0039a1efe6
4
+ data.tar.gz: b02e2cc0bd6fcdcf51c7d466a4d1d3c3de74f3e1e8a86760f603c8a4305fc288
5
5
  SHA512:
6
- metadata.gz: 8676543dbae71684742514ba1a27e6915dafe8f885056e04470aa50aa722c8b594cdd240135d43a46547fd33f616b3f45081adfe0ee0ac18a2a1d3685a0993c0
7
- data.tar.gz: 953e37dbafefc57de9d17e342e3e550ee87c8f01eb44518557d41db6ba488e8eac1dcca1527daf09db67a7efb9c1249934213886feebf23c3ee2bfa9b91f90cc
6
+ metadata.gz: 909040c18c0dc539426554bc2a67d7ca93030d77cbbab67ec7a63920fcb3b1fe1eacbe87378fce63a949a645d9cba9ecf745d258230a97c7963dc6d82ecad559
7
+ data.tar.gz: 0032dcc96cb9fbcfcfe4eed270c4dc3e5340e595ff7cd0a638f156df8b3490508c59131c1da016aa9f9d3fa5b2846297509297df49f2f9106f8034765e7ab26f
data/inc/Makefile-conf.mk CHANGED
@@ -21,11 +21,7 @@ include Makefile
21
21
  OBJECTDIR=build/${CONF}/${CND_PLATFORM}
22
22
 
23
23
  # Object Files
24
- OBJECTFILES = ${OBJECTDIR}/argparser.o \
25
- ${OBJECTDIR}/utilsfuncs.o \
26
- ${OBJECTDIR}/ng.o \
27
- ${OBJECTDIR}/strlcpy.o \
28
- ${OBJECTDIR}/jrubyexe.o
24
+ OBJECTFILES = ${OBJECTDIR}/jrubyexe.o
29
25
 
30
26
  ifdef JAVA_HOME
31
27
  JAVA_INCLUDE = $(subst \,/,${JAVA_HOME})/include
@@ -33,10 +29,16 @@ INCLUDES = "-I${JAVA_INCLUDE}"
33
29
  endif
34
30
 
35
31
  ifdef MINGW
36
- OBJECTFILES += ${OBJECTDIR}/utilsfuncswin.o \
37
- ${OBJECTDIR}/platformlauncher.o \
38
- ${OBJECTDIR}/jvmlauncher.o \
39
- ${OBJECTDIR}/jruby.o
32
+ OBJECTFILES +=
33
+ # Object Files
34
+ OBJECTFILES = ${OBJECTDIR}/argparser.o \
35
+ ${OBJECTDIR}/utilsfuncs.o \
36
+ ${OBJECTDIR}/ng.o \
37
+ ${OBJECTDIR}/strlcpy.o \
38
+ ${OBJECTDIR}/utilsfuncswin.o \
39
+ ${OBJECTDIR}/platformlauncher.o \
40
+ ${OBJECTDIR}/jvmlauncher.o \
41
+ ${OBJECTDIR}/jruby.o
40
42
  INCLUDES += "-I${JAVA_INCLUDE}/win32"
41
43
  else
42
44
  OBJECTFILES += ${OBJECTDIR}/unixlauncher.o
data/jrubyexe.cpp CHANGED
@@ -50,18 +50,18 @@ const char *CON_ATTACH_MSG =
50
50
  "*WARNING*: The non-console JRubyW launcher is forced to attach to console.\n"
51
51
  "This may cause unexpected behavior of CMD console. Use:\n"
52
52
  " start /wait jrubyw.exe -Xconsole attach [args]\n";
53
+
54
+ #include "utilsfuncs.h"
53
55
  #endif // JRUBYW
54
56
  #else
55
57
  #include "unixlauncher.h"
56
58
  #endif // WIN32
57
59
 
58
- #include "utilsfuncs.h"
59
-
60
60
 
61
61
  int main(int argc, char *argv[], char* envp[]) {
62
+ #ifdef WIN32
62
63
  checkLoggingArg(argc, argv, true);
63
64
 
64
- #ifdef WIN32
65
65
  #ifdef JRUBYW
66
66
  if (!isConsoleAttached()) {
67
67
  logMsg("Console is not attached, assume WINDOW mode");
@@ -78,7 +78,6 @@ int main(int argc, char *argv[], char* envp[]) {
78
78
  return loader.start("jruby.dll", argc - 1, argv + 1, argv[0]);
79
79
 
80
80
  #else // !WIN32
81
- UnixLauncher launcher;
82
- return launcher.run(argc, argv, envp);
81
+ return unixlauncher_run(argc, argv, envp);
83
82
  #endif // WIN32
84
83
  }
@@ -1,3 +1,3 @@
1
1
  module JRubyLauncher
2
- VERSION = "1.1.19"
2
+ VERSION = "2.0.0.pr1"
3
3
  end
data/unixlauncher.c ADDED
@@ -0,0 +1,143 @@
1
+ #include <errno.h>
2
+ #include <libgen.h>
3
+ #include <stdbool.h>
4
+ #include <stdio.h>
5
+ #include <stdlib.h>
6
+ #include <string.h>
7
+ #include <unistd.h>
8
+
9
+ /*
10
+ * Copyright 2009-2025 JRuby Team (www.jruby.org).
11
+ *
12
+ * This program finds JRUBY_HOME and executes the JRuby launcher script
13
+ * contained within it.
14
+ */
15
+
16
+ static const char script_name[] = "jruby.sh";
17
+
18
+
19
+ static char *which(const char *const executable) {
20
+ const size_t exe_length = strlen(executable);
21
+ char *exe_path = NULL;
22
+ size_t exe_path_size = 0;
23
+
24
+ // Iterate through PATH to find executable
25
+ char *dirs = getenv("PATH");
26
+ if (dirs == NULL) {
27
+ return NULL;
28
+ }
29
+ size_t dirs_length = strlen(dirs);
30
+ // Temporarily replace null terminator with colon
31
+ dirs[dirs_length] = ':';
32
+
33
+ size_t dir_head = 0;
34
+ size_t i = 0;
35
+ do {
36
+ if (dirs[i] == ':') {
37
+ // Declare convenient path variables
38
+ char *const dir = dirs + dir_head;
39
+ const size_t dir_length = i - dir_head;
40
+ const size_t new_path_length = dir_length + exe_length + 1;
41
+
42
+ // Allocate enough space for concatenated path
43
+ if (exe_path_size < new_path_length + 1) {
44
+ // Leave space for null terminator
45
+ exe_path = realloc(exe_path, new_path_length + 1);
46
+ exe_path_size = new_path_length + 1;
47
+ }
48
+
49
+ // Concatenate path and executable
50
+ memcpy(exe_path, dir, dir_length);
51
+ exe_path[dir_length] = '/';
52
+ memcpy(exe_path + dir_length + 1, executable, exe_length);
53
+ exe_path[new_path_length] = '\0';
54
+
55
+ // Check if we can execute
56
+ if (0 == access(exe_path, R_OK | X_OK)) {
57
+ goto success;
58
+ }
59
+
60
+ dir_head = i + 1;
61
+ }
62
+ } while (dirs[i++]);
63
+
64
+ // Lookup has failed, free if necessary and return NULL
65
+ if (exe_path != NULL) {
66
+ free(exe_path);
67
+ exe_path = NULL;
68
+ }
69
+ success:
70
+ // Restore null terminator
71
+ dirs[dirs_length] = '\0';
72
+
73
+ return exe_path;
74
+ }
75
+
76
+
77
+ int unixlauncher_run(int argc, char *argv[], char *envp[]) {
78
+ if (argc == 0 || argv[0][0] == '\0') {
79
+ fputs("Error: No executable provided!", stderr);
80
+ return 2;
81
+ }
82
+
83
+ // Find ourselves
84
+ char *original_self = argv[0];
85
+ char *self_path;
86
+
87
+ // Detect whether argv[0] contains forward slashes
88
+ bool self_is_path = false;
89
+ for (size_t i = 0; original_self[i]; i++) {
90
+ if (original_self[i] == '/') {
91
+ self_is_path = true;
92
+ break;
93
+ }
94
+ }
95
+
96
+ if (self_is_path) { // argv[0] is a path to an executable
97
+ self_path = realpath(original_self, NULL);
98
+ } else { // argv[0] is basename of executable
99
+ // Iterate through PATH to find script
100
+ self_path = which(argv[0]);
101
+
102
+ if (self_path == NULL) {
103
+ fprintf(stderr, "Error: Could not find %s executable\n", script_name);
104
+ return 1;
105
+ }
106
+
107
+ // Juggle malloc'd paths
108
+ char *real_path = realpath(self_path, NULL);
109
+ free(self_path);
110
+ self_path = real_path;
111
+ }
112
+
113
+ // Find our parent directory
114
+ char *script_dir = dirname(self_path);
115
+ if (self_path != script_dir) {
116
+ // Free malloc'd self_path if dirname returned statically allocated string
117
+ free(self_path);
118
+ }
119
+ size_t script_dir_length = strlen(script_dir);
120
+
121
+ // Allocate space for complete script path
122
+ size_t script_path_length = strlen(script_name) + script_dir_length + 1;
123
+ // Leave space for null terminator
124
+ char *script_path = malloc(script_path_length + 1);
125
+
126
+ // Concatenate script dir and script name
127
+ memcpy(script_path, script_dir, script_dir_length);
128
+ script_path[script_dir_length] = '/';
129
+ memcpy(script_path + script_dir_length + 1, script_name, strlen(script_name));
130
+ script_path[script_path_length] = '\0';
131
+
132
+ // Reuse argv for script command line
133
+ argv[0] = script_path;
134
+ int ret = execv(argv[0], argv);
135
+
136
+ if (ret < 0) {
137
+ fprintf(stderr, "%s: %s: %s\n", original_self, strerror(errno), script_path);
138
+ }
139
+
140
+ free(self_path);
141
+ free(script_path);
142
+ return EXIT_FAILURE;
143
+ }
data/unixlauncher.h CHANGED
@@ -1,22 +1,20 @@
1
1
  /*
2
- * Copyright 2009-2010 JRuby Team (www.jruby.org).
2
+ * Copyright 2009-2025 JRuby Team (www.jruby.org).
3
3
  */
4
4
 
5
5
 
6
6
  #ifndef _UNIXLAUNCHER_H_
7
7
  #define _UNIXLAUNCHER_H_
8
8
 
9
- #include "argparser.h"
9
+ #ifdef __cplusplus
10
+ extern "C"
11
+ {
12
+ #endif
10
13
 
11
- class UnixLauncher : public ArgParser {
12
- public:
13
- UnixLauncher();
14
- virtual ~UnixLauncher();
14
+ int unixlauncher_run(int argc, char *argv[], char *envp[]);
15
15
 
16
- int run(int argc, char* argv[], char* envp[]);
17
-
18
- private:
19
- UnixLauncher(const UnixLauncher& orig);
20
- };
16
+ #ifdef __cplusplus
17
+ }
18
+ #endif
21
19
 
22
20
  #endif // ! _UNIXLAUNCHER_H_
data/version.h CHANGED
@@ -6,6 +6,6 @@
6
6
  #ifndef _VERSION_H_
7
7
  #define _VERSION_H_
8
8
 
9
- #define JRUBY_LAUNCHER_VERSION "1.1.19"
9
+ #define JRUBY_LAUNCHER_VERSION "2.0.0.pr1"
10
10
 
11
11
  #endif // ! _VERSION_H_
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jruby-launcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.19
4
+ version: 2.0.0.pr1
5
5
  platform: java
6
6
  authors:
7
7
  - Nick Sieger
8
8
  - Vladimir Sizikov
9
- autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2021-07-08 00:00:00.000000000 Z
11
+ date: 2025-03-31 00:00:00.000000000 Z
13
12
  dependencies: []
14
13
  description: Builds and installs a native launcher for JRuby on your system
15
14
  email:
@@ -39,21 +38,6 @@ files:
39
38
  - lib/rubygems/defaults/jruby_native.rb
40
39
  - nbexecloader.h
41
40
  - ng.c
42
- - pkg/jruby-launcher-1.1.17-java/extconf.rb
43
- - pkg/jruby-launcher-1.1.17-java/lib/jruby-launcher.rb
44
- - pkg/jruby-launcher-1.1.17-java/lib/rubygems/defaults/jruby_native.rb
45
- - pkg/jruby-launcher-1.1.17-java/spec/launcher_spec.rb
46
- - pkg/jruby-launcher-1.1.17-java/spec/spec_helper.rb
47
- - pkg/jruby-launcher-1.1.18-java/extconf.rb
48
- - pkg/jruby-launcher-1.1.18-java/lib/jruby-launcher.rb
49
- - pkg/jruby-launcher-1.1.18-java/lib/rubygems/defaults/jruby_native.rb
50
- - pkg/jruby-launcher-1.1.18-java/pkg/jruby-launcher-1.1.17-java/extconf.rb
51
- - pkg/jruby-launcher-1.1.18-java/pkg/jruby-launcher-1.1.17-java/lib/jruby-launcher.rb
52
- - pkg/jruby-launcher-1.1.18-java/pkg/jruby-launcher-1.1.17-java/lib/rubygems/defaults/jruby_native.rb
53
- - pkg/jruby-launcher-1.1.18-java/pkg/jruby-launcher-1.1.17-java/spec/launcher_spec.rb
54
- - pkg/jruby-launcher-1.1.18-java/pkg/jruby-launcher-1.1.17-java/spec/spec_helper.rb
55
- - pkg/jruby-launcher-1.1.18-java/spec/launcher_spec.rb
56
- - pkg/jruby-launcher-1.1.18-java/spec/spec_helper.rb
57
41
  - platformlauncher.cpp
58
42
  - platformlauncher.h
59
43
  - rb_w32_cmdvector.h
@@ -62,7 +46,7 @@ files:
62
46
  - spec/launcher_spec.rb
63
47
  - spec/spec_helper.rb
64
48
  - strlcpy.c
65
- - unixlauncher.cpp
49
+ - unixlauncher.c
66
50
  - unixlauncher.h
67
51
  - utilsfuncs.cpp
68
52
  - utilsfuncs.h
@@ -71,7 +55,6 @@ files:
71
55
  homepage: http://jruby.org
72
56
  licenses: []
73
57
  metadata: {}
74
- post_install_message:
75
58
  rdoc_options: []
76
59
  require_paths:
77
60
  - lib
@@ -86,8 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
69
  - !ruby/object:Gem::Version
87
70
  version: '0'
88
71
  requirements: []
89
- rubygems_version: 3.1.6
90
- signing_key:
72
+ rubygems_version: 3.6.3
91
73
  specification_version: 4
92
74
  summary: Native launcher for JRuby
93
75
  test_files: []
@@ -1,12 +0,0 @@
1
- mf = File.read('Makefile')
2
- mf = mf.gsub(/^BINDIR\s*=.*$/, "BINDIR = #{RbConfig::CONFIG['bindir']}")
3
- mf = mf.gsub(/^PREFIX\s*=.*$/, "PREFIX = #{File.dirname(RbConfig::CONFIG['libdir'])}")
4
- mf = mf.gsub(/^JRUBY_VERSION\s*=.*$/, "JRUBY_VERSION = #{JRUBY_VERSION}")
5
-
6
- # Launcher will use .module_opts file if present, otherwise hardcoded add-opens for this module.
7
- # Module options are only supported on JRuby 9.2.1 or higher.
8
- if JRUBY_VERSION =~ /(^1)|(^9\.[01])|(^9\.2\.0\.0)/
9
- mf = mf.gsub(/^JRUBY_MODULE\s*=.*1$/, "JRUBY_MODULE =")
10
- end
11
- puts mf
12
- File.open('Makefile', 'wb') {|f| f << mf}
@@ -1,3 +0,0 @@
1
- module JRubyLauncher
2
- VERSION = "1.1.19"
3
- end
@@ -1,4 +0,0 @@
1
- class Gem::ConfigFile
2
- PLATFORM_DEFAULTS['install'] = '--no-rdoc --no-ri'
3
- PLATFORM_DEFAULTS['update'] = '--no-rdoc --no-ri'
4
- end
@@ -1,288 +0,0 @@
1
- require 'tmpdir'
2
- require File.expand_path('../spec_helper.rb', __FILE__)
3
- load File.expand_path('../../lib/jruby-launcher.rb', __FILE__)
4
-
5
- describe "JRuby native launcher" do
6
- it "should run org.jruby.Main" do
7
- jruby_launcher_args("").last.should == "org/jruby/Main"
8
- end
9
-
10
- it "should pass unrecognized arguments to JRuby" do
11
- jruby_launcher_args("-J-Dsome.option -v --help")[-3..-1].should == ["org/jruby/Main", "-v", "--help"]
12
- end
13
-
14
- it "should print help message" do
15
- args = jruby_launcher_args("-Xhelp 2>&1")
16
- args.select {|l| l =~ /JRuby Launcher usage/}.should_not be_empty
17
- args.should include("-X")
18
- args = jruby_launcher_args("-X 2>&1")
19
- args.detect {|l| l =~ /JRuby Launcher usage/}.should_not be_empty
20
- args.should include("-X")
21
- end
22
-
23
- it "should use $JAVACMD when JAVACMD is specified" do
24
- javacmd_path = File.join("path", "to", "jato")
25
- with_environment "JAVACMD" => javacmd_path do
26
- if windows?
27
- jruby_launcher_args("-v 2>&1").join.should =~ /#{javacmd_path}/
28
- else
29
- jruby_launcher_args("-v").first.should == javacmd_path
30
- end
31
- end
32
- end
33
-
34
- it "should use $JAVA_HOME/bin/java when JAVA_HOME is specified" do
35
- with_environment "JAVA_HOME" => File.join("some", "java", "home") do
36
- if windows?
37
- jruby_launcher_args("-v 2>&1").join.should =~ %r{some/java/home}
38
- else
39
- jruby_launcher_args("-v").first.should == File.join("some", "java", "home", "bin", "java")
40
- end
41
- end
42
- end
43
-
44
- it "should use -Xjdkhome argument above JAVA_HOME" do
45
- with_environment "JAVA_HOME" => File.join("env", "java", "home") do
46
- if windows?
47
- jruby_launcher_args("-Xjdkhome some/java/home 2>&1").join.should =~ %r{some/java/home}
48
- else
49
- jruby_launcher_args("-Xjdkhome some/java/home").first.should == File.join("some", "java", "home", "bin", "java")
50
- end
51
- end
52
- end
53
-
54
- it "should drop the backslashes at the end of JAVA_HOME" do
55
- with_environment "JAVA_HOME" => File.join("some", "java", "home\\\\") do
56
- if windows?
57
- jruby_launcher_args("").join.should =~ %r{some/java/home}
58
- else
59
- jruby_launcher_args("").first.should == File.join("some", "java", "home", "bin", "java")
60
- end
61
- end
62
- end
63
-
64
- it "should complain about a missing log argument" do
65
- jruby_launcher("-Xtrace 2>&1").should =~ /Argument is missing for "-Xtrace"/
66
- jruby_launcher("-Xtrace -- 2>&1").should =~ /Argument is missing for "-Xtrace"/
67
- end
68
-
69
- it "should complain about a missing jdkhome argument" do
70
- jruby_launcher("-Xjdkhome 2>&1").should =~ /Argument is missing/
71
- jruby_launcher("-Xjdkhome -- 2>&1").should =~ /Argument is missing/
72
- end
73
-
74
- it "should complain about a missing classpath append argument" do
75
- jruby_launcher("-Xcp:a 2>&1").should =~ /Argument is missing/
76
- jruby_launcher("-Xcp:a -- 2>&1").should =~ /Argument is missing/
77
- end
78
-
79
- it "should run nailgun server with --ng-server option" do
80
- jruby_launcher_args("--ng-server").last.should == "com/martiansoftware/nailgun/NGServer"
81
- end
82
-
83
- it "should run nailgun client with --ng option" do
84
- jruby_launcher_args('--ng -e "puts 1"').should == ["org.jruby.util.NailMain", "-e", "puts 1"]
85
- end
86
-
87
- it "should handle -J JVM options" do
88
- jruby_launcher_args("-J-Darg1=value1 -J-Darg2=value2").should include("-Darg1=value1", "-Darg2=value2")
89
- end
90
-
91
- it "should pass -Xprop.erty=value as -J-Djruby.prop.erty=value" do
92
- jruby_launcher_args("-Xprop.erty=value").should include("-Djruby.prop.erty=value")
93
- end
94
-
95
- it "should pass -Xproperties as --properties" do
96
- jruby_launcher_args("-Xproperties").should include("--properties")
97
- end
98
-
99
- it "should allow max heap to be overridden" do
100
- jruby_launcher_args("-J-Xmx256m").should include("-Xmx256m")
101
- end
102
-
103
- it "should default to 2048k max stack" do
104
- jruby_launcher_args("").should include("-Xss2048k")
105
- end
106
-
107
- it "should allow max stack to be overridden" do
108
- jruby_launcher_args("-J-Xss512k").should include("-Xss512k")
109
- end
110
-
111
- it "should add the contents of the CLASSPATH environment variable" do
112
- with_environment "CLASSPATH" => "some.jar" do
113
- classpath_arg(jruby_launcher_args("")).should =~ /some.jar/
114
- end
115
- end
116
-
117
- it "should add the classpath elements in proper order" do
118
- s = File::PATH_SEPARATOR
119
- with_environment "CLASSPATH" => "some-env.jar" do
120
- args = jruby_launcher_args("-Xcp:a some-other.jar -Xcp:p some.jar")
121
- classpath_arg(args).should =~ /some.jar.*#{s}some-env.jar#{s}some-other.jar/
122
- end
123
- end
124
-
125
- it "should use the --server compiler" do
126
- jruby_launcher_args("--server").should include("-server")
127
- end
128
-
129
- it "should use the --client compiler" do
130
- jruby_launcher_args("--client").should include("-client")
131
- end
132
-
133
- it "should set the JMX settings when --manage is present" do
134
- jruby_launcher_args("--manage").should include("-Dcom.sun.management.jmxremote", "-Djruby.management.enabled=true")
135
- end
136
-
137
- it "should set the headless flag when --headless is present" do
138
- jruby_launcher_args("--headless").should include("-Djava.awt.headless=true")
139
- end
140
-
141
- it "should pass -Xprof when --sample is present" do
142
- jruby_launcher_args("--sample").should include("-Xprof")
143
- end
144
-
145
- it "should stop argument processing when a -- is seen" do
146
- jruby_launcher_args("-- -Xhelp -Xtrace --headless").should include("-Xhelp", "-Xtrace", "--headless")
147
- end
148
-
149
- # JRUBY-4151
150
- it "should properly handle single quotes" do
151
- jruby_launcher_args("-e 'ABC DEF'").should include("ABC DEF")
152
- end
153
-
154
- # JRUBY-4581
155
- it "should prepend JRUBY_OPTS to the start of the argument list to process" do
156
- with_environment "JRUBY_OPTS" => "--server -J-Dsome.key=val -rubygems" do
157
- jruby_launcher_args("-e 'ABC DEF'").should include("-server", "-Dsome.key=val", "-rubygems", "-e", "ABC DEF")
158
- end
159
- end
160
-
161
- # JRUBY-4611
162
- it "stops argument processing on first non-option argument" do
163
- jruby_launcher_args("foo.rb --sample")[-2..-1].should == ["foo.rb", "--sample"]
164
- end
165
-
166
- # JRUBY-4608
167
- if RbConfig::CONFIG['target_os'] =~ /darwin/i
168
- it "includes file.encoding=UTF-8 on Mac if JAVA_ENCODING is not set" do
169
- jruby_launcher_args("-e true").should include("-Dfile.encoding=UTF-8")
170
- with_environment "JAVA_ENCODING" => "MacRoman" do
171
- jruby_launcher_args("-e true").should_not include("-Dfile.encoding=UTF-8")
172
- end
173
- end
174
- end
175
-
176
- it "does not crash on empty args" do
177
- jruby_launcher_args("-e ''").should include("-e")
178
- jruby_launcher("-Xtrace '' 2>&1").should =~ /-Xtrace/
179
- jruby_launcher("-Xjdkhome '' 2>&1").should =~ /-Xjdkhome/
180
- end
181
-
182
- # JRUBY-4706
183
- it "should put JRuby on regular classpath when -Xnobootclasspath is used" do
184
- # Java 9+ do not like bootclasspath so we do not use it
185
- skip if ENV_JAVA['java.specification.version'].to_i >= 9
186
-
187
- args = jruby_launcher_args("-e true")
188
- args.grep(/Xbootclasspath/).should_not be_empty
189
- args = jruby_launcher_args("-Xnobootclasspath -e true")
190
- args.grep(/Xbootclasspath/).should be_empty
191
- end
192
-
193
- it "should put JRuby on regular classpath when VERIFY_JRUBY is set" do
194
- with_environment "VERIFY_JRUBY" => "true" do
195
- args = jruby_launcher_args("-e true")
196
- args.grep(/Xbootclasspath/).should be_empty
197
- end
198
- end
199
-
200
- # JRUBY-4709
201
- it "should include a bare : or ; at the end of the classpath, to include PWD in the path" do
202
- classpath_arg(jruby_launcher_args("-Xnobootclasspath -e true")).should =~
203
- if windows?
204
- /;$/
205
- else
206
- /:$/
207
- end
208
- end
209
-
210
- # JRUBY-6016
211
- it "should honor JAVA_MEM" do
212
- with_environment "JAVA_MEM" => "-Xmx768m" do
213
- jruby_launcher_args("").should include("-Xmx768m")
214
- end
215
- end
216
-
217
- it "should honor JAVA_STACK" do
218
- with_environment "JAVA_STACK" => "-Xss3072k" do
219
- jruby_launcher_args("").should include("-Xss3072k")
220
- end
221
- end
222
-
223
- it "should honor JRUBY_HOME" do
224
- with_environment "JRUBY_HOME" => "/tmp" do
225
- jruby_launcher_args("").should include("-Djruby.home=/tmp")
226
- end
227
- end
228
-
229
- context "JRUBY_HOME set and JRUBY_HOME/lib/jruby.jar exists" do
230
- let(:jruby_home) do
231
- require 'tempfile'
232
- t = Tempfile.new("jruby_home")
233
- t.path.tap { t.close! }
234
- end
235
-
236
- before do
237
- FileUtils.mkdir_p(File.join(jruby_home, "lib"))
238
- FileUtils.touch(File.join(jruby_home, "lib", "jruby.jar"))
239
- end
240
- after { FileUtils.rm_rf jruby_home }
241
-
242
- it "should add jruby.jar to the bootclasspath" do
243
- # Java 9+ do not like bootclasspath so we do not use it
244
- skip if ENV_JAVA['java.specification.version'].to_i >= 9
245
-
246
- with_environment "JRUBY_HOME" => jruby_home do
247
- jruby_launcher_args("").should include("-Xbootclasspath/a:#{jruby_home}/lib/jruby.jar")
248
- end
249
- end
250
- end
251
-
252
- it "should place user-supplied options after default options" do
253
- args = jruby_launcher_args("-J-Djruby.home=/tmp")
254
- home_args = args.select {|x| x =~ /^-Djruby\.home/ }
255
- home_args.length.should == 2
256
- home_args.last.should == "-Djruby.home=/tmp"
257
- end
258
-
259
- it "should print the version" do
260
- jruby_launcher("-Xversion 2>&1").should =~ /Launcher Version #{JRubyLauncher::VERSION}/
261
- end
262
-
263
- it "should not crash on format-strings" do
264
- jruby_launcher_args("-e %s%s%s%s%s 2>&1").should include('-e', '%s%s%s%s%s')
265
- end
266
-
267
- it "should use --module-path on java9+ jruby 9.2.1+" do
268
- # versions prior to 9.2.1 do not set a predictable module name
269
- skip unless (JRUBY_VERSION.split('.') <=> ['9', '2', '1']) >= 0
270
-
271
- Dir.mktmpdir do |java_home|
272
- FileUtils.mkdir_p(File.join(java_home, 'lib/modules'))
273
- with_environment 'JAVA_HOME' => java_home do
274
- jruby_launcher_args('').grep(/^--module-path=.*jruby.jar/).should_not be_empty
275
- end
276
- end
277
- end
278
-
279
- it "should not treat CLASSPATH entries as modules on java9+" do
280
- Dir.mktmpdir do |java_home|
281
- Dir.mkdir(File.join(java_home, 'jmods'))
282
- with_environment 'JAVA_HOME' => java_home, 'CLASSPATH' => '/some/lib.jar' do
283
- jruby_launcher_args('').grep(/^--module-path=.*\/some\/lib.jar/).should be_empty
284
- classpath_arg(jruby_launcher_args('')).should =~ /\/some\/lib.jar/
285
- end
286
- end
287
- end
288
- end