// Copyright (c) 2025 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 . package focus import ( "os" "testing" "github.com/Masterminds/semver/v3" "github.com/ProtonMail/proton-bridge/v3/internal/locations" "github.com/stretchr/testify/require" ) func TestFocus_Raise(t *testing.T) { tmpDir := t.TempDir() locations := locations.New(newTestLocationsProvider(tmpDir), "config-name") // Start the focus service. service, err := NewService(locations, semver.MustParse("1.2.3"), nil) require.NoError(t, err) settingsFolder, err := locations.ProvideSettingsPath() require.NoError(t, err) // Try to dial it, it should succeed. require.True(t, TryRaise(settingsFolder)) // The service should report a raise call. <-service.GetRaiseCh() // Stop the service. service.Close() // Try to dial it, it should fail. require.False(t, TryRaise(settingsFolder)) } func TestFocus_Version(t *testing.T) { tmpDir := t.TempDir() locations := locations.New(newTestLocationsProvider(tmpDir), "config-name") // Start the focus service. _, err := NewService(locations, semver.MustParse("1.2.3"), nil) require.NoError(t, err) settingsFolder, err := locations.ProvideSettingsPath() require.NoError(t, err) // Try to dial it, it should succeed. version, ok := TryVersion(settingsFolder) require.True(t, ok) require.Equal(t, "1.2.3", version.String()) } type TestLocationsProvider struct { config, data, cache string } func newTestLocationsProvider(dir string) *TestLocationsProvider { config, err := os.MkdirTemp(dir, "config") if err != nil { panic(err) } data, err := os.MkdirTemp(dir, "data") if err != nil { panic(err) } cache, err := os.MkdirTemp(dir, "cache") if err != nil { panic(err) } return &TestLocationsProvider{ config: config, data: data, cache: cache, } } func (provider *TestLocationsProvider) UserConfig() string { return provider.config } func (provider *TestLocationsProvider) UserData() string { return provider.data } func (provider *TestLocationsProvider) UserCache() string { return provider.cache }