mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-10 12:46:46 +00:00
* Renaming GUI, CLI, no-impact config. * License header and documentation rebranding. * Rename app title and vendor. Impact: manual install * Migrating mac keychain and launch on startup. * Fix linter and linter renaming
190 lines
6.0 KiB
Go
190 lines
6.0 KiB
Go
// Copyright (c) 2022 Proton AG
|
|
//
|
|
// This file is part of Proton Mail Bridge.Bridge.
|
|
//
|
|
// Proton Mail 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.
|
|
//
|
|
// Proton Mail 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 Proton Mail Bridge. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
package tests
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/cucumber/godog"
|
|
a "github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func UsersChecksFeatureContext(s *godog.ScenarioContext) {
|
|
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(`^"([^"]*)" has non-zero space$`, userHasNonZeroSpace)
|
|
s.Step(`^"([^"]*)" has zero space$`, userHasZeroSpace)
|
|
}
|
|
|
|
func userHasAddressModeInMode(bddUserID, wantAddressMode string) error {
|
|
account := ctx.GetTestAccount(bddUserID)
|
|
if account == nil {
|
|
return godog.ErrPending
|
|
}
|
|
user, err := ctx.GetUser(account.Username())
|
|
if err != nil {
|
|
return internalError(err, "getting user %s", account.Username())
|
|
}
|
|
addressMode := "split"
|
|
if user.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
|
|
}
|
|
user, err := ctx.GetUser(account.Username())
|
|
if err != nil {
|
|
return internalError(err, "getting user %s", account.Username())
|
|
}
|
|
a.Eventually(ctx.GetTestingT(), func() bool {
|
|
return !user.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()
|
|
user, err := ctx.GetUser(account.Username())
|
|
if err != nil {
|
|
return internalError(err, "getting user %s", account.Username())
|
|
}
|
|
a.Eventually(ctx.GetTestingT(), user.IsConnected, 5*time.Second, 10*time.Millisecond)
|
|
a.NotEmpty(t, user.GetPrimaryAddress())
|
|
a.NotEmpty(t, user.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
|
|
}
|
|
user, err := ctx.GetUser(account.Username())
|
|
if err != nil {
|
|
return internalError(err, "getting user %s", account.Username())
|
|
}
|
|
a.NotNil(ctx.GetTestingT(), user.GetStore())
|
|
return ctx.GetTestingError()
|
|
}
|
|
|
|
func userDoesNotHaveLoadedStore(bddUserID string) error {
|
|
account := ctx.GetTestAccount(bddUserID)
|
|
if account == nil {
|
|
return godog.ErrPending
|
|
}
|
|
user, err := ctx.GetUser(account.Username())
|
|
if err != nil {
|
|
return internalError(err, "getting user %s", account.Username())
|
|
}
|
|
a.Nil(ctx.GetTestingT(), user.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())
|
|
}
|
|
if store == nil {
|
|
return nil
|
|
}
|
|
a.Eventually(ctx.GetTestingT(), func() bool {
|
|
return store.TestGetEventLoop() == nil || !store.TestGetEventLoop().IsRunning()
|
|
}, 5*time.Second, 10*time.Millisecond)
|
|
return ctx.GetTestingError()
|
|
}
|
|
|
|
func userHasSpace(bddUserID string, wantNonZero bool) error {
|
|
account := ctx.GetTestAccount(bddUserID)
|
|
if account == nil {
|
|
return godog.ErrPending
|
|
}
|
|
|
|
user, err := ctx.GetUser(account.Username())
|
|
if err != nil {
|
|
return internalError(err, "getting user %s", account.Username())
|
|
}
|
|
|
|
// We should only test `user.TotalBytes()>0` and not test
|
|
// `user.UsedBytes()>0`. The later value can be always zero when
|
|
// account is empty even when user object had already cached the value
|
|
// from server.
|
|
a.Equal(ctx.GetTestingT(), wantNonZero, user.TotalBytes() > 0)
|
|
|
|
return ctx.GetTestingError()
|
|
}
|
|
|
|
func userHasNonZeroSpace(bddUserID string) error { return userHasSpace(bddUserID, true) }
|
|
func userHasZeroSpace(bddUserID string) error { return userHasSpace(bddUserID, false) }
|