Skip to content

Commit e4ce993

Browse files
authored
[Entitlements] Fix PolicyUtils and PolicyUtilsTests on Windows (#126185)
This PR fixes 2 issues discovered around PolicyUtils (and PolicyUtilsTests) when running CI on Windows: - in tests, absolute paths like always are different, this fix updates the tests to account for the difference. - on Windows, Files.move was failing because we were parsing the Entitlement policy but not closing the stream in a timely manner. This causes plugin installation (and related CI tests) to fail 70% of the time. Fixed by closing the stream properly Fixes #126176
1 parent 279498d commit e4ce993

File tree

3 files changed

+22
-9
lines changed

3 files changed

+22
-9
lines changed

libs/entitlement/src/main/java/org/elasticsearch/entitlement/runtime/policy/PolicyUtils.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,9 @@ private static void validatePolicyScopes(String layerName, Policy policy, Set<St
141141
public static Policy parsePolicyIfExists(String pluginName, Path pluginRoot, boolean isExternalPlugin) throws IOException {
142142
Path policyFile = pluginRoot.resolve(POLICY_FILE_NAME);
143143
if (Files.exists(policyFile)) {
144-
return new PolicyParser(Files.newInputStream(policyFile, StandardOpenOption.READ), pluginName, isExternalPlugin).parsePolicy();
144+
try (var inputStream = Files.newInputStream(policyFile, StandardOpenOption.READ)) {
145+
return new PolicyParser(inputStream, pluginName, isExternalPlugin).parsePolicy();
146+
}
145147
}
146148
return new Policy(pluginName, List.of());
147149
}

libs/entitlement/src/main/java/org/elasticsearch/entitlement/runtime/policy/entitlements/FilesEntitlement.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
import org.elasticsearch.entitlement.runtime.policy.Platform;
1717
import org.elasticsearch.entitlement.runtime.policy.PolicyValidationException;
1818

19+
import java.nio.file.FileSystems;
1920
import java.nio.file.Path;
2021
import java.util.ArrayList;
2122
import java.util.HashMap;
@@ -31,6 +32,8 @@
3132
*/
3233
public record FilesEntitlement(List<FileData> filesData) implements Entitlement {
3334

35+
public static final String SEPARATOR = FileSystems.getDefault().getSeparator();
36+
3437
public static final FilesEntitlement EMPTY = new FilesEntitlement(List.of());
3538

3639
public enum Mode {
@@ -160,7 +163,7 @@ public FileData withPlatform(Platform platform) {
160163

161164
@Override
162165
public String description() {
163-
return Strings.format("[%s] <%s>/%s%s", mode, baseDir, relativePath, exclusive ? " (exclusive)" : "");
166+
return Strings.format("[%s] <%s>%s%s%s", mode, baseDir, SEPARATOR, relativePath, exclusive ? " (exclusive)" : "");
164167
}
165168
}
166169

@@ -192,7 +195,7 @@ public FileData withPlatform(Platform platform) {
192195

193196
@Override
194197
public String description() {
195-
return Strings.format("[%s] <%s>/<%s>%s", mode, baseDir, setting, exclusive ? " (exclusive)" : "");
198+
return Strings.format("[%s] <%s>%s<%s>%s", mode, baseDir, SEPARATOR, setting, exclusive ? " (exclusive)" : "");
196199
}
197200
}
198201

libs/entitlement/src/test/java/org/elasticsearch/entitlement/runtime/policy/PolicyUtilsTests.java

+14-6
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import java.util.List;
2828
import java.util.Set;
2929

30+
import static org.elasticsearch.entitlement.runtime.policy.entitlements.FilesEntitlement.SEPARATOR;
3031
import static org.elasticsearch.test.LambdaMatchers.transformedMatch;
3132
import static org.hamcrest.Matchers.both;
3233
import static org.hamcrest.Matchers.containsInAnyOrder;
@@ -317,6 +318,7 @@ public void testFormatPolicyWithMultipleScopes() {
317318
/** Test that we can format some simple files entitlement properly */
318319
public void testFormatFilesEntitlement() {
319320
var pathAB = Path.of("/a/b");
321+
var pathCD = Path.of("c/d");
320322
var policy = new Policy(
321323
"test-plugin",
322324
List.of(
@@ -326,11 +328,7 @@ public void testFormatFilesEntitlement() {
326328
new FilesEntitlement(
327329
List.of(
328330
FilesEntitlement.FileData.ofPath(pathAB, FilesEntitlement.Mode.READ_WRITE),
329-
FilesEntitlement.FileData.ofRelativePath(
330-
Path.of("c/d"),
331-
FilesEntitlement.BaseDir.DATA,
332-
FilesEntitlement.Mode.READ
333-
)
331+
FilesEntitlement.FileData.ofRelativePath(pathCD, FilesEntitlement.BaseDir.DATA, FilesEntitlement.Mode.READ)
334332
)
335333
)
336334
)
@@ -353,7 +351,17 @@ public void testFormatFilesEntitlement() {
353351
)
354352
);
355353
Set<String> actual = PolicyUtils.getEntitlementsDescriptions(policy);
356-
assertThat(actual, containsInAnyOrder("files [READ_WRITE] " + pathAB, "files [READ] <DATA>/c/d", "files [READ] <DATA>/<setting>"));
354+
var pathABString = pathAB.toAbsolutePath().toString();
355+
var pathCDString = SEPARATOR + pathCD.toString();
356+
var pathSettingString = SEPARATOR + "<setting>";
357+
assertThat(
358+
actual,
359+
containsInAnyOrder(
360+
"files [READ_WRITE] " + pathABString,
361+
"files [READ] <DATA>" + pathCDString,
362+
"files [READ] <DATA>" + pathSettingString
363+
)
364+
);
357365
}
358366

359367
/** Test that we can format some simple files entitlement properly */

0 commit comments

Comments
 (0)