-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31c29fa
commit 646adbc
Showing
5 changed files
with
198 additions
and
54 deletions.
There are no files selected for viewing
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,5 @@ | ||
email=${ARTIFACTORY_EMAIL} | ||
%{ for REPO in REPOS ~} | ||
${REPO.SCOPE}registry=${JFROG_URL}/artifactory/api/npm/${REPO.NAME} | ||
//${JFROG_HOST}/artifactory/api/npm/${REPO.NAME}/:_authToken=${ARTIFACTORY_ACCESS_TOKEN} | ||
%{ endfor ~} |
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import { serve } from "bun"; | ||
import { describe } from "bun:test"; | ||
import { describe, expect, it } from "bun:test"; | ||
import { | ||
createJSONResponse, | ||
findResourceInstance, | ||
runTerraformInit, | ||
runTerraformApply, | ||
testRequiredVariables, | ||
} from "../test"; | ||
|
||
|
@@ -32,10 +34,98 @@ describe("jfrog-token", async () => { | |
port: 0, | ||
}); | ||
|
||
testRequiredVariables(import.meta.dir, { | ||
agent_id: "some-agent-id", | ||
jfrog_url: "http://" + fakeFrogHost.hostname + ":" + fakeFrogHost.port, | ||
artifactory_access_token: "XXXX", | ||
package_managers: "{}", | ||
const fakeFrogHostAndPort = `${fakeFrogHost.hostname}:${fakeFrogHost.port}`; | ||
const fakeFrogUrl = `http://${fakeFrogHostAndPort}`; | ||
|
||
it("can run apply with required variables", async () => { | ||
testRequiredVariables(import.meta.dir, { | ||
agent_id: "some-agent-id", | ||
jfrog_url: fakeFrogUrl, | ||
artifactory_access_token: "XXXX", | ||
package_managers: "{}", | ||
}); | ||
}); | ||
|
||
it("generates an npmrc with scoped repos", async () => { | ||
const state = await runTerraformApply(import.meta.dir, { | ||
agent_id: "some-agent-id", | ||
jfrog_url: fakeFrogUrl, | ||
artifactory_access_token: "XXXX", | ||
package_managers: JSON.stringify({ | ||
npm: ["global", "@foo:foo", "@bar:bar"], | ||
}), | ||
}); | ||
const coderScript = findResourceInstance(state, "coder_script"); | ||
const npmrcStanza = `cat << EOF > ~/.npmrc | ||
[email protected] | ||
registry=${fakeFrogUrl}/artifactory/api/npm/global | ||
//${fakeFrogHostAndPort}/artifactory/api/npm/global/:_authToken=xxx | ||
@foo:registry=${fakeFrogUrl}/artifactory/api/npm/foo | ||
//${fakeFrogHostAndPort}/artifactory/api/npm/foo/:_authToken=xxx | ||
@bar:registry=${fakeFrogUrl}/artifactory/api/npm/bar | ||
//${fakeFrogHostAndPort}/artifactory/api/npm/bar/:_authToken=xxx | ||
EOF`; | ||
expect(coderScript.script).toContain(npmrcStanza); | ||
expect(coderScript.script).toContain('jf npmc --global --repo-resolve "global"'); | ||
expect(coderScript.script).toContain('if [ -z "YES" ]; then\n not_configured npm'); | ||
}); | ||
|
||
it("generates a pip config with extra-indexes", async () => { | ||
const state = await runTerraformApply(import.meta.dir, { | ||
agent_id: "some-agent-id", | ||
jfrog_url: fakeFrogUrl, | ||
artifactory_access_token: "XXXX", | ||
package_managers: JSON.stringify({ | ||
pypi: ["global", "foo", "bar"], | ||
}), | ||
}); | ||
const coderScript = findResourceInstance(state, "coder_script"); | ||
const pipStanza = `cat << EOF > ~/.pip/pip.conf | ||
[global] | ||
index-url = https://default:xxx@${fakeFrogHostAndPort}/artifactory/api/pypi/global/simple | ||
extra-index-url = | ||
https://default:xxx@${fakeFrogHostAndPort}/artifactory/api/pypi/foo/simple | ||
https://default:xxx@${fakeFrogHostAndPort}/artifactory/api/pypi/bar/simple | ||
EOF`; | ||
expect(coderScript.script).toContain(pipStanza); | ||
expect(coderScript.script).toContain('jf pipc --global --repo-resolve "global"'); | ||
expect(coderScript.script).toContain('if [ -z "YES" ]; then\n not_configured pypi'); | ||
}); | ||
|
||
it("registers multiple docker repos", async () => { | ||
const state = await runTerraformApply(import.meta.dir, { | ||
agent_id: "some-agent-id", | ||
jfrog_url: fakeFrogUrl, | ||
artifactory_access_token: "XXXX", | ||
package_managers: JSON.stringify({ | ||
docker: ["foo.jfrog.io", "bar.jfrog.io", "baz.jfrog.io"], | ||
}), | ||
}); | ||
const coderScript = findResourceInstance(state, "coder_script"); | ||
const dockerStanza = `register_docker "foo.jfrog.io" | ||
register_docker "bar.jfrog.io" | ||
register_docker "baz.jfrog.io"`; | ||
expect(coderScript.script).toContain(dockerStanza); | ||
expect(coderScript.script).toContain('if [ -z "YES" ]; then\n not_configured docker'); | ||
}); | ||
|
||
it("sets goproxy with multiple repos", async () => { | ||
const state = await runTerraformApply(import.meta.dir, { | ||
agent_id: "some-agent-id", | ||
jfrog_url: fakeFrogUrl, | ||
artifactory_access_token: "XXXX", | ||
package_managers: JSON.stringify({ | ||
go: ["foo", "bar", "baz"], | ||
}), | ||
}); | ||
const proxyEnv = findResourceInstance(state, "coder_env", "goproxy"); | ||
const proxies = `https://default:xxx@${fakeFrogHostAndPort}/artifactory/api/go/foo,https://default:xxx@${fakeFrogHostAndPort}/artifactory/api/go/bar,https://default:xxx@${fakeFrogHostAndPort}/artifactory/api/go/baz`; | ||
expect(proxyEnv["value"]).toEqual(proxies); | ||
|
||
const coderScript = findResourceInstance(state, "coder_script"); | ||
expect(coderScript.script).toContain('jf goc --global --repo-resolve "foo"'); | ||
expect(coderScript.script).toContain('if [ -z "YES" ]; then\n not_configured go'); | ||
}); | ||
}); |
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
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,6 @@ | ||
[global] | ||
index-url = https://${ARTIFACTORY_USERNAME}:${ARTIFACTORY_ACCESS_TOKEN}@${JFROG_HOST}/artifactory/api/pypi/${try(element(REPOS, 0), "")}/simple | ||
extra-index-url = | ||
%{ for REPO in try(slice(REPOS, 1, length(REPOS)), []) ~} | ||
https://${ARTIFACTORY_USERNAME}:${ARTIFACTORY_ACCESS_TOKEN}@${JFROG_HOST}/artifactory/api/pypi/${REPO}/simple | ||
%{ endfor ~} |
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