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

Function TestDefaultHostWorksRightAfterMigration

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

Source from the content-addressed store, hash-verified

737}
738
739func TestDefaultHostWorksRightAfterMigration(t *testing.T) {
740 // Given we have logged in before migration to an enterprise host
741 authCfg := newTestAuthConfig(t)
742 _, err := preMigrationLogin(authCfg, "ghe.io", "test-user", "test-token", "ssh", false)
743 require.NoError(t, err)
744
745 // When we migrate
746 var m migration.MultiAccount
747 c := cfg{authCfg.cfg}
748 require.NoError(t, c.Migrate(m))
749
750 // Then the default host is still the enterprise host
751 defaultHost, source := authCfg.DefaultHost()
752 require.Equal(t, "ghe.io", defaultHost)
753 require.Equal(t, hostsKey, source)
754}
755
756func TestTokenWorksRightAfterMigration(t *testing.T) {
757 // 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
DefaultHostMethod · 0.65

Tested by

no test coverage detected