wxWidgets/tests/menu/accelentry.cpp
Vadim Zeitlin 856758269f Add a test checking "+" and "Num +" accelerator parsing
Confirm that this works correctly and also that "+" is intentionally '+'
and not WXK_ADD.
2022-06-08 15:40:23 +01:00

107 lines
2.6 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 "wx/scopedptr.h"
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]" )
{
wxScopedPtr<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") );
}
}