Skip to content

Instantly share code, notes, and snippets.

@MichaelSimons
Last active January 23, 2020 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MichaelSimons/ff105372116b994acc05cdb257a4d2c3 to your computer and use it in GitHub Desktop.
Save MichaelSimons/ff105372116b994acc05cdb257a4d2c3 to your computer and use it in GitHub Desktop.
.NET Core Release Test Plan

.NET Core Release Test Plan

Releasing .NET Core is a complex process involving many components, dependencies on external systems and different teams. With the growing usage and success of .NET Core, it is critical that we are able to release with confidence. This requires us to take necessary steps to validate each release was completed as expected. Ideally we would always release the product without issues but that has not been the case so far. We need tests in place to identify issues so that they can be addressed as part of the release tic-toc before customers are impacted.

This document describes how to validate .NET Core releases. This document describes at a broad level what should be validated. It is not intended to describe the minute details.

The document breaks down the items to validate into the following broad groups.

  • Acquisition Artifacts - The primary ways customers acquire the product. e.g. Native Installers
  • Auxiliary Artifacts - Auxiliary artifacts used with product. e.g. NuGet Packages
  • Discovery Mechanisms - The mechanisms customers discover new releases are available. e.g. .NET Web Site

When thinking about how to validate each part of the release, it is important to think about two aspects:

  • Availability - Are the artifacts available?
  • Integrity - Even though an artifact is available, how to we ensure it is the correct artifact for the release?

Acquisition Artifacts

  1. Native Installers (Windows/macOS/Linux)

    Validation:

    1. Availability via DLC/AzLinux
      1. Simple version number checking feels appropriate. Installer unit tests should be validating installer correctness as well as covering upgrade scenarios.
  2. Docker Images

    Validation:

    1. Expected images/tags exist for release
      1. Images contain correct versions
  3. Zips/Tarballs

    Validation:

    1. Expected content exist on DLC and blob storage
      1. Validate published checksums against artifacts
  4. .NET Install Script

    Validation:

    1. Latest per channel and version specific installations work
    2. Ensure dependent artifacts exist e.g. latest.version files
  5. Snaps

    Validation:

    1. Expected snaps are available via snap store
      1. Validate snaps contain the correct versions of the product

    Note: The best investments here would be to automate the Snap building and publishing process.

  6. Source Build

    Validation:

    1. Ensure SDK and Runtime tags and tarballs exist
      1. Ensure distros can build
      2. Ensure tarballs have the right tags for all repos
      3. Make sure all commits in tarball are publicly available
  7. Antares

    Validation:

    TODO: Follow up with leecow on this. Is there value in validating the special antares blob storage publishing? It feels like there is limited value and the Antares team owns the verification of this.

Auxiliary Artifacts

  1. NuGet Packages

    Validation:

    1. Package availability on NuGet.org

    Note: There is automation in place for this today. The problem in this space is that we have overlooked/missed packages on occasion. This is a classic case of garbage in garbage out. We need a better process around identifying the correct list of packages to publish. A potential mitigation would be to require explicit sign-off from the repo owners on what packages to publish. We also may consider creating baselines of the packages we publish. Comparing the current list of packages against the baseline will highlight differences that should be acknowledged.

  2. Symbols

    Validation:

    1. Symbol availability on msdl as well as //SymWeb
      1. Cross check with NuGet packages published to get the symbols list and validate they are available. Need to inspect non-released NuGets to get the full list.
      2. CoreCLR - have some tricky integrity requirements that are covered by manual tests/hard-coded knowledge
  3. Source Tagging

    Validation:

    1. GitHub repos have been tagged appropriately
      1. Tags reference expected shas

Discovery Mechanisms

  1. WebSite

    Validation:

    1. Release tables contain the release
    2. Current version links refer to the release
    3. Tutorials are correct and functional
  2. Announcement

    Validation:

    1. Appropriate announcement exists
      1. Discussion issue exists
      2. dotnet/announcement issue is locked
      3. Labeled appropriately
  3. Blog

    Validation:

    1. Blog exists with appropriate content
  4. Release Notes

    Validation:

    1. Ensure the appropriate release notes have been created/updated appropriately
      1. READMEs
      2. releases-index.json/releases.json
      3. Version specific notes
      4. Known-issues
      5. Supported OS
  5. DockerHub

    Validation:

    1. Appropriate tags are listing in the Full Tag Listing within the descriptions
  6. Snap Store

    Validation:

    1. Appropriate versions are listed in the versions list

Questions

  • How should these release tests get run?

    • Where ever it is feasible, automation should be created.
    • Humans are a good choice in certain areas such as the discovery mechanisms. The human element can add a lot of value to help ensure the best UX for our customers.
  • How do we improve the testing?

    Like with any type of testing, any time there is an issue with a release that is not surfaced via the release tests, we should be asking ourselves "how was this missed". We should be adjusting this test plan appropriately to account for these issues to ensure we can detect them going forward.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment