| 12345678910111213141516171819202122232425262728293031323334 |
- package client
- import (
- "encoding/hex"
- "gopkg.in/jcmturner/gokrb5.v7/config"
- "gopkg.in/jcmturner/gokrb5.v7/keytab"
- "gopkg.in/jcmturner/gokrb5.v7/test"
- "gopkg.in/jcmturner/gokrb5.v7/test/testdata"
- "testing"
- )
- func TestClient_Login_DNSKDCs(t *testing.T) {
- test.Privileged(t)
- //ns := os.Getenv("DNSUTILS_OVERRIDE_NS")
- //if ns == "" {
- // os.Setenv("DNSUTILS_OVERRIDE_NS", testdata.TEST_NS)
- //}
- c, _ := config.NewConfigFromString(testdata.TEST_KRB5CONF)
- // Set to lookup KDCs in DNS
- c.LibDefaults.DNSLookupKDC = true
- //Blank out the KDCs to ensure they are not being used
- c.Realms = []config.Realm{}
- b, _ := hex.DecodeString(testdata.TESTUSER1_KEYTAB)
- kt := keytab.New()
- kt.Unmarshal(b)
- cl := NewClientWithKeytab("testuser1", "TEST.GOKRB5", kt, c)
- err := cl.Login()
- if err != nil {
- t.Errorf("error on logging in using DNS lookup of KDCs: %v\n", err)
- }
- }
|