Disabled wxRTC tests that don't work in wxGTK

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65822 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2010-10-16 10:24:42 +00:00
parent 97e5b0645e
commit 9be7f47cf4

View File

@@ -117,6 +117,10 @@ void RichTextCtrlTestCase::tearDown()
void RichTextCtrlTestCase::CharacterEvent() void RichTextCtrlTestCase::CharacterEvent()
{ {
#if wxUSE_UIACTIONSIMULATOR #if wxUSE_UIACTIONSIMULATOR
// There seems to be an event sequence problem on GTK+ that causes the events
// to be disconnected before they're processed, generating spurious errors.
#if !defined(__WXGTK__)
wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(), wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(),
wxTestableFrame); wxTestableFrame);
@@ -140,11 +144,15 @@ void RichTextCtrlTestCase::CharacterEvent()
CPPUNIT_ASSERT_EQUAL(0, frame->GetEventCount(wxEVT_COMMAND_RICHTEXT_CHARACTER)); CPPUNIT_ASSERT_EQUAL(0, frame->GetEventCount(wxEVT_COMMAND_RICHTEXT_CHARACTER));
CPPUNIT_ASSERT_EQUAL(1, frame->GetEventCount(wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED)); CPPUNIT_ASSERT_EQUAL(1, frame->GetEventCount(wxEVT_COMMAND_RICHTEXT_CONTENT_INSERTED));
#endif #endif
#endif
} }
void RichTextCtrlTestCase::DeleteEvent() void RichTextCtrlTestCase::DeleteEvent()
{ {
#if wxUSE_UIACTIONSIMULATOR #if wxUSE_UIACTIONSIMULATOR
// There seems to be an event sequence problem on GTK+ that causes the events
// to be disconnected before they're processed, generating spurious errors.
#if !defined(__WXGTK__)
wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(), wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(),
wxTestableFrame); wxTestableFrame);
@@ -163,11 +171,15 @@ void RichTextCtrlTestCase::DeleteEvent()
//Only one as the delete doesn't delete anthing //Only one as the delete doesn't delete anthing
CPPUNIT_ASSERT_EQUAL(1, frame->GetEventCount(wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED)); CPPUNIT_ASSERT_EQUAL(1, frame->GetEventCount(wxEVT_COMMAND_RICHTEXT_CONTENT_DELETED));
#endif #endif
#endif
} }
void RichTextCtrlTestCase::ReturnEvent() void RichTextCtrlTestCase::ReturnEvent()
{ {
#if wxUSE_UIACTIONSIMULATOR #if wxUSE_UIACTIONSIMULATOR
// There seems to be an event sequence problem on GTK+ that causes the events
// to be disconnected before they're processed, generating spurious errors.
#if !defined(__WXGTK__)
wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(), wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(),
wxTestableFrame); wxTestableFrame);
@@ -181,6 +193,7 @@ void RichTextCtrlTestCase::ReturnEvent()
CPPUNIT_ASSERT_EQUAL(1, frame->GetEventCount()); CPPUNIT_ASSERT_EQUAL(1, frame->GetEventCount());
#endif #endif
#endif
} }
void RichTextCtrlTestCase::StyleEvent() void RichTextCtrlTestCase::StyleEvent()
@@ -221,6 +234,8 @@ void RichTextCtrlTestCase::BufferResetEvent()
void RichTextCtrlTestCase::UrlEvent() void RichTextCtrlTestCase::UrlEvent()
{ {
#if wxUSE_UIACTIONSIMULATOR #if wxUSE_UIACTIONSIMULATOR
// Mouse up event not being caught on GTK+
#if !defined(__WXGTK__)
wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(), wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(),
wxTestableFrame); wxTestableFrame);
@@ -239,11 +254,13 @@ void RichTextCtrlTestCase::UrlEvent()
CPPUNIT_ASSERT_EQUAL(1, frame->GetEventCount()); CPPUNIT_ASSERT_EQUAL(1, frame->GetEventCount());
#endif #endif
#endif
} }
void RichTextCtrlTestCase::TextEvent() void RichTextCtrlTestCase::TextEvent()
{ {
#if wxUSE_UIACTIONSIMULATOR #if wxUSE_UIACTIONSIMULATOR
#if !defined(__WXGTK__)
wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(), wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(),
wxTestableFrame); wxTestableFrame);
@@ -258,6 +275,7 @@ void RichTextCtrlTestCase::TextEvent()
CPPUNIT_ASSERT_EQUAL("abcdef", m_rich->GetValue()); CPPUNIT_ASSERT_EQUAL("abcdef", m_rich->GetValue());
CPPUNIT_ASSERT_EQUAL(6, frame->GetEventCount()); CPPUNIT_ASSERT_EQUAL(6, frame->GetEventCount());
#endif #endif
#endif
} }
void RichTextCtrlTestCase::CutCopyPaste() void RichTextCtrlTestCase::CutCopyPaste()
@@ -405,6 +423,7 @@ void RichTextCtrlTestCase::Selection()
void RichTextCtrlTestCase::Editable() void RichTextCtrlTestCase::Editable()
{ {
#if wxUSE_UIACTIONSIMULATOR #if wxUSE_UIACTIONSIMULATOR
#if !defined(__WXGTK__)
wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(), wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(),
wxTestableFrame); wxTestableFrame);
@@ -426,6 +445,7 @@ void RichTextCtrlTestCase::Editable()
CPPUNIT_ASSERT_EQUAL("abcdef", m_rich->GetValue()); CPPUNIT_ASSERT_EQUAL("abcdef", m_rich->GetValue());
CPPUNIT_ASSERT_EQUAL(0, frame->GetEventCount()); CPPUNIT_ASSERT_EQUAL(0, frame->GetEventCount());
#endif #endif
#endif
} }
void RichTextCtrlTestCase::Range() void RichTextCtrlTestCase::Range()