mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-05 21:02:39 +08:00
127 lines
3.4 KiB
C++
127 lines
3.4 KiB
C++
/* barrier -- mouse and keyboard sharing utility
|
|
Copyright (C) 2021 Povilas Kanapickas <povilas@radix.lt>
|
|
|
|
This package is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
found in the file LICENSE that should have accompanied this file.
|
|
|
|
This package 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "../src/KeySequence.h"
|
|
#include <gtest/gtest.h>
|
|
#include <cstdio>
|
|
|
|
#include <QtCore/QFile>
|
|
#include <QtCore/QSettings>
|
|
#include <QtCore/QTemporaryFile>
|
|
|
|
namespace {
|
|
|
|
auto s_key_sequence_test_keys = {
|
|
Qt::Key_Space,
|
|
Qt::Key_Escape,
|
|
Qt::Key_Tab,
|
|
Qt::Key_Backtab,
|
|
Qt::Key_Backspace,
|
|
Qt::Key_Return,
|
|
Qt::Key_Insert,
|
|
Qt::Key_Delete,
|
|
Qt::Key_Pause,
|
|
Qt::Key_Print,
|
|
Qt::Key_SysReq,
|
|
Qt::Key_Home,
|
|
Qt::Key_End,
|
|
Qt::Key_Left,
|
|
Qt::Key_Up,
|
|
Qt::Key_Right,
|
|
Qt::Key_Down,
|
|
Qt::Key_Comma,
|
|
Qt::Key_Semicolon,
|
|
Qt::Key_PageUp,
|
|
Qt::Key_PageDown,
|
|
Qt::Key_CapsLock,
|
|
Qt::Key_NumLock,
|
|
Qt::Key_ScrollLock,
|
|
Qt::Key_Help,
|
|
Qt::Key_Enter,
|
|
Qt::Key_Clear,
|
|
Qt::Key_Back,
|
|
Qt::Key_Forward,
|
|
Qt::Key_Stop,
|
|
Qt::Key_Refresh,
|
|
Qt::Key_VolumeDown,
|
|
Qt::Key_VolumeMute,
|
|
Qt::Key_VolumeUp,
|
|
Qt::Key_MediaPlay,
|
|
Qt::Key_MediaStop,
|
|
Qt::Key_MediaPrevious,
|
|
Qt::Key_MediaNext,
|
|
Qt::Key_HomePage,
|
|
Qt::Key_Favorites,
|
|
Qt::Key_Search,
|
|
Qt::Key_Standby,
|
|
Qt::Key_LaunchMail,
|
|
Qt::Key_LaunchMedia,
|
|
Qt::Key_Launch0,
|
|
Qt::Key_Launch1,
|
|
Qt::Key_Select,
|
|
};
|
|
|
|
QString getTemporaryFilename()
|
|
{
|
|
QTemporaryFile temp_file;
|
|
temp_file.open();
|
|
return temp_file.fileName();
|
|
}
|
|
}
|
|
|
|
class KeySequenceLoadSaveTestFixture :
|
|
public ::testing::TestWithParam<std::tr1::tuple<Qt::Key, QSettings::Format>> {};
|
|
|
|
TEST_P(KeySequenceLoadSaveTestFixture, SupportsSpecialSymbols)
|
|
{
|
|
int key = std::tr1::get<0>(GetParam());
|
|
QSettings::Format format = std::tr1::get<1>(GetParam());
|
|
|
|
auto filename = getTemporaryFilename();
|
|
|
|
{
|
|
QSettings settings(filename, format);
|
|
KeySequence sequence;
|
|
|
|
sequence.appendKey(key, 0);
|
|
sequence.appendKey(key, 0);
|
|
settings.beginGroup("test");
|
|
sequence.saveSettings(settings);
|
|
settings.endGroup();
|
|
}
|
|
{
|
|
QSettings settings(filename, format);
|
|
KeySequence sequence;
|
|
|
|
settings.beginGroup("test");
|
|
sequence.loadSettings(settings);
|
|
settings.endGroup();
|
|
|
|
const auto& data = sequence.sequence();
|
|
ASSERT_EQ(data.size(), 2);
|
|
ASSERT_EQ(data[0], key);
|
|
ASSERT_EQ(data[1], key);
|
|
}
|
|
|
|
QFile::remove(filename);
|
|
}
|
|
|
|
INSTANTIATE_TEST_CASE_P(
|
|
KeySequenceLoadSaveTests,
|
|
KeySequenceLoadSaveTestFixture,
|
|
::testing::Combine(::testing::ValuesIn(s_key_sequence_test_keys),
|
|
::testing::Values(QSettings::NativeFormat, QSettings::IniFormat)));
|