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

Function TestGitProtocolWorksRightAfterMigration

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

Source from the content-addressed store, hash-verified

703}
704
705func TestGitProtocolWorksRightAfterMigration(t *testing.T) {
706 // Given we have logged in before migration with a non-default git protocol
707 authCfg := newTestAuthConfig(t)
708 _, err := preMigrationLogin(authCfg, "github.com", "test-user", "test-token", "ssh", false)
709 require.NoError(t, err)
710
711 // When we migrate
712 var m migration.MultiAccount
713 c := cfg{authCfg.cfg}
714 require.NoError(t, c.Migrate(m))
715
716 // Then we can still get the git protocol correctly
717 gitProtocol, err := authCfg.cfg.Get([]string{hostsKey, "github.com", gitProtocolKey})
718 require.NoError(t, err)
719 require.Equal(t, "ssh", gitProtocol)
720}
721
722func TestHostsWorksRightAfterMigration(t *testing.T) {
723 // Given we have logged in before migration

Callers

nothing calls this directly

Calls 5

MigrateMethod · 0.95
newTestAuthConfigFunction · 0.85
preMigrationLoginFunction · 0.85
EqualMethod · 0.80
GetMethod · 0.65

Tested by

no test coverage detected