1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
///////////////////////////////////////////////////////////////////////////////
// Name: tests/controls/dialogtest.cpp
// Purpose: wxWindow unit test
// Author: Vaclav Slavik
// Created: 2012-08-30
// Copyright: (c) 2012 Vaclav Slavik
///////////////////////////////////////////////////////////////////////////////
#include "testprec.h"
#include "wx/testing.h"
#ifdef HAVE_VARIADIC_MACROS
#include "wx/msgdlg.h"
#include "wx/filedlg.h"
// This test suite tests helpers from wx/testing.h intended for testing of code
// that calls modal dialogs. It does not test the implementation of wxWidgets'
// dialogs.
class ModalDialogsTestCase : public CppUnit::TestCase
{
public:
ModalDialogsTestCase() { }
private:
CPPUNIT_TEST_SUITE( ModalDialogsTestCase );
// wxInfoBar has bug under x11. It will cause the dialog crash
// Disable it for now.
#if !defined (__WXX11__)
CPPUNIT_TEST( MessageDialog );
#endif
#if wxUSE_FILEDLG
CPPUNIT_TEST( FileDialog );
#endif
CPPUNIT_TEST( CustomDialog );
CPPUNIT_TEST( InitDialog );
CPPUNIT_TEST_SUITE_END();
void MessageDialog();
void FileDialog();
void CustomDialog();
void InitDialog();
wxDECLARE_NO_COPY_CLASS(ModalDialogsTestCase);
};
// register in the unnamed registry so that these tests are run by default
CPPUNIT_TEST_SUITE_REGISTRATION( ModalDialogsTestCase );
// also include in its own registry so that these tests can be run alone
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( ModalDialogsTestCase, "ModalDialogsTestCase" );
void ModalDialogsTestCase::MessageDialog()
{
int rc;
#if wxUSE_FILEDLG
#define FILE_DIALOG_TEST ,\
wxExpectModal<wxFileDialog>(wxGetCwd() + "/test.txt").Optional()
#else
#define FILE_DIALOG_TEST
#endif
wxTEST_DIALOG
(
rc = wxMessageBox("Should I fail?", "Question", wxYES|wxNO),
wxExpectModal<wxMessageDialog>(wxNO)
FILE_DIALOG_TEST
);
CPPUNIT_ASSERT_EQUAL(wxNO, rc);
}
#if wxUSE_FILEDLG
void ModalDialogsTestCase::FileDialog()
{
wxFileDialog dlg(NULL);
int rc;
wxTEST_DIALOG
(
rc = dlg.ShowModal(),
wxExpectModal<wxFileDialog>(wxGetCwd() + "/test.txt")
);
CPPUNIT_ASSERT_EQUAL((int)wxID_OK, rc);
CPPUNIT_ASSERT_EQUAL("test.txt", dlg.GetFilename());
#ifdef __WXGTK3__
// The native file dialog in GTK+ 3 launches an async operation which tries
// to dereference the already deleted dialog object if we don't let it to
// complete before leaving this function.
wxYield();
#endif
}
#endif
class MyDialog : public wxDialog
{
public:
MyDialog(wxWindow *parent) : wxDialog(parent, wxID_ANY, "Entry"), m_value(-1)
{
// Dummy. Imagine it's a real dialog that shows some number-entry
// controls.
}
int m_value;
};
template<>
class wxExpectModal<MyDialog> : public wxExpectModalBase<MyDialog>
{
public:
wxExpectModal(int valueToSet) : m_valueToSet(valueToSet) {}
protected:
virtual int OnInvoked(MyDialog *dlg) const wxOVERRIDE
{
// Simulate the user entering the expected number:
dlg->m_value = m_valueToSet;
return wxID_OK;
}
int m_valueToSet;
};
void ModalDialogsTestCase::CustomDialog()
{
MyDialog dlg(NULL);
wxTEST_DIALOG
(
dlg.ShowModal(),
wxExpectModal<MyDialog>(42)
);
CPPUNIT_ASSERT_EQUAL( 42, dlg.m_value );
}
class MyModalDialog : public wxDialog
{
public:
MyModalDialog() : wxDialog (NULL, wxID_ANY, "Modal Dialog")
{
m_wasModal = false;
Bind( wxEVT_INIT_DIALOG, &MyModalDialog::OnInit, this );
}
void OnInit(wxInitDialogEvent& WXUNUSED(event))
{
m_wasModal = IsModal();
CallAfter( &MyModalDialog::EndModal, wxID_OK );
}
bool WasModal() const
{
return m_wasModal;
}
private:
bool m_wasModal;
};
void ModalDialogsTestCase::InitDialog()
{
MyModalDialog dlg;
dlg.ShowModal();
CPPUNIT_ASSERT( dlg.WasModal() );
}
#endif // HAVE_VARIADIC_MACROS
|