* test any callback Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * cleanup Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * dont detect callback in per-server handler Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * use full redirect uri with both path and query param Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * update tests Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * correctly route to embedded outpost for callback signature Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org> * fix allowed redirects Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package application
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	"github.com/quasoft/memstore"
 | 
						|
	"goauthentik.io/api/v3"
 | 
						|
	"goauthentik.io/internal/outpost/ak"
 | 
						|
)
 | 
						|
 | 
						|
func newTestApplication() *Application {
 | 
						|
	a, _ := NewApplication(
 | 
						|
		api.ProxyOutpostConfig{
 | 
						|
			Name:                       ak.TestSecret(),
 | 
						|
			ClientId:                   api.PtrString(ak.TestSecret()),
 | 
						|
			ClientSecret:               api.PtrString(ak.TestSecret()),
 | 
						|
			CookieSecret:               api.PtrString(ak.TestSecret()),
 | 
						|
			ExternalHost:               "https://ext.t.goauthentik.io",
 | 
						|
			CookieDomain:               api.PtrString(""),
 | 
						|
			Mode:                       *api.NewNullableProxyMode(api.PROXYMODE_FORWARD_SINGLE.Ptr()),
 | 
						|
			SkipPathRegex:              api.PtrString("/skip.*"),
 | 
						|
			BasicAuthEnabled:           api.PtrBool(true),
 | 
						|
			BasicAuthUserAttribute:     api.PtrString("username"),
 | 
						|
			BasicAuthPasswordAttribute: api.PtrString("password"),
 | 
						|
			OidcConfiguration: api.ProxyOutpostConfigOidcConfiguration{
 | 
						|
				AuthorizationEndpoint: "http://fake-auth.t.goauthentik.io/auth",
 | 
						|
				TokenEndpoint:         "http://fake-auth.t.goauthentik.io/token",
 | 
						|
				UserinfoEndpoint:      "http://fake-auth.t.goauthentik.io/userinfo",
 | 
						|
			},
 | 
						|
		},
 | 
						|
		http.DefaultClient,
 | 
						|
		nil,
 | 
						|
		ak.MockAK(
 | 
						|
			api.Outpost{
 | 
						|
				Config: map[string]interface{}{
 | 
						|
					"authentik_host": ak.TestSecret(),
 | 
						|
				},
 | 
						|
			},
 | 
						|
			ak.MockConfig(),
 | 
						|
		),
 | 
						|
	)
 | 
						|
	a.sessions = memstore.NewMemStore(
 | 
						|
		[]byte(ak.TestSecret()),
 | 
						|
	)
 | 
						|
	return a
 | 
						|
}
 |