222 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			222 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			Go
		
	
	
	
| package providers
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"net/http"
 | |
| 	"net/http/httptest"
 | |
| 	"net/url"
 | |
| 	"testing"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func testAzureProvider(hostname string) *AzureProvider {
 | |
| 	p := NewAzureProvider(
 | |
| 		&ProviderData{
 | |
| 			ProviderName:      "",
 | |
| 			LoginURL:          &url.URL{},
 | |
| 			RedeemURL:         &url.URL{},
 | |
| 			ProfileURL:        &url.URL{},
 | |
| 			ValidateURL:       &url.URL{},
 | |
| 			ProtectedResource: &url.URL{},
 | |
| 			Scope:             ""})
 | |
| 
 | |
| 	if hostname != "" {
 | |
| 		updateURL(p.Data().LoginURL, hostname)
 | |
| 		updateURL(p.Data().RedeemURL, hostname)
 | |
| 		updateURL(p.Data().ProfileURL, hostname)
 | |
| 		updateURL(p.Data().ValidateURL, hostname)
 | |
| 		updateURL(p.Data().ProtectedResource, hostname)
 | |
| 	}
 | |
| 	return p
 | |
| }
 | |
| 
 | |
| func TestAzureProviderDefaults(t *testing.T) {
 | |
| 	p := testAzureProvider("")
 | |
| 	assert.NotEqual(t, nil, p)
 | |
| 	p.Configure("")
 | |
| 	assert.Equal(t, "Azure", p.Data().ProviderName)
 | |
| 	assert.Equal(t, "common", p.Tenant)
 | |
| 	assert.Equal(t, "https://login.microsoftonline.com/common/oauth2/authorize",
 | |
| 		p.Data().LoginURL.String())
 | |
| 	assert.Equal(t, "https://login.microsoftonline.com/common/oauth2/token",
 | |
| 		p.Data().RedeemURL.String())
 | |
| 	assert.Equal(t, "https://graph.microsoft.com/v1.0/me",
 | |
| 		p.Data().ProfileURL.String())
 | |
| 	assert.Equal(t, "https://graph.microsoft.com",
 | |
| 		p.Data().ProtectedResource.String())
 | |
| 	assert.Equal(t, "",
 | |
| 		p.Data().ValidateURL.String())
 | |
| 	assert.Equal(t, "openid", p.Data().Scope)
 | |
| }
 | |
| 
 | |
| func TestAzureProviderOverrides(t *testing.T) {
 | |
| 	p := NewAzureProvider(
 | |
| 		&ProviderData{
 | |
| 			LoginURL: &url.URL{
 | |
| 				Scheme: "https",
 | |
| 				Host:   "example.com",
 | |
| 				Path:   "/oauth/auth"},
 | |
| 			RedeemURL: &url.URL{
 | |
| 				Scheme: "https",
 | |
| 				Host:   "example.com",
 | |
| 				Path:   "/oauth/token"},
 | |
| 			ProfileURL: &url.URL{
 | |
| 				Scheme: "https",
 | |
| 				Host:   "example.com",
 | |
| 				Path:   "/oauth/profile"},
 | |
| 			ValidateURL: &url.URL{
 | |
| 				Scheme: "https",
 | |
| 				Host:   "example.com",
 | |
| 				Path:   "/oauth/tokeninfo"},
 | |
| 			ProtectedResource: &url.URL{
 | |
| 				Scheme: "https",
 | |
| 				Host:   "example.com"},
 | |
| 			Scope: "profile"})
 | |
| 	assert.NotEqual(t, nil, p)
 | |
| 	assert.Equal(t, "Azure", p.Data().ProviderName)
 | |
| 	assert.Equal(t, "https://example.com/oauth/auth",
 | |
| 		p.Data().LoginURL.String())
 | |
| 	assert.Equal(t, "https://example.com/oauth/token",
 | |
| 		p.Data().RedeemURL.String())
 | |
| 	assert.Equal(t, "https://example.com/oauth/profile",
 | |
| 		p.Data().ProfileURL.String())
 | |
| 	assert.Equal(t, "https://example.com/oauth/tokeninfo",
 | |
| 		p.Data().ValidateURL.String())
 | |
| 	assert.Equal(t, "https://example.com",
 | |
| 		p.Data().ProtectedResource.String())
 | |
| 	assert.Equal(t, "profile", p.Data().Scope)
 | |
| }
 | |
