1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
package suites
import (
"context"
"testing"
"time"
"github.com/stretchr/testify/suite"
)
type PathPrefixSuite struct {
*RodSuite
}
func NewPathPrefixSuite() *PathPrefixSuite {
return &PathPrefixSuite{
RodSuite: NewRodSuite(pathPrefixSuiteName),
}
}
func (s *PathPrefixSuite) TestCheckEnv() {
s.Assert().Equal("/auth", GetPathPrefix())
}
func (s *PathPrefixSuite) Test1FAScenario() {
suite.Run(s.T(), New1FAScenario())
}
func (s *PathPrefixSuite) Test2FATOTPScenario() {
suite.Run(s.T(), New2FATOTPScenario())
}
func (s *PathPrefixSuite) TestCustomHeaders() {
suite.Run(s.T(), NewCustomHeadersScenario())
}
func (s *PathPrefixSuite) TestResetPasswordScenario() {
suite.Run(s.T(), NewResetPasswordScenario())
}
func (s *PathPrefixSuite) TestChangePasswordScenario() {
suite.Run(s.T(), NewChangePasswordScenario())
}
func (s *PathPrefixSuite) TestShouldRenderFrontendWithTrailingSlash() {
ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second)
defer func() {
cancel()
s.collectCoverage(s.Page)
s.collectScreenshot(ctx.Err(), s.Page)
s.MustClose()
err := s.RodSession.Stop()
s.Require().NoError(err)
}()
browser, err := NewRodSession(RodSessionWithCredentials(s))
s.Require().NoError(err)
s.RodSession = browser
s.Page = s.doCreateTab(s.T(), HomeBaseURL)
s.verifyIsHome(s.T(), s.Page)
s.doVisit(s.T(), s.Context(ctx), GetLoginBaseURL(BaseDomain)+"/")
s.verifyIsFirstFactorPage(s.T(), s.Context(ctx))
}
func (s *PathPrefixSuite) TestShouldRenderFrontendWithoutTrailingSlash() {
ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second)
defer func() {
cancel()
s.collectCoverage(s.Page)
s.collectScreenshot(ctx.Err(), s.Page)
s.MustClose()
err := s.RodSession.Stop()
s.Require().NoError(err)
}()
browser, err := NewRodSession(RodSessionWithCredentials(s))
s.Require().NoError(err)
s.RodSession = browser
s.Page = s.doCreateTab(s.T(), HomeBaseURL)
s.verifyIsHome(s.T(), s.Page)
s.doVisit(s.T(), s.Context(ctx), GetLoginBaseURL(BaseDomain))
s.verifyIsFirstFactorPage(s.T(), s.Context(ctx))
}
func (s *PathPrefixSuite) SetupSuite() {
s.T().Setenv("PathPrefix", "/auth")
}
func TestPathPrefixSuite(t *testing.T) {
if testing.Short() {
t.Skip("skipping suite test in short mode")
}
suite.Run(t, NewPathPrefixSuite())
}
|