-
Notifications
You must be signed in to change notification settings - Fork 25.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Entitlements] Fix PolicyUtils and PolicyUtilsTests on Windows #126185
[Entitlements] Fix PolicyUtils and PolicyUtilsTests on Windows #126185
Conversation
Pinging @elastic/es-core-infra (Team:Core/Infra) |
…tte/elasticsearch into entitlements/fix-policy-utils-test
@@ -160,7 +163,7 @@ public FileData withPlatform(Platform platform) { | |||
|
|||
@Override | |||
public String description() { | |||
return Strings.format("[%s] <%s>/%s%s", mode, baseDir, relativePath, exclusive ? " (exclusive)" : ""); | |||
return Strings.format("[%s] <%s>%s%s%s", mode, baseDir, SEPARATOR, relativePath, exclusive ? " (exclusive)" : ""); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the significance of this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To have separators consistent in the output; on Windows that was looking weird, like <DATA>/c\d
This is more cosmetic, but since I fixed the assertion I wanted it to be consistent too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I could have asserted that on Windows the "correct" output was <DATA>/c\d
, but I wanted to have it like <DATA>\c\d
…ic#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 elastic#126176
…ic#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 elastic#126176
…ic#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 elastic#126176
…) (#126234) 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
…) (#126236) 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
…) (#126235) 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
This PR fixes 2 issues discovered around PolicyUtils (and PolicyUtilsTests) when running CI on Windows:
Fixes #126176