| 
 | |
| func TestAzureSetTenant(t *testing.T) {
 | |
| 	p := testAzureProvider("")
 | |
| 	p.Configure("example")
 | |
| 	assert.Equal(t, "Azure", p.Data().ProviderName)
 | |
| 	assert.Equal(t, "example", p.Tenant)
 | |
| 	assert.Equal(t, "https://login.microsoftonline.com/example/oauth2/authorize",
 | |
| 		p.Data().LoginURL.String())
 | |
| 	assert.Equal(t, "https://login.microsoftonline.com/example/oauth2/token",
 | |
| 		p.Data().RedeemURL.String())
 | |
| 	assert.Equal(t, "https://graph.microsoft.com/v1.0/me",
 | |
| 		p.Data().ProfileURL.String())
 | |
| 	assert.Equal(t, "https://graph.microsoft.com",
 | |
| 		p.Data().ProtectedResource.String())
 | |
| 	assert.Equal(t, "",
 | |
| 		p.Data().ValidateURL.String())
 | |
| 	assert.Equal(t, "openid", p.Data().Scope)
 | |
| }
 | |
| 
 | |
| func testAzureBackend(payload string) *httptest.Server {
 | |
| 	path := "/v1.0/me"
 | |
| 
 | |
| 	return httptest.NewServer(http.HandlerFunc(
 | |
| 		func(w http.ResponseWriter, r *http.Request) {
 | |
| 			if (r.URL.Path != path) && r.Method != http.MethodPost {
 | |
| 				w.WriteHeader(404)
 | |
| 			} else if r.Method == http.MethodPost && r.Body != nil {
 | |
| 				w.WriteHeader(200)
 | |
| 				w.Write([]byte(payload))
 | |
| 			} else if !IsAuthorizedInHeader(r.Header) {
 | |
| 				w.WriteHeader(403)
 | |
| 			} else {
 | |
| 				w.WriteHeader(200)
 | |
| 				w.Write([]byte(payload))
 | |
| 			}
 | |
| 		}))
 | |
| }
 | |
| 
 | |
| func TestAzureProviderGetEmailAddress(t *testing.T) {
 | |
| 	b := testAzureBackend(`{ "mail": "user@windows.net" }`)
 | |
| 	defer b.Close()
 | |
| 
 | |
| 	bURL, _ := url.Parse(b.URL)
 | |
| 	p := testAzureProvider(bURL.Host)
 | |
| 
 | |
| 	session := CreateAuthorizedSession()
 | |
| 	email, err := p.GetEmailAddress(context.Background(), session)
 | |
| 	assert.Equal(t, nil, err)
 | |
| 	assert.Equal(t, "user@windows.net", email)
 | |
| }
 | |
| 
 | |
| func TestAzureProviderGetEmailAddressMailNull(t *testing.T) {
 | |
| 	b := testAzureBackend(`{ "mail": null, "otherMails": ["user@windows.net", "altuser@windows.net"] }`)
 | |
| 	defer b.Close()
 | |
| 
 | |
| 	bURL, _ := url.Parse(b.URL)
 | |
| 	p := testAzureProvider(bURL.Host)
 | |
| 
 | |
| 	session := CreateAuthorizedSession()
 | |
| 	email, err := p.GetEmailAddress(context.Background(), session)
 | |
| 	assert.Equal(t, nil, err)
 | |
| 	assert.Equal(t, "user@windows.net", email)
 | |
| }
 | |
| 
 | |
