forked from Silverfish/proton-bridge
* 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
71 lines
2.1 KiB
Go
71 lines
2.1 KiB
Go
// Copyright (c) 2022 Proton AG
|
|
//
|
|
// This file is part of Proton Mail 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 pmapi
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/ProtonMail/gopenpgp/v2/crypto"
|
|
"github.com/google/go-cmp/cmp"
|
|
"github.com/google/go-cmp/cmp/cmpopts"
|
|
r "github.com/stretchr/testify/require"
|
|
)
|
|
|
|
var (
|
|
usedSpace = int64(23456)
|
|
maxSpace = int64(12345678)
|
|
|
|
testCurrentUser = &User{
|
|
ID: "MJLke8kWh1BBvG95JBIrZvzpgsZ94hNNgjNHVyhXMiv4g9cn6SgvqiIFR5cigpml2LD_iUk_3DkV29oojTt3eA==",
|
|
Name: "jason",
|
|
UsedSpace: &usedSpace,
|
|
Currency: "USD",
|
|
Role: 2,
|
|
Subscribed: 1,
|
|
Services: 1,
|
|
MaxSpace: &maxSpace,
|
|
MaxUpload: 26214400,
|
|
Private: 1,
|
|
Keys: *loadPMKeys(readTestFile("keyring_userKey_JSON", false)),
|
|
}
|
|
)
|
|
|
|
func routeGetUsers(tb testing.TB, w http.ResponseWriter, req *http.Request) string {
|
|
r.NoError(tb, checkMethodAndPath(req, "GET", "/users"))
|
|
r.NoError(tb, isAuthReq(req, testUID, testAccessToken))
|
|
return "users/get_response.json"
|
|
}
|
|
|
|
func TestClient_CurrentUser(t *testing.T) {
|
|
finish, c := newTestClientCallbacks(t,
|
|
routeGetUsers,
|
|
routeGetAddresses,
|
|
)
|
|
defer finish()
|
|
|
|
user, err := c.CurrentUser(context.Background())
|
|
r.Nil(t, err)
|
|
|
|
// Ignore KeyRings during the check because they have unexported fields and cannot be compared
|
|
r.True(t, cmp.Equal(user, testCurrentUser, cmpopts.IgnoreTypes(&crypto.Key{})))
|
|
|
|
r.NoError(t, c.Unlock(context.Background(), []byte(testMailboxPassword)))
|
|
}
|