2019-11-02 14:32:58 +00:00
|
|
|
package suites
|
|
|
|
|
|
|
|
import (
|
2019-11-24 20:27:59 +00:00
|
|
|
"context"
|
|
|
|
"fmt"
|
2019-11-02 14:32:58 +00:00
|
|
|
"testing"
|
2019-11-24 20:27:59 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
2019-11-02 14:32:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type NetworkACLSuite struct {
|
2019-11-24 20:27:59 +00:00
|
|
|
suite.Suite
|
2019-11-02 14:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewNetworkACLSuite() *NetworkACLSuite {
|
2019-11-30 16:49:52 +00:00
|
|
|
return &NetworkACLSuite{}
|
2019-11-24 20:27:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *NetworkACLSuite) TestShouldAccessSecretUpon2FA() {
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
2019-11-30 16:49:52 +00:00
|
|
|
wds, err := StartWebDriver()
|
|
|
|
s.Require().NoError(err)
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2020-04-22 03:33:14 +00:00
|
|
|
defer wds.Stop() //nolint:errcheck // TODO: Legacy code, consider refactoring time permitting.
|
2019-11-24 20:27:59 +00:00
|
|
|
|
2019-11-30 16:49:52 +00:00
|
|
|
targetURL := fmt.Sprintf("%s/secret.html", SecureBaseURL)
|
|
|
|
wds.doVisit(s.T(), targetURL)
|
|
|
|
wds.verifyIsFirstFactorPage(ctx, s.T())
|
2019-11-24 20:27:59 +00:00
|
|
|
|
2019-11-30 16:49:52 +00:00
|
|
|
wds.doRegisterAndLogin2FA(ctx, s.T(), "john", "password", false, targetURL)
|
|
|
|
wds.verifySecretAuthorized(ctx, s.T())
|
2019-11-24 20:27:59 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 05:06:39 +00:00
|
|
|
// from network 192.168.240.201/32.
|
2019-11-24 20:27:59 +00:00
|
|
|
func (s *NetworkACLSuite) TestShouldAccessSecretUpon1FA() {
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
2020-11-28 00:06:42 +00:00
|
|
|
wds, err := StartWebDriverWithProxy("http://proxy-client1.example.com:3128", GetWebDriverPort())
|
2019-11-30 16:49:52 +00:00
|
|
|
s.Require().NoError(err)
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2020-04-22 03:33:14 +00:00
|
|
|
defer wds.Stop() //nolint:errcheck // TODO: Legacy code, consider refactoring time permitting.
|
2019-11-30 16:49:52 +00:00
|
|
|
|
2019-11-24 20:27:59 +00:00
|
|
|
targetURL := fmt.Sprintf("%s/secret.html", SecureBaseURL)
|
2019-11-30 16:49:52 +00:00
|
|
|
wds.doVisit(s.T(), targetURL)
|
|
|
|
wds.verifyIsFirstFactorPage(ctx, s.T())
|
2019-11-24 20:27:59 +00:00
|
|
|
|
2019-11-30 16:49:52 +00:00
|
|
|
wds.doLoginOneFactor(ctx, s.T(), "john", "password",
|
2019-11-24 20:27:59 +00:00
|
|
|
false, fmt.Sprintf("%s/secret.html", SecureBaseURL))
|
2019-11-30 16:49:52 +00:00
|
|
|
wds.verifySecretAuthorized(ctx, s.T())
|
2019-11-24 20:27:59 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 05:06:39 +00:00
|
|
|
// from network 192.168.240.202/32.
|
2019-11-24 20:27:59 +00:00
|
|
|
func (s *NetworkACLSuite) TestShouldAccessSecretUpon0FA() {
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
2020-11-28 00:06:42 +00:00
|
|
|
wds, err := StartWebDriverWithProxy("http://proxy-client2.example.com:3128", GetWebDriverPort())
|
2019-11-30 16:49:52 +00:00
|
|
|
s.Require().NoError(err)
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2020-04-22 03:33:14 +00:00
|
|
|
defer wds.Stop() //nolint:errcheck // TODO: Legacy code, consider refactoring time permitting.
|
2019-11-30 16:49:52 +00:00
|
|
|
|
|
|
|
wds.doVisit(s.T(), fmt.Sprintf("%s/secret.html", SecureBaseURL))
|
|
|
|
wds.verifySecretAuthorized(ctx, s.T())
|
2019-11-02 14:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestNetworkACLSuite(t *testing.T) {
|
2019-11-24 20:27:59 +00:00
|
|
|
suite.Run(t, NewNetworkACLSuite())
|
2019-11-02 14:32:58 +00:00
|
|
|
}
|