MCPcopy Index your code
hub / github.com/cli/cli / stubResolveVersion

Function stubResolveVersion

pkg/cmd/skills/install/install_test.go:217–226  ·  view source on GitHub ↗

--- HTTP stub helpers --- stubResolveVersion registers API stubs for latest release + tag resolution.

(reg *httpmock.Registry, owner, repo, tag, sha string)

Source from the content-addressed store, hash-verified

215
216// stubResolveVersion registers API stubs for latest release + tag resolution.
217func stubResolveVersion(reg *httpmock.Registry, owner, repo, tag, sha string) {
218 reg.Register(
219 httpmock.REST("GET", fmt.Sprintf("repos/%s/%s/releases/latest", owner, repo)),
220 httpmock.StringResponse(fmt.Sprintf(`{"tag_name": %q}`, tag)),
221 )
222 reg.Register(
223 httpmock.REST("GET", fmt.Sprintf("repos/%s/%s/git/ref/tags/%s", owner, repo, tag)),
224 httpmock.StringResponse(fmt.Sprintf(`{"object": {"sha": %q, "type": "commit"}}`, sha)),
225 )
226}
227
228// stubDiscoverTree registers the single recursive-tree call used by DiscoverSkills.
229func stubDiscoverTree(reg *httpmock.Registry, owner, repo, sha, treeJSON string) {

Calls 3

RESTFunction · 0.92
StringResponseFunction · 0.92
RegisterMethod · 0.45

Tested by

no test coverage detected