-
Notifications
You must be signed in to change notification settings - Fork 159
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
[Flaky Test]: TestStandaloneUpgradeWithGPGFallbackOneRemoteFailing tried to download an incorrect artifact #4275
Comments
Pinging @elastic/elastic-agent (Team:Elastic-Agent) |
Looks like the fixture was setup properly: {
"Time": "2024-02-17T00:37:16.633253Z",
"Action": "output",
"Package": "github.com/elastic/elastic-agent/testing/integration(windows-amd64-2022-upgrade)(sudo)",
"Test": "TestStandaloneUpgradeWithGPGFallbackOneRemoteFailing",
"Output": " upgrade_gpg_test.go:122: Testing Elastic Agent upgrade from 8.13.0-SNAPSHOT to 8.12.2...\n"
}
{
"Time": "2024-02-17T00:37:40.9782958Z",
"Action": "output",
"Package": "github.com/elastic/elastic-agent/testing/integration(windows-amd64-2022-upgrade)(sudo)",
"Test": "TestStandaloneUpgradeWithGPGFallbackOneRemoteFailing",
"Output": " fixture.go:632: >> running binary with: [C:\\Users\\windows\\AppData\\Local\\Temp\\TestStandaloneUpgradeWithGPGFallbackOneRemoteFailing607891235\\001\\elastic-agent-8.13.0-SNAPSHOT-windows-x86_64\\elastic-agent.exe version --binary-only --yaml]\n"
}
{
"Time": "2024-02-17T00:37:41.2865001Z",
"Action": "output",
"Package": "github.com/elastic/elastic-agent/testing/integration(windows-amd64-2022-upgrade)(sudo)",
"Test": "TestStandaloneUpgradeWithGPGFallbackOneRemoteFailing",
"Output": " fixture.go:632: >> running binary with: [C:\\Users\\windows\\AppData\\Local\\Temp\\TestStandaloneUpgradeWithGPGFallbackOneRemoteFailing607891235\\002\\elastic-agent-8.12.2-windows-x86_64\\elastic-agent.exe version --binary-only --yaml]\n"
}
{
"Time": "2024-02-17T00:37:41.5485431Z",
"Action": "output",
"Package": "github.com/elastic/elastic-agent/testing/integration(windows-amd64-2022-upgrade)(sudo)",
"Test": "TestStandaloneUpgradeWithGPGFallbackOneRemoteFailing",
"Output": " fixture.go:632: >> running binary with: [C:\\Users\\windows\\AppData\\Local\\Temp\\TestStandaloneUpgradeWithGPGFallbackOneRemoteFailing607891235\\001\\elastic-agent-8.13.0-SNAPSHOT-windows-x86_64\\elastic-agent.exe install --force --non-interactive]\n"
}
{
"Time": "2024-02-17T00:38:16.2139117Z",
"Action": "output",
"Package": "github.com/elastic/elastic-agent/testing/integration(windows-amd64-2022-upgrade)(sudo)",
"Test": "TestStandaloneUpgradeWithGPGFallbackOneRemoteFailing",
"Output": " upgrader.go:279: Upgrading from version \"8.13.0-SNAPSHOT-f23c279e1c13095118d60253c245bfe9add68f4f\" to version \"8.12.2-d0b9e4834be63cadeca3c84c6d6cf1c034b5b35a\"\n"
}
{
"Time": "2024-02-17T00:38:16.2139117Z",
"Action": "output",
"Package": "github.com/elastic/elastic-agent/testing/integration(windows-amd64-2022-upgrade)(sudo)",
"Test": "TestStandaloneUpgradeWithGPGFallbackOneRemoteFailing",
"Output": " fixture.go:632: >> running binary with: [C:\\Program Files\\Elastic\\Agent\\elastic-agent.exe upgrade 8.12.2 --pgp abcDEFgGIN PGP PUBLIC KEY BLOCK-----\n"
} The error is coming from the agent itself when it tries to upgrade from 8.13.0-SNAPSHOT to 8.12.2 and cannot download the artifacts. |
The only difference with a previously passed test I could find is this: Failing test {
"Time": "2024-02-17T00:38:16.2139117Z",
"Action": "output",
"Package": "github.com/elastic/elastic-agent/testing/integration(windows-amd64-2022-upgrade)(sudo)",
"Test": "TestStandaloneUpgradeWithGPGFallbackOneRemoteFailing",
"Output": " upgrader.go:279: Upgrading from version \"8.13.0-SNAPSHOT-f23c279e1c13095118d60253c245bfe9add68f4f\" to version \"8.12.2-d0b9e4834be63cadeca3c84c6d6cf1c034b5b35a\"\n"
} Passing test {
"Time": "2024-02-16T00:45:24.3896816Z",
"Action": "output",
"Package": "github.com/elastic/elastic-agent/testing/integration(windows-amd64-2022-upgrade)(sudo)",
"Test": "TestStandaloneUpgradeWithGPGFallbackOneRemoteFailing",
"Output": " upgrader.go:279: Upgrading from version \"8.13.0-SNAPSHOT-f23c279e1c13095118d60253c245bfe9add68f4f\" to version \"8.12.2-SNAPSHOT-44c88d0ef5014dc7e8db82876bca91763664c7f2\"\n"
} So, the failing test is trying to fetch the release |
@pierrehilbert have we seen this before, is it related to our release process perhaps? |
I think I found the cause, the test setups the source URI as an empty string here:
When running the upgrade the agent is checking if the source URI is empty and replaces it with the value from settings:
elastic-agent/internal/pkg/agent/application/upgrade/upgrade.go Lines 397 to 403 in f23c279
I suppose in this case it would be What is surprising is that the test passed before and it looks like the upgrade command has a fallback to the released version which didn't work because the version is not released yet. I think we should check if the version is released in the test case before running the upgrade. |
The root cause of this is that https://artifacts-api.elastic.co/v1/versions/ returns Either we should not put versions on the API until they're on our CDN or introduce an additional check in elastic-agent/testing/upgradetest/versions.go Lines 52 to 126 in f23c279
|
Failing test case
TestStandaloneUpgradeWithGPGFallbackOneRemoteFailing
Error message
404 when downloading an artifact
Build
https://buildkite.com/elastic/elastic-agent/builds/7244#018db45f-064c-4ba3-a4eb-eb93b04613f1
OS
Linux, Mac, Windows
Stacktrace and notes
note the artifact URL is incorrect and contains 2 different versions in it.
The text was updated successfully, but these errors were encountered: