MCPcopy Create free account
hub / github.com/cli/cli / TestLoginAddsHostIfNotAlreadyAdded

Function TestLoginAddsHostIfNotAlreadyAdded

internal/config/auth_config_test.go:333–344  ·  view source on GitHub ↗
(t *testing.T)

Source from the content-addressed store, hash-verified

331}
332
333func TestLoginAddsHostIfNotAlreadyAdded(t *testing.T) {
334 // Given we are logged in
335 authCfg := newTestAuthConfig(t)
336 _, err := authCfg.Login("github.com", "test-user", "test-token", "ssh", false)
337 require.NoError(t, err)
338
339 // When we get the hosts
340 hosts := authCfg.Hosts()
341
342 // Then it includes our logged in host
343 require.Contains(t, hosts, "github.com")
344}
345
346// This test mimics the behaviour of logging in with a token, not providing
347// a git protocol, and using secure storage.

Callers

nothing calls this directly

Calls 4

newTestAuthConfigFunction · 0.85
ContainsMethod · 0.80
LoginMethod · 0.65
HostsMethod · 0.65

Tested by

no test coverage detected