You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
200 lines
6.4 KiB
200 lines
6.4 KiB
// Copyright (c) 2020 Proton Technologies AG |
|
// |
|
// This file is part of ProtonMail Bridge.Bridge. |
|
// |
|
// ProtonMail Bridge is free software: you can redistribute it and/or modify |
|
// it under the terms of the GNU General Public License as published by |
|
// the Free Software Foundation, either version 3 of the License, or |
|
// (at your option) any later version. |
|
// |
|
// ProtonMail Bridge is distributed in the hope that it will be useful, |
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
// GNU General Public License for more details. |
|
// |
|
// You should have received a copy of the GNU General Public License |
|
// along with ProtonMail Bridge. If not, see <https://www.gnu.org/licenses/>. |
|
|
|
package tests |
|
|
|
import ( |
|
"time" |
|
|
|
"github.com/cucumber/godog" |
|
a "github.com/stretchr/testify/assert" |
|
) |
|
|
|
func BridgeChecksFeatureContext(s *godog.Suite) { |
|
s.Step(`^bridge response is "([^"]*)"$`, bridgeResponseIs) |
|
s.Step(`^"([^"]*)" has address mode in "([^"]*)" mode$`, userHasAddressModeInMode) |
|
s.Step(`^"([^"]*)" is disconnected$`, userIsDisconnected) |
|
s.Step(`^"([^"]*)" is connected$`, userIsConnected) |
|
s.Step(`^"([^"]*)" has database file$`, userHasDatabaseFile) |
|
s.Step(`^"([^"]*)" does not have database file$`, userDoesNotHaveDatabaseFile) |
|
s.Step(`^"([^"]*)" has loaded store$`, userHasLoadedStore) |
|
s.Step(`^"([^"]*)" does not have loaded store$`, userDoesNotHaveLoadedStore) |
|
s.Step(`^"([^"]*)" has running event loop$`, userHasRunningEventLoop) |
|
s.Step(`^"([^"]*)" does not have running event loop$`, userDoesNotHaveRunningEventLoop) |
|
s.Step(`^"([^"]*)" does not have API auth$`, isNotAuthorized) |
|
s.Step(`^"([^"]*)" has API auth$`, isAuthorized) |
|
} |
|
|
|
func bridgeResponseIs(expectedResponse string) error { |
|
err := ctx.GetLastBridgeError() |
|
if expectedResponse == "OK" { |
|
a.NoError(ctx.GetTestingT(), err) |
|
} else { |
|
a.EqualError(ctx.GetTestingT(), err, expectedResponse) |
|
} |
|
return ctx.GetTestingError() |
|
} |
|
|
|
func userHasAddressModeInMode(bddUserID, wantAddressMode string) error { |
|
account := ctx.GetTestAccount(bddUserID) |
|
if account == nil { |
|
return godog.ErrPending |
|
} |
|
bridgeUser, err := ctx.GetUser(account.Username()) |
|
if err != nil { |
|
return internalError(err, "getting user %s", account.Username()) |
|
} |
|
addressMode := "split" |
|
if bridgeUser.IsCombinedAddressMode() { |
|
addressMode = "combined" |
|
} |
|
a.Equal(ctx.GetTestingT(), wantAddressMode, addressMode) |
|
return ctx.GetTestingError() |
|
} |
|
|
|
func userIsDisconnected(bddUserID string) error { |
|
account := ctx.GetTestAccount(bddUserID) |
|
if account == nil { |
|
return godog.ErrPending |
|
} |
|
bridgeUser, err := ctx.GetUser(account.Username()) |
|
if err != nil { |
|
return internalError(err, "getting user %s", account.Username()) |
|
} |
|
a.Eventually(ctx.GetTestingT(), func() bool { |
|
return !bridgeUser.IsConnected() |
|
}, 5*time.Second, 10*time.Millisecond) |
|
return ctx.GetTestingError() |
|
} |
|
|
|
func userIsConnected(bddUserID string) error { |
|
account := ctx.GetTestAccount(bddUserID) |
|
if account == nil { |
|
return godog.ErrPending |
|
} |
|
t := ctx.GetTestingT() |
|
bridgeUser, err := ctx.GetUser(account.Username()) |
|
if err != nil { |
|
return internalError(err, "getting user %s", account.Username()) |
|
} |
|
a.Eventually(ctx.GetTestingT(), bridgeUser.IsConnected, 5*time.Second, 10*time.Millisecond) |
|
a.NotEmpty(t, bridgeUser.GetPrimaryAddress()) |
|
a.NotEmpty(t, bridgeUser.GetStoreAddresses()) |
|
return ctx.GetTestingError() |
|
} |
|
|
|
func userHasDatabaseFile(bddUserID string) error { |
|
account := ctx.GetTestAccount(bddUserID) |
|
if account == nil { |
|
return godog.ErrPending |
|
} |
|
filePath := ctx.GetDatabaseFilePath(account.UserID()) |
|
a.FileExists(ctx.GetTestingT(), filePath) |
|
return ctx.GetTestingError() |
|
} |
|
|
|
func userDoesNotHaveDatabaseFile(bddUserID string) error { |
|
account := ctx.GetTestAccount(bddUserID) |
|
if account == nil { |
|
return godog.ErrPending |
|
} |
|
filePath := ctx.GetDatabaseFilePath(account.UserID()) |
|
a.NoFileExists(ctx.GetTestingT(), filePath) |
|
return ctx.GetTestingError() |
|
} |
|
|
|
func userHasLoadedStore(bddUserID string) error { |
|
account := ctx.GetTestAccount(bddUserID) |
|
if account == nil { |
|
return godog.ErrPending |
|
} |
|
bridgeUser, err := ctx.GetUser(account.Username()) |
|
if err != nil { |
|
return internalError(err, "getting user %s", account.Username()) |
|
} |
|
a.NotNil(ctx.GetTestingT(), bridgeUser.GetStore()) |
|
return ctx.GetTestingError() |
|
} |
|
|
|
func userDoesNotHaveLoadedStore(bddUserID string) error { |
|
account := ctx.GetTestAccount(bddUserID) |
|
if account == nil { |
|
return godog.ErrPending |
|
} |
|
bridgeUser, err := ctx.GetUser(account.Username()) |
|
if err != nil { |
|
return internalError(err, "getting user %s", account.Username()) |
|
} |
|
a.Nil(ctx.GetTestingT(), bridgeUser.GetStore()) |
|
return ctx.GetTestingError() |
|
} |
|
|
|
func userHasRunningEventLoop(bddUserID string) error { |
|
account := ctx.GetTestAccount(bddUserID) |
|
if account == nil { |
|
return godog.ErrPending |
|
} |
|
store, err := ctx.GetStore(account.Username()) |
|
if err != nil { |
|
return internalError(err, "getting store of %s", account.Username()) |
|
} |
|
a.Eventually(ctx.GetTestingT(), func() bool { |
|
return store.TestGetEventLoop() != nil && store.TestGetEventLoop().IsRunning() |
|
}, 5*time.Second, 10*time.Millisecond) |
|
return ctx.GetTestingError() |
|
} |
|
|
|
func userDoesNotHaveRunningEventLoop(bddUserID string) error { |
|
account := ctx.GetTestAccount(bddUserID) |
|
if account == nil { |
|
return godog.ErrPending |
|
} |
|
store, err := ctx.GetStore(account.Username()) |
|
if err != nil { |
|
return internalError(err, "getting store of %s", account.Username()) |
|
} |
|
a.Eventually(ctx.GetTestingT(), func() bool { |
|
return store.TestGetEventLoop() == nil || !store.TestGetEventLoop().IsRunning() |
|
}, 5*time.Second, 10*time.Millisecond) |
|
return ctx.GetTestingError() |
|
} |
|
|
|
func isAuthorized(accountName string) error { |
|
account := ctx.GetTestAccount(accountName) |
|
if account == nil { |
|
return godog.ErrPending |
|
} |
|
bridgeUser, err := ctx.GetUser(account.Username()) |
|
if err != nil { |
|
return internalError(err, "getting user %s", account.Username()) |
|
} |
|
a.Eventually(ctx.GetTestingT(), bridgeUser.IsAuthorized, 5*time.Second, 10*time.Millisecond) |
|
return ctx.GetTestingError() |
|
} |
|
|
|
func isNotAuthorized(accountName string) error { |
|
account := ctx.GetTestAccount(accountName) |
|
if account == nil { |
|
return godog.ErrPending |
|
} |
|
bridgeUser, err := ctx.GetUser(account.Username()) |
|
if err != nil { |
|
return internalError(err, "getting user %s", account.Username()) |
|
} |
|
a.Eventually(ctx.GetTestingT(), func() bool { return !bridgeUser.IsAuthorized() }, 5*time.Second, 10*time.Millisecond) |
|
return ctx.GetTestingError() |
|
}
|
|
|