| func TestAzureProviderGetEmailAddressGetUserPrincipalName(t *testing.T) {
 | |
| 	b := testAzureBackend(`{ "mail": null, "otherMails": [], "userPrincipalName": "user@windows.net" }`)
 | |
| 	defer b.Close()
 | |
| 
 | |
| 	bURL, _ := url.Parse(b.URL)
 | |
| 	p := testAzureProvider(bURL.Host)
 | |
| 
 | |
| 	session := CreateAuthorizedSession()
 | |
| 	email, err := p.GetEmailAddress(context.Background(), session)
 | |
| 	assert.Equal(t, nil, err)
 | |
| 	assert.Equal(t, "user@windows.net", email)
 | |
| }
 | |
| 
 | |
| func TestAzureProviderGetEmailAddressFailToGetEmailAddress(t *testing.T) {
 | |
| 	b := testAzureBackend(`{ "mail": null, "otherMails": [], "userPrincipalName": null }`)
 | |
| 	defer b.Close()
 | |
| 
 | |
| 	bURL, _ := url.Parse(b.URL)
 | |
| 	p := testAzureProvider(bURL.Host)
 | |
| 
 | |
| 	session := CreateAuthorizedSession()
 | |
| 	email, err := p.GetEmailAddress(context.Background(), session)
 | |
| 	assert.Equal(t, "type assertion to string failed", err.Error())
 | |
| 	assert.Equal(t, "", email)
 | |
| }
 | |
| 
 | |
| func TestAzureProviderGetEmailAddressEmptyUserPrincipalName(t *testing.T) {
 | |
| 	b := testAzureBackend(`{ "mail": null, "otherMails": [], "userPrincipalName": "" }`)
 | |
| 	defer b.Close()
 | |
| 
 | |
| 	bURL, _ := url.Parse(b.URL)
 | |
| 	p := testAzureProvider(bURL.Host)
 | |
| 
 | |
| 	session := CreateAuthorizedSession()
 | |
| 	email, err := p.GetEmailAddress(context.Background(), session)
 | |
| 	assert.Equal(t, nil, err)
 | |
| 	assert.Equal(t, "", email)
 | |
| }
 | |
| 
 | |
| func TestAzureProviderGetEmailAddressIncorrectOtherMails(t *testing.T) {
 | |
| 	b := testAzureBackend(`{ "mail": null, "otherMails": "", "userPrincipalName": null }`)
 | |
| 	defer b.Close()
 | |
| 
 | |
| 	bURL, _ := url.Parse(b.URL)
 | |
| 	p := testAzureProvider(bURL.Host)
 | |
| 
 | |
| 	session := CreateAuthorizedSession()
 | |
| 	email, err := p.GetEmailAddress(context.Background(), session)
 | |
| 	assert.Equal(t, "type assertion to string failed", err.Error())
 | |
| 	assert.Equal(t, "", email)
 | |
| }
 | |
| 
 | |
| func TestAzureProviderRedeemReturnsIdToken(t *testing.T) {
 | |
| 	b := testAzureBackend(`{ "id_token": "testtoken1234", "expires_on": "1136239445", "refresh_token": "refresh1234" }`)
 | |
| 	defer b.Close()
 | |
| 	timestamp, err := time.Parse(time.RFC3339, "2006-01-02T22:04:05Z")
 | |
| 	assert.Equal(t, nil, err)
 | |
| 
 | |
| 	bURL, _ := url.Parse(b.URL)
 | |
| 	p := testAzureProvider(bURL.Host)
 | |
| 	p.Data().RedeemURL.Path = "/common/oauth2/token"
 | |
| 	s, err := p.Redeem(context.Background(), "https://localhost", "1234")
 | |
| 	assert.Equal(t, nil, err)
 | |
| 	assert.Equal(t, "testtoken1234", s.IDToken)
 | |
| 	assert.Equal(t, timestamp, s.ExpiresOn.UTC())
 | |
| 	assert.Equal(t, "refresh1234", s.RefreshToken)
 | |
| }
 |