2019-11-02 14:32:58 +00:00
package suites
import (
2019-11-24 20:27:59 +00:00
"context"
"fmt"
2021-12-01 13:14:15 +00:00
"io"
2019-11-24 20:27:59 +00:00
"log"
"net/http"
2020-01-18 14:57:42 +00:00
"net/url"
2019-11-02 14:32:58 +00:00
"testing"
2019-11-24 20:27:59 +00:00
"time"
2019-11-02 14:32:58 +00:00
2019-12-07 16:40:42 +00:00
"github.com/stretchr/testify/require"
2019-11-02 14:32:58 +00:00
"github.com/stretchr/testify/suite"
2023-04-15 05:03:14 +00:00
"github.com/valyala/fasthttp"
2020-04-05 12:37:21 +00:00
2021-08-11 01:04:35 +00:00
"github.com/authelia/authelia/v4/internal/storage"
"github.com/authelia/authelia/v4/internal/utils"
2019-11-02 14:32:58 +00:00
)
2019-11-24 20:27:59 +00:00
type StandaloneWebDriverSuite struct {
2021-11-05 13:14:42 +00:00
* RodSuite
2019-11-02 14:32:58 +00:00
}
2019-11-24 20:27:59 +00:00
func NewStandaloneWebDriverSuite ( ) * StandaloneWebDriverSuite {
2023-01-25 04:11:05 +00:00
return & StandaloneWebDriverSuite {
RodSuite : NewRodSuite ( "" ) ,
}
2019-11-24 20:27:59 +00:00
}
func ( s * StandaloneWebDriverSuite ) SetupSuite ( ) {
2023-01-25 04:11:05 +00:00
s . BaseSuite . SetupSuite ( )
2021-11-05 13:14:42 +00:00
browser , err := StartRod ( )
2019-11-24 20:27:59 +00:00
if err != nil {
log . Fatal ( err )
}
2021-11-05 13:14:42 +00:00
s . RodSession = browser
2019-11-24 20:27:59 +00:00
}
func ( s * StandaloneWebDriverSuite ) TearDownSuite ( ) {
2021-11-05 13:14:42 +00:00
err := s . RodSession . Stop ( )
2019-11-24 20:27:59 +00:00
if err != nil {
log . Fatal ( err )
}
}
func ( s * StandaloneWebDriverSuite ) SetupTest ( ) {
2021-11-05 13:14:42 +00:00
s . Page = s . doCreateTab ( s . T ( ) , HomeBaseURL )
s . verifyIsHome ( s . T ( ) , s . Page )
}
2019-11-24 20:27:59 +00:00
2021-11-05 13:14:42 +00:00
func ( s * StandaloneWebDriverSuite ) TearDownTest ( ) {
s . collectCoverage ( s . Page )
s . MustClose ( )
2019-11-24 20:27:59 +00:00
}
func ( s * StandaloneWebDriverSuite ) TestShouldLetUserKnowHeIsAlreadyAuthenticated ( ) {
ctx , cancel := context . WithTimeout ( context . Background ( ) , 20 * time . Second )
2021-11-05 13:14:42 +00:00
defer func ( ) {
cancel ( )
s . collectScreenshot ( ctx . Err ( ) , s . Page )
} ( )
2019-11-24 20:27:59 +00:00
2021-11-05 13:14:42 +00:00
_ = s . doRegisterAndLogin2FA ( s . T ( ) , s . Context ( ctx ) , "john" , "password" , false , "" )
2019-11-24 20:27:59 +00:00
2020-05-02 05:06:39 +00:00
// Visit home page to change context.
2021-11-05 13:14:42 +00:00
s . doVisit ( s . T ( ) , s . Context ( ctx ) , HomeBaseURL )
s . verifyIsHome ( s . T ( ) , s . Context ( ctx ) )
2019-11-24 20:27:59 +00:00
2020-05-02 05:06:39 +00:00
// Visit the login page and wait for redirection to 2FA page with success icon displayed.
2023-01-12 10:57:44 +00:00
s . doVisit ( s . T ( ) , s . Context ( ctx ) , GetLoginBaseURL ( BaseDomain ) )
2021-11-05 13:14:42 +00:00
s . verifyIsAuthenticatedPage ( s . T ( ) , s . Context ( ctx ) )
2019-11-24 20:27:59 +00:00
}
2022-06-19 12:43:19 +00:00
func ( s * StandaloneWebDriverSuite ) TestShouldRedirectAfterOneFactorOnAnotherTab ( ) {
ctx , cancel := context . WithTimeout ( context . Background ( ) , 10 * time . Second )
targetURL := fmt . Sprintf ( "%s/secret.html" , SingleFactorBaseURL )
page2 := s . Browser ( ) . MustPage ( targetURL )
defer func ( ) {
cancel ( )
s . collectScreenshot ( ctx . Err ( ) , s . Page )
s . collectScreenshot ( ctx . Err ( ) , page2 )
page2 . MustClose ( )
} ( )
// Open second tab with secret page.
page2 . MustWaitLoad ( )
// Switch to first, visit the login page and wait for redirection to secret page with secret displayed.
s . Page . MustActivate ( )
2023-01-12 10:57:44 +00:00
s . doLoginOneFactor ( s . T ( ) , s . Context ( ctx ) , "john" , "password" , false , BaseDomain , targetURL )
2022-06-19 12:43:19 +00:00
s . verifySecretAuthorized ( s . T ( ) , s . Page )
// Switch to second tab and wait for redirection to secret page with secret displayed.
page2 . MustActivate ( )
s . verifySecretAuthorized ( s . T ( ) , page2 . Context ( ctx ) )
}
2021-08-02 06:15:38 +00:00
func ( s * StandaloneWebDriverSuite ) TestShouldRedirectAlreadyAuthenticatedUser ( ) {
ctx , cancel := context . WithTimeout ( context . Background ( ) , 20 * time . Second )
2021-11-05 13:14:42 +00:00
defer func ( ) {
cancel ( )
s . collectScreenshot ( ctx . Err ( ) , s . Page )
} ( )
2021-08-02 06:15:38 +00:00
2021-11-05 13:14:42 +00:00
_ = s . doRegisterAndLogin2FA ( s . T ( ) , s . Context ( ctx ) , "john" , "password" , false , "" )
2021-08-02 06:15:38 +00:00
// Visit home page to change context.
2021-11-05 13:14:42 +00:00
s . doVisit ( s . T ( ) , s . Context ( ctx ) , HomeBaseURL )
s . verifyIsHome ( s . T ( ) , s . Context ( ctx ) )
2021-08-02 06:15:38 +00:00
// Visit the login page and wait for redirection to 2FA page with success icon displayed.
2023-01-12 10:57:44 +00:00
s . doVisit ( s . T ( ) , s . Context ( ctx ) , fmt . Sprintf ( "%s?rd=https://secure.example.com:8080" , GetLoginBaseURL ( BaseDomain ) ) )
2021-11-05 13:14:42 +00:00
_ , err := s . Page . ElementR ( "h1" , "Public resource" )
require . NoError ( s . T ( ) , err )
s . verifyURLIs ( s . T ( ) , s . Context ( ctx ) , "https://secure.example.com:8080/" )
2021-08-02 06:15:38 +00:00
}
func ( s * StandaloneWebDriverSuite ) TestShouldNotRedirectAlreadyAuthenticatedUserToUnsafeURL ( ) {
ctx , cancel := context . WithTimeout ( context . Background ( ) , 20 * time . Second )
2021-11-05 13:14:42 +00:00
defer func ( ) {
cancel ( )
s . collectScreenshot ( ctx . Err ( ) , s . Page )
} ( )
2021-08-02 06:15:38 +00:00
2021-11-05 13:14:42 +00:00
_ = s . doRegisterAndLogin2FA ( s . T ( ) , s . Context ( ctx ) , "john" , "password" , false , "" )
2021-08-02 06:15:38 +00:00
// Visit home page to change context.
2021-11-05 13:14:42 +00:00
s . doVisit ( s . T ( ) , s . Context ( ctx ) , HomeBaseURL )
s . verifyIsHome ( s . T ( ) , s . Context ( ctx ) )
2021-08-02 06:15:38 +00:00
// Visit the login page and wait for redirection to 2FA page with success icon displayed.
2023-01-12 10:57:44 +00:00
s . doVisit ( s . T ( ) , s . Context ( ctx ) , fmt . Sprintf ( "%s?rd=https://secure.example.local:8080" , GetLoginBaseURL ( BaseDomain ) ) )
2021-11-05 13:14:42 +00:00
s . verifyNotificationDisplayed ( s . T ( ) , s . Context ( ctx ) , "Redirection was determined to be unsafe and aborted. Ensure the redirection URL is correct." )
2021-08-02 06:15:38 +00:00
}
2019-12-07 16:40:42 +00:00
func ( s * StandaloneWebDriverSuite ) TestShouldCheckUserIsAskedToRegisterDevice ( ) {
2021-11-05 13:14:42 +00:00
ctx , cancel := context . WithTimeout ( context . Background ( ) , 30 * time . Second )
defer func ( ) {
cancel ( )
s . collectScreenshot ( ctx . Err ( ) , s . Page )
} ( )
2019-12-07 16:40:42 +00:00
username := "john"
password := "password"
2020-05-02 05:06:39 +00:00
// Clean up any TOTP secret already in DB.
2021-12-01 12:11:29 +00:00
provider := storage . NewSQLiteProvider ( & storageLocalTmpConfig )
2021-11-23 09:45:38 +00:00
require . NoError ( s . T ( ) , provider . DeleteTOTPConfiguration ( ctx , username ) )
2019-12-07 16:40:42 +00:00
2020-05-02 05:06:39 +00:00
// Login one factor.
2023-01-12 10:57:44 +00:00
s . doLoginOneFactor ( s . T ( ) , s . Context ( ctx ) , username , password , false , BaseDomain , "" )
2019-12-07 16:40:42 +00:00
2020-05-02 05:06:39 +00:00
// Check the user is asked to register a new device.
2021-11-05 13:14:42 +00:00
s . WaitElementLocatedByClassName ( s . T ( ) , s . Context ( ctx ) , "state-not-registered" )
2019-12-07 16:40:42 +00:00
2020-05-02 05:06:39 +00:00
// Then register the TOTP factor.
2021-11-05 13:14:42 +00:00
s . doRegisterTOTP ( s . T ( ) , s . Context ( ctx ) )
2020-05-02 05:06:39 +00:00
// And logout.
2021-11-05 13:14:42 +00:00
s . doLogout ( s . T ( ) , s . Context ( ctx ) )
2019-12-07 16:40:42 +00:00
2020-05-02 05:06:39 +00:00
// Login one factor again.
2023-01-12 10:57:44 +00:00
s . doLoginOneFactor ( s . T ( ) , s . Context ( ctx ) , username , password , false , BaseDomain , "" )
2019-12-07 16:40:42 +00:00
2022-01-31 05:25:15 +00:00
// now the user should be asked to perform 2FA.
2021-11-05 13:14:42 +00:00
s . WaitElementLocatedByClassName ( s . T ( ) , s . Context ( ctx ) , "state-method" )
2019-12-07 16:40:42 +00:00
}
2019-11-24 20:27:59 +00:00
type StandaloneSuite struct {
2023-01-25 04:11:05 +00:00
* BaseSuite
2019-11-24 20:27:59 +00:00
}
2019-11-02 14:32:58 +00:00
func NewStandaloneSuite ( ) * StandaloneSuite {
2023-01-25 04:11:05 +00:00
return & StandaloneSuite {
BaseSuite : & BaseSuite {
Name : standaloneSuiteName ,
} ,
}
2019-11-24 20:27:59 +00:00
}
2021-03-05 04:18:31 +00:00
func ( s * StandaloneSuite ) TestShouldRespectMethodsACL ( ) {
2023-04-15 05:03:14 +00:00
req , err := http . NewRequest ( fasthttp . MethodGet , fmt . Sprintf ( "%s/api/verify?rd=%s" , AutheliaBaseURL , GetLoginBaseURL ( BaseDomain ) ) , nil )
2021-03-05 04:18:31 +00:00
s . Assert ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
req . Header . Set ( "X-Forwarded-Method" , fasthttp . MethodGet )
req . Header . Set ( fasthttp . HeaderXForwardedProto , "https" )
req . Header . Set ( fasthttp . HeaderXForwardedHost , fmt . Sprintf ( "secure.%s" , BaseDomain ) )
2021-03-05 04:18:31 +00:00
req . Header . Set ( "X-Forwarded-URI" , "/" )
2023-04-15 05:03:14 +00:00
req . Header . Set ( fasthttp . HeaderAccept , "text/html; charset=utf8" )
2021-03-05 04:18:31 +00:00
client := NewHTTPClient ( )
res , err := client . Do ( req )
s . Assert ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
s . Assert ( ) . Equal ( fasthttp . StatusFound , res . StatusCode )
2021-12-01 13:14:15 +00:00
body , err := io . ReadAll ( res . Body )
2021-03-05 04:18:31 +00:00
s . Assert ( ) . NoError ( err )
urlEncodedAdminURL := url . QueryEscape ( SecureBaseURL + "/" )
2023-01-12 10:57:44 +00:00
s . Assert ( ) . Equal ( fmt . Sprintf ( "<a href=\"%s\">302 Found</a>" , utils . StringHTMLEscape ( fmt . Sprintf ( "%s/?rd=%s&rm=GET" , GetLoginBaseURL ( BaseDomain ) , urlEncodedAdminURL ) ) ) , string ( body ) )
2021-03-05 04:18:31 +00:00
2023-04-15 05:03:14 +00:00
req . Header . Set ( "X-Forwarded-Method" , fasthttp . MethodOptions )
2021-03-05 04:18:31 +00:00
res , err = client . Do ( req )
s . Assert ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
s . Assert ( ) . Equal ( fasthttp . StatusOK , res . StatusCode )
2021-03-05 04:18:31 +00:00
}
2021-07-16 03:43:48 +00:00
func ( s * StandaloneSuite ) TestShouldRespondWithCorrectStatusCode ( ) {
2023-04-15 05:03:14 +00:00
req , err := http . NewRequest ( fasthttp . MethodGet , fmt . Sprintf ( "%s/api/verify?rd=%s" , AutheliaBaseURL , GetLoginBaseURL ( BaseDomain ) ) , nil )
2021-07-16 03:43:48 +00:00
s . Assert ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
req . Header . Set ( "X-Forwarded-Method" , fasthttp . MethodGet )
req . Header . Set ( fasthttp . HeaderXForwardedProto , "https" )
req . Header . Set ( fasthttp . HeaderXForwardedHost , fmt . Sprintf ( "secure.%s" , BaseDomain ) )
2021-07-16 03:43:48 +00:00
req . Header . Set ( "X-Forwarded-URI" , "/" )
2023-04-15 05:03:14 +00:00
req . Header . Set ( fasthttp . HeaderAccept , "text/html; charset=utf8" )
2021-07-16 03:43:48 +00:00
client := NewHTTPClient ( )
res , err := client . Do ( req )
s . Assert ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
s . Assert ( ) . Equal ( fasthttp . StatusFound , res . StatusCode )
2021-12-01 13:14:15 +00:00
body , err := io . ReadAll ( res . Body )
2021-07-16 03:43:48 +00:00
s . Assert ( ) . NoError ( err )
urlEncodedAdminURL := url . QueryEscape ( SecureBaseURL + "/" )
2023-01-12 10:57:44 +00:00
s . Assert ( ) . Equal ( fmt . Sprintf ( "<a href=\"%s\">302 Found</a>" , utils . StringHTMLEscape ( fmt . Sprintf ( "%s/?rd=%s&rm=GET" , GetLoginBaseURL ( BaseDomain ) , urlEncodedAdminURL ) ) ) , string ( body ) )
2021-07-16 03:43:48 +00:00
2023-04-15 05:03:14 +00:00
req . Header . Set ( "X-Forwarded-Method" , fasthttp . MethodPost )
2021-07-16 03:43:48 +00:00
res , err = client . Do ( req )
s . Assert ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
s . Assert ( ) . Equal ( fasthttp . StatusSeeOther , res . StatusCode )
2021-12-01 13:14:15 +00:00
body , err = io . ReadAll ( res . Body )
2021-07-16 03:43:48 +00:00
s . Assert ( ) . NoError ( err )
urlEncodedAdminURL = url . QueryEscape ( SecureBaseURL + "/" )
2023-01-12 10:57:44 +00:00
s . Assert ( ) . Equal ( fmt . Sprintf ( "<a href=\"%s\">303 See Other</a>" , utils . StringHTMLEscape ( fmt . Sprintf ( "%s/?rd=%s&rm=POST" , GetLoginBaseURL ( BaseDomain ) , urlEncodedAdminURL ) ) ) , string ( body ) )
2021-07-16 03:43:48 +00:00
}
2020-05-02 05:06:39 +00:00
// Standard case using nginx.
2021-07-22 03:52:37 +00:00
func ( s * StandaloneSuite ) TestShouldVerifyAPIVerifyUnauthorized ( ) {
2023-04-15 05:03:14 +00:00
req , err := http . NewRequest ( fasthttp . MethodGet , fmt . Sprintf ( "%s/api/verify" , AutheliaBaseURL ) , nil )
2019-11-24 20:27:59 +00:00
s . Assert ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
req . Header . Set ( fasthttp . HeaderXForwardedProto , "https" )
2019-11-24 20:27:59 +00:00
req . Header . Set ( "X-Original-URL" , AdminBaseURL )
2023-04-15 05:03:14 +00:00
req . Header . Set ( fasthttp . HeaderAccept , "text/html; charset=utf8" )
2019-11-24 20:27:59 +00:00
client := NewHTTPClient ( )
res , err := client . Do ( req )
s . Assert ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
s . Assert ( ) . Equal ( fasthttp . StatusUnauthorized , res . StatusCode )
2021-12-01 13:14:15 +00:00
body , err := io . ReadAll ( res . Body )
2019-11-24 20:27:59 +00:00
s . Assert ( ) . NoError ( err )
2022-07-08 12:18:52 +00:00
s . Assert ( ) . Equal ( "401 Unauthorized" , string ( body ) )
2019-11-24 20:27:59 +00:00
}
2020-05-02 05:06:39 +00:00
// Standard case using Kubernetes.
2019-11-24 20:27:59 +00:00
func ( s * StandaloneSuite ) TestShouldVerifyAPIVerifyRedirectFromXOriginalURL ( ) {
2023-04-15 05:03:14 +00:00
req , err := http . NewRequest ( fasthttp . MethodGet , fmt . Sprintf ( "%s/api/verify?rd=%s" , AutheliaBaseURL , GetLoginBaseURL ( BaseDomain ) ) , nil )
2019-11-24 20:27:59 +00:00
s . Assert ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
req . Header . Set ( fasthttp . HeaderXForwardedProto , "https" )
2019-11-24 20:27:59 +00:00
req . Header . Set ( "X-Original-URL" , AdminBaseURL )
2023-04-15 05:03:14 +00:00
req . Header . Set ( fasthttp . HeaderAccept , "text/html; charset=utf8" )
2019-11-24 20:27:59 +00:00
client := NewHTTPClient ( )
res , err := client . Do ( req )
s . Assert ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
s . Assert ( ) . Equal ( fasthttp . StatusFound , res . StatusCode )
2021-12-01 13:14:15 +00:00
body , err := io . ReadAll ( res . Body )
2019-11-24 20:27:59 +00:00
s . Assert ( ) . NoError ( err )
2020-01-18 14:57:42 +00:00
urlEncodedAdminURL := url . QueryEscape ( AdminBaseURL )
2023-01-25 09:36:40 +00:00
s . Assert ( ) . Equal ( fmt . Sprintf ( "<a href=\"%s\">302 Found</a>" , utils . StringHTMLEscape ( fmt . Sprintf ( "%s/?rd=%s&rm=GET" , GetLoginBaseURL ( BaseDomain ) , urlEncodedAdminURL ) ) ) , string ( body ) )
2019-11-24 20:27:59 +00:00
}
func ( s * StandaloneSuite ) TestShouldVerifyAPIVerifyRedirectFromXOriginalHostURI ( ) {
2023-04-15 05:03:14 +00:00
req , err := http . NewRequest ( fasthttp . MethodGet , fmt . Sprintf ( "%s/api/verify?rd=%s" , AutheliaBaseURL , GetLoginBaseURL ( BaseDomain ) ) , nil )
2019-11-24 20:27:59 +00:00
s . Assert ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
req . Header . Set ( fasthttp . HeaderXForwardedProto , "https" )
req . Header . Set ( fasthttp . HeaderXForwardedHost , "secure.example.com:8080" )
2019-11-24 20:27:59 +00:00
req . Header . Set ( "X-Forwarded-URI" , "/" )
2023-04-15 05:03:14 +00:00
req . Header . Set ( fasthttp . HeaderAccept , "text/html; charset=utf8" )
2019-11-24 20:27:59 +00:00
client := NewHTTPClient ( )
res , err := client . Do ( req )
s . Assert ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
s . Assert ( ) . Equal ( fasthttp . StatusFound , res . StatusCode )
2021-12-01 13:14:15 +00:00
body , err := io . ReadAll ( res . Body )
2019-11-24 20:27:59 +00:00
s . Assert ( ) . NoError ( err )
2020-01-18 14:57:42 +00:00
urlEncodedAdminURL := url . QueryEscape ( SecureBaseURL + "/" )
2023-01-25 09:36:40 +00:00
s . Assert ( ) . Equal ( fmt . Sprintf ( "<a href=\"%s\">302 Found</a>" , utils . StringHTMLEscape ( fmt . Sprintf ( "%s/?rd=%s&rm=GET" , GetLoginBaseURL ( BaseDomain ) , urlEncodedAdminURL ) ) ) , string ( body ) )
2019-11-24 20:27:59 +00:00
}
2022-06-14 07:20:13 +00:00
func ( s * StandaloneSuite ) TestShouldRecordMetrics ( ) {
client := NewHTTPClient ( )
2023-04-15 05:03:14 +00:00
req , err := http . NewRequest ( fasthttp . MethodGet , fmt . Sprintf ( "%s/api/health" , LoginBaseURL ) , nil )
2022-06-14 07:20:13 +00:00
s . Require ( ) . NoError ( err )
res , err := client . Do ( req )
s . Require ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
s . Assert ( ) . Equal ( fasthttp . StatusOK , fasthttp . StatusOK , res . StatusCode )
2022-06-14 07:20:13 +00:00
2023-04-15 05:03:14 +00:00
req , err = http . NewRequest ( fasthttp . MethodGet , fmt . Sprintf ( "%s/metrics" , LoginBaseURL ) , nil )
2022-06-14 07:20:13 +00:00
s . Require ( ) . NoError ( err )
res , err = client . Do ( req )
s . Require ( ) . NoError ( err )
2023-04-15 05:03:14 +00:00
s . Assert ( ) . Equal ( fasthttp . StatusOK , res . StatusCode )
2022-06-14 07:20:13 +00:00
body , err := io . ReadAll ( res . Body )
s . Require ( ) . NoError ( err )
metrics := string ( body )
2022-06-14 11:51:33 +00:00
s . Assert ( ) . Contains ( metrics , "authelia_request_duration_bucket{" )
s . Assert ( ) . Contains ( metrics , "authelia_request_duration_sum{" )
2022-06-14 07:20:13 +00:00
}
2019-12-05 21:35:03 +00:00
func ( s * StandaloneSuite ) TestStandaloneWebDriverScenario ( ) {
suite . Run ( s . T ( ) , NewStandaloneWebDriverSuite ( ) )
}
2022-05-04 01:01:36 +00:00
func ( s * StandaloneSuite ) Test1FAScenario ( ) {
suite . Run ( s . T ( ) , New1FAScenario ( ) )
2019-12-05 21:35:03 +00:00
}
2022-05-04 01:01:36 +00:00
func ( s * StandaloneSuite ) Test2FAScenario ( ) {
suite . Run ( s . T ( ) , New2FAScenario ( ) )
2019-12-05 21:35:03 +00:00
}
func ( s * StandaloneSuite ) TestBypassPolicyScenario ( ) {
suite . Run ( s . T ( ) , NewBypassPolicyScenario ( ) )
}
func ( s * StandaloneSuite ) TestBackendProtectionScenario ( ) {
suite . Run ( s . T ( ) , NewBackendProtectionScenario ( ) )
}
func ( s * StandaloneSuite ) TestResetPasswordScenario ( ) {
suite . Run ( s . T ( ) , NewResetPasswordScenario ( ) )
}
2023-02-28 09:01:09 +00:00
func ( s * StandaloneSuite ) TestRequestMethodScenario ( ) {
suite . Run ( s . T ( ) , NewRequestMethodScenario ( ) )
}
2019-12-05 21:35:03 +00:00
func ( s * StandaloneSuite ) TestAvailableMethodsScenario ( ) {
2022-03-03 11:20:43 +00:00
suite . Run ( s . T ( ) , NewAvailableMethodsScenario ( [ ] string { "TIME-BASED ONE-TIME PASSWORD" , "SECURITY KEY - WEBAUTHN" } ) )
2019-11-02 14:32:58 +00:00
}
2020-01-18 14:57:42 +00:00
func ( s * StandaloneSuite ) TestRedirectionURLScenario ( ) {
suite . Run ( s . T ( ) , NewRedirectionURLScenario ( ) )
}
2021-04-13 08:38:12 +00:00
func ( s * StandaloneSuite ) TestRedirectionCheckScenario ( ) {
suite . Run ( s . T ( ) , NewRedirectionCheckScenario ( ) )
}
2019-11-02 14:32:58 +00:00
func TestStandaloneSuite ( t * testing . T ) {
2021-03-14 07:08:26 +00:00
if testing . Short ( ) {
t . Skip ( "skipping suite test in short mode" )
}
2019-11-24 20:27:59 +00:00
suite . Run ( t , NewStandaloneSuite ( ) )
2019-11-02 14:32:58 +00:00
}