Skip to content
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

Add integration test to update an agent with another built from the same commit #4256

Merged
merged 8 commits into from
Feb 22, 2024

Conversation

pchila
Copy link
Member

@pchila pchila commented Feb 14, 2024

What does this PR do?

This PR will add integration tests checking that:

  • we cannot upgrade an agent with the exact same version
  • we can modify the version of the agent package and the upgrade using this modified version with an agent built from the same commit

Why is it important?

The new integration tests prove that #4193 makes it possible to have 2 agent installs from the same hash at the same time on disk (we have this situation when performing an upgrade before the end of the grace period).

It also proves that we can use the same package built from the commit to test certain upgrade flows in CI.

Checklist

  • My code follows the style guidelines of this project
  • I have commented my code, particularly in hard-to-understand areas
  • [ ] I have made corresponding changes to the documentation
  • [ ] I have made corresponding change to the default configuration files
  • [ ] I have added tests that prove my fix is effective or that my feature works
  • [ ] I have added an entry in ./changelog/fragments using the changelog tool
  • I have added an integration test or an E2E test

Author's Checklist

  • [ ]

How to test this PR locally

The new tests can be run using

GOTEST_FLAGS="-test.run ^TestStandaloneUpgradeSameCommit$" TEST_PLATFORMS="linux/amd64,windows/amd64"  SNAPSHOT=true TEST_PLATFORMS="linux/amd64/ubuntu" mage integration:test

Related issues

Use cases

Screenshots

Logs

Questions to ask yourself

  • How are we going to support this in production?
  • How are we going to measure its adoption?
  • How are we going to debug this?
  • What are the metrics I should take care of?
  • ...

@mergify mergify bot assigned pchila Feb 14, 2024
Copy link
Contributor

mergify bot commented Feb 14, 2024

This pull request does not have a backport label. Could you fix it @pchila? 🙏
To fixup this pull request, you need to add the backport labels for the needed
branches, such as:

  • backport-v./d./d./d is the label to automatically backport to the 8./d branch. /d is the digit

NOTE: backport-skip has been added to this pull request.

@pchila pchila force-pushed the add-upgrade-collision-test branch 3 times, most recently from 4a8b379 to dce8940 Compare February 15, 2024 17:29
@pchila pchila added Team:Elastic-Agent-Control-Plane Label for the Agent Control Plane team Team:Elastic-Agent Label for the Agent team Testing backport-v8.13.0 Automated backport with mergify skip-changelog and removed backport-skip labels Feb 15, 2024
@pchila pchila force-pushed the add-upgrade-collision-test branch from dce8940 to 55d0041 Compare February 15, 2024 17:34
@pchila pchila marked this pull request as ready for review February 15, 2024 17:34
@pchila pchila requested a review from a team as a code owner February 15, 2024 17:34
@elasticmachine
Copy link
Contributor

Pinging @elastic/elastic-agent-control-plane (Team:Elastic-Agent-Control-Plane)

@pchila pchila requested a review from cmacknz February 15, 2024 17:34
@pchila pchila changed the title WIP - Add integration test to update an agent with itself Add integration test to update an agent with another built from the same commit Feb 15, 2024
@pchila pchila force-pushed the add-upgrade-collision-test branch 2 times, most recently from f3501cf to df22004 Compare February 21, 2024 11:12
@pchila pchila requested a review from AndersonQ February 21, 2024 14:20
@pchila pchila force-pushed the add-upgrade-collision-test branch 2 times, most recently from e247713 to 3edb875 Compare February 21, 2024 16:54

err = upgradetest.PerformUpgrade(ctx, startFixture, endFixture, t,
upgradetest.WithUnprivileged(unprivilegedAvailable),
upgradetest.WithDisableHashCheck(true),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rather than disabling the check, could you invert it? That is require the hash to be the same?

That would enforce that the commit still reads the same after all of the package hacking that goes on as a condition of the test.

Copy link
Member Author

@pchila pchila Feb 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is to disable the check before starting the upgrade in our integration tests: it's the "fix" we have to in order to avoid hash collisions when upgrading from a snapshot to another snapshot of the same version (it has been introduced by @rdner not too long ago).

This is the check that we are actually disabling https://github.com/elastic/elastic-agent/pull/4256/files#diff-4941bb4aa7d421d6eb86b572bc58968a061897540ef25923d5b2460bfdce10e8R230 that would prevent the test to even begin.

This check would be no longer needed if we switch all the test that use snapshots from the unified build to repackaged agents instead (not sure it's applicable to all the tests we have though).

The commit hash after upgrade is checked anyways using the endFixture which in our case has obviously the same hash

@pchila pchila requested a review from cmacknz February 22, 2024 09:36
@pchila pchila force-pushed the add-upgrade-collision-test branch 2 times, most recently from 5b2cb25 to 358f01d Compare February 22, 2024 12:14
Support for build id has been introduced to Local Artifact fetcher but
it interpretes any build metadata as a buildID.
Early release version will use a
<major>.<minor>.<patch>+buildYYYYMMDDHHMMSS format and that has to be
interpreted as a whole version, not a buildID
@pchila pchila force-pushed the add-upgrade-collision-test branch from 358f01d to 1a34675 Compare February 22, 2024 15:56
Copy link

Quality Gate passed Quality Gate passed

Kudos, no new issues were introduced!

0 New issues
0 Security Hotspots
No Coverage information No data about Coverage
0.0% 0.0% Duplication on New Code

See analysis details on SonarQube

@pchila pchila merged commit 993b786 into elastic:main Feb 22, 2024
9 checks passed
mergify bot pushed a commit that referenced this pull request Feb 22, 2024
…ame commit (#4256)

* add integration test

* Decouple packaging functions from global state

* Implement repackaging for tar.gz archives

* Implement repackaging for .zip archives

* Add a test with a repackaged agent

* Change LocalArtifactFetcher to support early release versions

* Separate versions for repackaging and integration test fixtures

(cherry picked from commit 993b786)
pchila added a commit that referenced this pull request Feb 22, 2024
…ame commit (#4256) (#4327)

* add integration test

* Decouple packaging functions from global state

* Implement repackaging for tar.gz archives

* Implement repackaging for .zip archives

* Add a test with a repackaged agent

* Change LocalArtifactFetcher to support early release versions

* Separate versions for repackaging and integration test fixtures

(cherry picked from commit 993b786)

Co-authored-by: Paolo Chilà <paolo.chila@elastic.co>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport-v8.13.0 Automated backport with mergify skip-changelog Team:Elastic-Agent Label for the Agent team Team:Elastic-Agent-Control-Plane Label for the Agent Control Plane team Testing
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Test that the currently installed Elastic Agent version can upgrade to itself
3 participants