Files
wx_wherigo/libs/wxWidgets-3.3.1/tests/menu/accelentry.cpp
2026-02-14 09:47:24 +01:00

122 lines
3.0 KiB
C++

///////////////////////////////////////////////////////////////////////////////
// Name: tests/menu/accelentry.cpp
// Purpose: wxAcceleratorEntry unit test
// Author: Vadim Zeitlin
// Created: 2010-12-03
// Copyright: (c) 2010 Vadim Zeitlin
///////////////////////////////////////////////////////////////////////////////
// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------
#include "testprec.h"
#ifndef WX_PRECOMP
#endif // WX_PRECOMP
#include "wx/accel.h"
#include <memory>
namespace
{
void CheckAccelEntry(const wxAcceleratorEntry& accel, int keycode, int flags)
{
CHECK( keycode == accel.GetKeyCode() );
CHECK( flags == accel.GetFlags() );
}
} // anonymous namespace
/*
* Test the creation of accelerator keys using the Create function
*/
TEST_CASE( "wxAcceleratorEntry::Create", "[accelentry]" )
{
std::unique_ptr<wxAcceleratorEntry> pa;
SECTION( "Correct behavior" )
{
pa.reset( wxAcceleratorEntry::Create("Foo\tCtrl+Z") );
CHECK( pa );
CHECK( pa->IsOk() );
CheckAccelEntry(*pa, 'Z', wxACCEL_CTRL);
}
SECTION( "Tab missing" )
{
pa.reset( wxAcceleratorEntry::Create("Shift-Q") );
CHECK( !pa );
}
SECTION( "No accelerator key specified" )
{
pa.reset( wxAcceleratorEntry::Create("bloordyblop") );
CHECK( !pa );
}
SECTION( "Display name parsing" )
{
pa.reset( wxAcceleratorEntry::Create("Test\tBackSpace") );
CHECK( pa );
CHECK( pa->IsOk() );
CheckAccelEntry(*pa, WXK_BACK, wxACCEL_NORMAL);
}
}
/*
* Test the creation of accelerator keys from strings and also the
* creation of strings from an accelerator key
*/
TEST_CASE( "wxAcceleratorEntry::StringTests", "[accelentry]" )
{
wxAcceleratorEntry a(wxACCEL_ALT, 'X');
SECTION( "Create string from key" )
{
CHECK( "Alt+X" == a.ToString() );
}
SECTION( "Create from valid string" )
{
CHECK( a.FromString("Alt+Shift+F1") );
CheckAccelEntry(a, WXK_F1, wxACCEL_ALT | wxACCEL_SHIFT);
// Note that this is just "+" and not WXK_ADD.
CHECK( a.FromString("Ctrl-+") );
CheckAccelEntry(a, '+', wxACCEL_CTRL);
// But this is WXK_NUMPAD_ADD, to distinguish it from the main "+" key.
CHECK( a.FromString("Ctrl-Num +") );
CheckAccelEntry(a, WXK_NUMPAD_ADD, wxACCEL_CTRL);
}
SECTION( "Create from invalid string" )
{
CHECK( !a.FromString("bloordyblop") );
}
}
TEST_CASE( "wxAcceleratorTable::Create", "[accelentry]" )
{
CHECK( !wxAcceleratorTable(0, nullptr).IsOk() );
const wxAcceleratorEntry entries[] =
{
wxAcceleratorEntry(wxACCEL_CTRL, 'A'),
wxAcceleratorEntry(wxACCEL_ALT, 'B'),
wxAcceleratorEntry(wxACCEL_SHIFT, 'C')
};
CHECK( wxAcceleratorTable(WXSIZEOF(entries), entries).IsOk() );
}