mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-10 12:46:46 +00:00
105 lines
3.5 KiB
Go
105 lines
3.5 KiB
Go
// Copyright (c) 2024 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 user
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/ProtonMail/proton-bridge/v3/internal/events/mocks"
|
|
"github.com/ProtonMail/proton-bridge/v3/internal/services/imapservice"
|
|
"github.com/golang/mock/gomock"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestCheckIrrecoverableEventID_EventIDIsEmptyButNoSyncStarted(t *testing.T) {
|
|
tmpDir := t.TempDir()
|
|
userID := "foo"
|
|
mockCtrl := gomock.NewController(t)
|
|
publisher := mocks.NewMockEventPublisher(mockCtrl)
|
|
|
|
require.NoError(t, checkIrrecoverableEventID(context.Background(), "", userID, tmpDir, publisher))
|
|
}
|
|
|
|
func TestCheckIrrecoverableEventID_EventIDIsNotEmptyButNoSyncStarted(t *testing.T) {
|
|
tmpDir := t.TempDir()
|
|
userID := "foo"
|
|
mockCtrl := gomock.NewController(t)
|
|
publisher := mocks.NewMockEventPublisher(mockCtrl)
|
|
|
|
require.NoError(t, checkIrrecoverableEventID(context.Background(), "ffoofo", userID, tmpDir, publisher))
|
|
}
|
|
|
|
func TestCheckIrrecoverableEventID_EventIDIsEmptyButSyncStarted(t *testing.T) {
|
|
tmpDir := t.TempDir()
|
|
userID := "foo"
|
|
mockCtrl := gomock.NewController(t)
|
|
publisher := mocks.NewMockEventPublisher(mockCtrl)
|
|
|
|
publisher.EXPECT().PublishEvent(gomock.Any(), gomock.Eq(newEmptyEventIDBadEvent(userID)))
|
|
|
|
require.NoError(t, genSyncState(context.Background(), userID, tmpDir, false))
|
|
require.NoError(t, checkIrrecoverableEventID(context.Background(), "", userID, tmpDir, publisher))
|
|
}
|
|
|
|
func TestCheckIrrecoverableEventID_EventIDIsEmptyButSyncFinished(t *testing.T) {
|
|
tmpDir := t.TempDir()
|
|
userID := "foo"
|
|
mockCtrl := gomock.NewController(t)
|
|
publisher := mocks.NewMockEventPublisher(mockCtrl)
|
|
|
|
publisher.EXPECT().PublishEvent(gomock.Any(), gomock.Eq(newEmptyEventIDBadEvent(userID)))
|
|
|
|
require.NoError(t, genSyncState(context.Background(), userID, tmpDir, true))
|
|
require.NoError(t, checkIrrecoverableEventID(context.Background(), "", userID, tmpDir, publisher))
|
|
}
|
|
|
|
func TestCheckIrrecoverableEventID_EventIDIsNotEmptyButSyncFinished(t *testing.T) {
|
|
tmpDir := t.TempDir()
|
|
userID := "foo"
|
|
mockCtrl := gomock.NewController(t)
|
|
publisher := mocks.NewMockEventPublisher(mockCtrl)
|
|
|
|
require.NoError(t, genSyncState(context.Background(), userID, tmpDir, true))
|
|
require.NoError(t, checkIrrecoverableEventID(context.Background(), "some event", userID, tmpDir, publisher))
|
|
}
|
|
|
|
func genSyncState(ctx context.Context, userID, dir string, finished bool) error {
|
|
s, err := imapservice.NewSyncState(imapservice.GetSyncConfigPath(dir, userID))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if finished {
|
|
if err := s.SetHasLabels(ctx, true); err != nil {
|
|
return err
|
|
}
|
|
if err := s.SetHasMessages(ctx, true); err != nil {
|
|
return err
|
|
}
|
|
if err := s.SetMessageCount(ctx, 10); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
if err := s.SetHasLabels(ctx, true); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|