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.
148 lines
4.6 KiB
148 lines
4.6 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 context |
|
|
|
import ( |
|
"fmt" |
|
"math/rand" |
|
"path/filepath" |
|
"time" |
|
|
|
"github.com/ProtonMail/proton-bridge/internal/bridge" |
|
"github.com/ProtonMail/proton-bridge/internal/store" |
|
"github.com/ProtonMail/proton-bridge/pkg/srp" |
|
"github.com/pkg/errors" |
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
// LoginUser logs in the user with the given username, password, and mailbox password. |
|
func (ctx *TestContext) LoginUser(username, password, mailboxPassword string) (err error) { |
|
srp.RandReader = rand.New(rand.NewSource(42)) |
|
|
|
client, auth, err := ctx.bridge.Login(username, password) |
|
if err != nil { |
|
return errors.Wrap(err, "failed to login") |
|
} |
|
|
|
if auth.HasTwoFactor() { |
|
if _, err := client.Auth2FA("2fa code", auth); err != nil { |
|
return errors.Wrap(err, "failed to login with 2FA") |
|
} |
|
} |
|
|
|
user, err := ctx.bridge.FinishLogin(client, auth, mailboxPassword) |
|
if err != nil { |
|
return errors.Wrap(err, "failed to finish login") |
|
} |
|
|
|
ctx.addCleanupChecked(user.Logout, "Logging out user") |
|
|
|
return |
|
} |
|
|
|
// GetUser retrieves the bridge user matching the given query string. |
|
func (ctx *TestContext) GetUser(username string) (*bridge.User, error) { |
|
return ctx.bridge.GetUser(username) |
|
} |
|
|
|
// GetStore retrieves the store for given username. |
|
func (ctx *TestContext) GetStore(username string) (*store.Store, error) { |
|
user, err := ctx.GetUser(username) |
|
if err != nil { |
|
return nil, err |
|
} |
|
return user.GetStore(), nil |
|
} |
|
|
|
// GetStoreAddress retrieves the store address for given username and addressID. |
|
func (ctx *TestContext) GetStoreAddress(username, addressID string) (*store.Address, error) { |
|
store, err := ctx.GetStore(username) |
|
if err != nil { |
|
return nil, err |
|
} |
|
return store.GetAddress(addressID) |
|
} |
|
|
|
// GetStoreMailbox retrieves the store mailbox for given username, address ID and mailbox name. |
|
func (ctx *TestContext) GetStoreMailbox(username, addressID, mailboxName string) (*store.Mailbox, error) { |
|
address, err := ctx.GetStoreAddress(username, addressID) |
|
if err != nil { |
|
return nil, err |
|
} |
|
return address.GetMailbox(mailboxName) |
|
} |
|
|
|
// GetDatabaseFilePath returns the file path of the user's store file. |
|
func (ctx *TestContext) GetDatabaseFilePath(userID string) string { |
|
// We cannot use store to get information because we need to check db file also when user is deleted from bridge. |
|
fileName := fmt.Sprintf("mailbox-%v.db", userID) |
|
return filepath.Join(ctx.cfg.GetDBDir(), fileName) |
|
} |
|
|
|
// WaitForSync waits for sync to be done. |
|
func (ctx *TestContext) WaitForSync(username string) error { |
|
store, err := ctx.GetStore(username) |
|
if err != nil { |
|
return err |
|
} |
|
// First wait for ongoing sync to be done before starting and waiting for new one. |
|
ctx.eventuallySyncIsFinished(store) |
|
store.TestSync() |
|
ctx.eventuallySyncIsFinished(store) |
|
return nil |
|
} |
|
|
|
func (ctx *TestContext) eventuallySyncIsFinished(store *store.Store) { |
|
assert.Eventually(ctx.t, func() bool { return !store.TestIsSyncRunning() }, 30*time.Second, 10*time.Millisecond) |
|
} |
|
|
|
// EventuallySyncIsFinishedForUsername will wait until sync is finished or |
|
// deadline is reached see eventuallySyncIsFinished for timing |
|
func (ctx *TestContext) EventuallySyncIsFinishedForUsername(username string) { |
|
store, err := ctx.GetStore(username) |
|
assert.Nil(ctx.t, err) |
|
ctx.eventuallySyncIsFinished(store) |
|
} |
|
|
|
// LogoutUser logs out the given user. |
|
func (ctx *TestContext) LogoutUser(query string) (err error) { |
|
user, err := ctx.bridge.GetUser(query) |
|
if err != nil { |
|
return errors.Wrap(err, "failed to get user") |
|
} |
|
|
|
if err = user.Logout(); err != nil { |
|
return errors.Wrap(err, "failed to logout user") |
|
} |
|
|
|
return |
|
} |
|
|
|
// DeleteUser deletes the given user. |
|
func (ctx *TestContext) DeleteUser(query string, deleteStore bool) (err error) { |
|
user, err := ctx.bridge.GetUser(query) |
|
if err != nil { |
|
return errors.Wrap(err, "failed to get user") |
|
} |
|
|
|
if err = ctx.bridge.DeleteUser(user.ID(), deleteStore); err != nil { |
|
err = errors.Wrap(err, "failed to delete user") |
|
} |
|
|
|
return |
|
}
|
|
|