-
Notifications
You must be signed in to change notification settings - Fork 27
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
get latest redirects based on nav-data not version metadata #2563
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
e9add7a
split target function into separate file
zchsh 2c6abbd
refactor to fetch with latest sha not ref
zchsh bbc9c8a
update working in test log
zchsh ee8a96e
Merge branch 'main' into zs.ref-for-redirects
zchsh 7513292
Merge branch 'main' into zs.ref-for-redirects
zchsh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
build-libs/__tests__/get-latest-content-sha-for-product.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/** | ||
* Copyright (c) HashiCorp, Inc. | ||
* SPDX-License-Identifier: MPL-2.0 | ||
*/ | ||
|
||
import getLatestContentShaForProduct from '../get-latest-content-sha-for-product' | ||
import fetchGithubFile from '@build-libs/fetch-github-file' | ||
import { PRODUCT_REDIRECT_ENTRIES } from '@build-libs/redirects' | ||
|
||
describe('getLatestContentShaForProduct', () => { | ||
PRODUCT_REDIRECT_ENTRIES.forEach(({ repo, path }) => { | ||
it(`fetches the latest SHA for the "${repo}" repo`, async () => { | ||
const latestSha = await getLatestContentShaForProduct(repo) | ||
expect(typeof latestSha).toBe('string') | ||
}) | ||
|
||
if (['hcp-docs', 'sentinel', 'ptfe-releases'].includes(repo)) { | ||
console.log(`Skipping test for private repo "${repo}"`) | ||
} else { | ||
it(`fetches the latest SHA for the "${repo}" repo, then validates the SHA by fetching redirects`, async () => { | ||
const latestSha = await getLatestContentShaForProduct(repo) | ||
expect(typeof latestSha).toBe('string') | ||
const redirectsFileString = await fetchGithubFile({ | ||
owner: 'hashicorp', | ||
repo: repo, | ||
path: path, | ||
ref: latestSha, | ||
}) | ||
expect(typeof redirectsFileString).toBe('string') | ||
}) | ||
} | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/** | ||
* Copyright (c) HashiCorp, Inc. | ||
* SPDX-License-Identifier: MPL-2.0 | ||
*/ | ||
|
||
/** | ||
* We're using the docs endpoints to fetch the latest SHA, so we use | ||
* the env var for the docs API. | ||
*/ | ||
const MKTG_CONTENT_DOCS_API = process.env.MKTG_CONTENT_DOCS_API | ||
|
||
/** | ||
* A map of all possible `product` slugs to known content API endpoints that | ||
* will return an object with a `ref` property that accurately reflects the | ||
* ref from which the latest content was uploaded. | ||
*/ | ||
const KNOWN_LATEST_REF_ENDPOINTS = { | ||
boundary: '/api/content/boundary/nav-data/latest/docs', | ||
nomad: '/api/content/nomad/nav-data/latest/docs', | ||
vault: '/api/content/vault/nav-data/latest/docs', | ||
vagrant: '/api/content/vagrant/nav-data/latest/docs', | ||
packer: '/api/content/packer/nav-data/latest/docs', | ||
consul: '/api/content/consul/nav-data/latest/docs', | ||
'terraform-docs-common': | ||
'/api/content/terraform-docs-common/nav-data/latest/docs', | ||
'hcp-docs': '/api/content/hcp-docs/nav-data/latest/docs', | ||
'ptfe-releases': '/api/content/ptfe-releases/nav-data/latest/enterprise', | ||
sentinel: '/api/content/sentinel/nav-data/latest/sentinel', | ||
heatlikeheatwave marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
/** | ||
* Fetch the latest sha from the content API for a given product. | ||
* This relies on known `nav-data` endpoints for each product. | ||
* | ||
* @param {string} product | ||
* @returns {Promise<string>} | ||
*/ | ||
async function getLatestContentShaForProduct(product) { | ||
const contentUrl = new URL(MKTG_CONTENT_DOCS_API) | ||
const knownEndpoint = KNOWN_LATEST_REF_ENDPOINTS[product] | ||
if (!knownEndpoint) { | ||
throw new Error( | ||
`getLatestContentShaForProduct failed, with unknown product: ${product}. Please add a known endpoint for this product to KNOWN_LATEST_REF_ENDPOINTS.` | ||
) | ||
} | ||
contentUrl.pathname = knownEndpoint | ||
const latestSha = await fetch(contentUrl.toString()) | ||
.then((resp) => resp.json()) | ||
.then((json) => json.result.sha) | ||
return latestSha | ||
} | ||
|
||
module.exports = getLatestContentShaForProduct |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 may be overlooking something here, but why is this a
.ts
file while the other two are.js
?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 think we'd prefer to use TS in both places... but we import the
redirects
stuff intonext.config.js
, so it needs to be JS rather than TS. Tests can be TS since they don't need to run directly in that context π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.
Ah! Yeah that makes sense.