28
28
import java .nio .file .Files ;
29
29
import java .nio .file .NoSuchFileException ;
30
30
import java .nio .file .Path ;
31
+ import java .nio .file .StandardOpenOption ;
31
32
import java .util .ArrayList ;
32
33
import java .util .Arrays ;
33
34
import java .util .List ;
@@ -92,19 +93,23 @@ public static OutputAnalyzer buildAndRunSystemdJava(SystemdRunOptions opts) thro
92
93
try {
93
94
return SystemdTestUtils .systemdRunJava (opts );
94
95
} finally {
95
- try {
96
- if (files .memory () != null ) {
97
- Files .delete (files .memory ());
98
- }
99
- if (files .cpu () != null ) {
100
- Files .delete (files .cpu ());
101
- }
102
- if (files .sliceDotDDir () != null ) {
103
- FileUtils .deleteFileTreeUnchecked (files .sliceDotDDir ());
104
- }
105
- } catch (NoSuchFileException e ) {
106
- // ignore
96
+ cleanupFiles (files );
97
+ }
98
+ }
99
+
100
+ private static void cleanupFiles (ResultFiles files ) throws IOException {
101
+ try {
102
+ if (files .memory () != null ) {
103
+ Files .delete (files .memory ());
107
104
}
105
+ if (files .cpu () != null ) {
106
+ Files .delete (files .cpu ());
107
+ }
108
+ if (files .sliceDotDDir () != null ) {
109
+ FileUtils .deleteFileTreeUnchecked (files .sliceDotDDir ());
110
+ }
111
+ } catch (NoSuchFileException e ) {
112
+ // ignore
108
113
}
109
114
}
110
115
@@ -135,15 +140,23 @@ private static ResultFiles buildSystemdSlices(SystemdRunOptions runOpts) throws
135
140
if (runOpts .hasSliceDLimit ()) {
136
141
String dirName = String .format ("%s.slice.d" , SLICE_NAMESPACE_PREFIX );
137
142
sliceDotDDir = SYSTEMD_CONFIG_HOME .resolve (Path .of (dirName ));
138
- Files .createDirectory (sliceDotDDir );
143
+ // Using createDirectories since we only need to ensure the directory
144
+ // exists. Ignore it if already existent.
145
+ Files .createDirectories (sliceDotDDir );
139
146
140
147
if (runOpts .sliceDMemoryLimit != null ) {
141
148
Path memoryConfig = sliceDotDDir .resolve (Path .of (SLICE_D_MEM_CONFIG_FILE ));
142
- Files .writeString (memoryConfig , getMemoryDSliceContent (runOpts ));
149
+ Files .writeString (memoryConfig ,
150
+ getMemoryDSliceContent (runOpts ),
151
+ StandardOpenOption .TRUNCATE_EXISTING ,
152
+ StandardOpenOption .CREATE );
143
153
}
144
154
if (runOpts .sliceDCpuLimit != null ) {
145
155
Path cpuConfig = sliceDotDDir .resolve (Path .of (SLICE_D_CPU_CONFIG_FILE ));
146
- Files .writeString (cpuConfig , getCPUDSliceContent (runOpts ));
156
+ Files .writeString (cpuConfig ,
157
+ getCPUDSliceContent (runOpts ),
158
+ StandardOpenOption .TRUNCATE_EXISTING ,
159
+ StandardOpenOption .CREATE );
147
160
}
148
161
}
149
162
@@ -159,7 +172,7 @@ private static ResultFiles buildSystemdSlices(SystemdRunOptions runOpts) throws
159
172
throw new AssertionError ("Failed to write systemd slice files" );
160
173
}
161
174
162
- systemdDaemonReload (cpu );
175
+ systemdDaemonReload (cpu , memory , sliceDotDDir );
163
176
164
177
return new ResultFiles (memory , cpu , sliceDotDDir );
165
178
}
@@ -175,12 +188,25 @@ private static String sliceNameCpu(SystemdRunOptions runOpts) {
175
188
return String .format ("%s-cpu" , slice );
176
189
}
177
190
178
- private static void systemdDaemonReload (Path cpu ) throws Exception {
191
+ private static void systemdDaemonReload (Path cpu , Path memory , Path sliceDdir ) throws Exception {
179
192
List <String > daemonReload = systemCtl ();
180
193
daemonReload .add ("daemon-reload" );
181
194
182
195
if (execute (daemonReload ).getExitValue () != 0 ) {
183
- throw new AssertionError ("Failed to reload systemd daemon" );
196
+ if (RUN_AS_USER ) {
197
+ cleanupFiles (new ResultFiles (cpu , memory , sliceDdir ));
198
+ // When run as user the systemd user manager needs to be
199
+ // accessible and working. This is usually the case when
200
+ // connected via SSH or user login, but may not work for
201
+ // sessions set up via 'su <user>' or similar.
202
+ // In that case, 'systemctl --user status' usually doesn't
203
+ // work. There is no other option than skip the test.
204
+ String msg = "Service user@.service not properly configured. " +
205
+ "Skipping the test!" ;
206
+ throw new SkippedException (msg );
207
+ } else {
208
+ throw new AssertionError ("Failed to reload systemd daemon" );
209
+ }
184
210
}
185
211
}
186
212
1 commit comments
openjdk-notifier[bot] commentedon Sep 20, 2024
Review
Issues