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 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <test/bootstrapfixture.hxx>
#include <vcl/wrkwin.hxx>
#include <vcl/toolkit/edit.hxx>
#include <vcl/toolkit/button.hxx>
#include <vcl/toolkit/combobox.hxx>
#include <vcl/toolkit/dialog.hxx>
#include <vcl/toolkit/field.hxx>
#include <vcl/virdev.hxx>
#include <vcl/tabctrl.hxx>
#include <vcl/layout.hxx>
#include <vcl/scheduler.hxx>
#include <com/sun/star/awt/XWindow.hpp>
#include <com/sun/star/awt/XWindowPeer.hpp>
#include <com/sun/star/lang/XComponent.hpp>
class LifecycleTest : public test::BootstrapFixture
{
void testWidgets(vcl::Window *pParent);
public:
LifecycleTest() : BootstrapFixture(true, false) {}
void testCast();
void testVirtualDevice();
void testMultiDispose();
void testIsolatedWidgets();
void testParentedWidgets();
void testChildDispose();
void testPostDispose();
void testLeakage();
void testToolkit();
CPPUNIT_TEST_SUITE(LifecycleTest);
CPPUNIT_TEST(testCast);
CPPUNIT_TEST(testVirtualDevice);
CPPUNIT_TEST(testMultiDispose);
CPPUNIT_TEST(testIsolatedWidgets);
CPPUNIT_TEST(testParentedWidgets);
CPPUNIT_TEST(testChildDispose);
CPPUNIT_TEST(testPostDispose);
CPPUNIT_TEST(testLeakage);
CPPUNIT_TEST(testToolkit);
CPPUNIT_TEST_SUITE_END();
};
// A compile time sanity check
void LifecycleTest::testCast()
{
ScopedVclPtrInstance< PushButton > xButton( nullptr, 0 );
ScopedVclPtr<vcl::Window> xWindow(xButton);
ScopedVclPtrInstance< MetricField > xField( nullptr, 0 );
ScopedVclPtr<SpinField> xSpin(xField);
ScopedVclPtr<Edit> xEdit(xField);
// the following line should NOT compile
// VclPtr<PushButton> xButton2(xWindow);
}
void LifecycleTest::testVirtualDevice()
{
VclPtr<VirtualDevice> pVDev = VclPtr< VirtualDevice >::Create();
ScopedVclPtrInstance< VirtualDevice > pVDev2;
VclPtrInstance<VirtualDevice> pVDev3;
VclPtrInstance<VirtualDevice> pVDev4(DeviceFormat::DEFAULT);
CPPUNIT_ASSERT(!!pVDev);
CPPUNIT_ASSERT(!!pVDev2);
CPPUNIT_ASSERT(!!pVDev3);
CPPUNIT_ASSERT(!!pVDev4);
pVDev.disposeAndClear();
pVDev4.disposeAndClear();
}
void LifecycleTest::testMultiDispose()
{
VclPtrInstance<WorkWindow> xWin(nullptr, WB_APP|WB_STDWORK);
CPPUNIT_ASSERT(xWin);
xWin->disposeOnce();
xWin->disposeOnce();
xWin->disposeOnce();
CPPUNIT_ASSERT(!xWin->GetWindow(GetWindowType::Parent));
CPPUNIT_ASSERT(!xWin->GetChild(0));
CPPUNIT_ASSERT_EQUAL(static_cast<sal_uInt16>(0), xWin->GetChildCount());
}
void LifecycleTest::testWidgets(vcl::Window *pParent)
{
{
ScopedVclPtrInstance< PushButton > aPtr( pParent );
(void)aPtr; // silence unused variable warning
}
{
ScopedVclPtrInstance< OKButton > aPtr( pParent );
(void)aPtr; // silence unused variable warning
}
{
ScopedVclPtrInstance< CancelButton > aPtr( pParent );
(void)aPtr; // silence unused variable warning
}
{
ScopedVclPtrInstance< HelpButton > aPtr( pParent );
(void)aPtr; // silence unused variable warning
}
// Some widgets really insist on adoption.
if (pParent)
{
{
ScopedVclPtrInstance< CheckBox > aPtr( pParent );
(void)aPtr; // silence unused variable warning
}
{
ScopedVclPtrInstance< Edit > aPtr( pParent );
(void)aPtr; // silence unused variable warning
}
{
ScopedVclPtrInstance< ComboBox > aPtr( pParent );
(void)aPtr; // silence unused variable warning
}
{
ScopedVclPtrInstance< RadioButton > aPtr( pParent, true, 0 );
(void)aPtr; // silence unused variable warning
}
}
}
void LifecycleTest::testIsolatedWidgets()
{
testWidgets(nullptr);
}
void LifecycleTest::testParentedWidgets()
{
ScopedVclPtrInstance<WorkWindow> xWin(nullptr, WB_APP|WB_STDWORK);
CPPUNIT_ASSERT(xWin);
xWin->Show();
testWidgets(xWin);
}
namespace {
class DisposableChild : public vcl::Window
{
public:
explicit DisposableChild(vcl::Window *pParent) : vcl::Window(pParent) {}
virtual ~DisposableChild() override
{
disposeOnce();
}
};
}
void LifecycleTest::testChildDispose()
{
VclPtrInstance<WorkWindow> xWin(nullptr, WB_APP|WB_STDWORK);
CPPUNIT_ASSERT(xWin);
VclPtrInstance< DisposableChild > xChild( xWin.get() );
xWin->Show();
xChild->disposeOnce();
xWin->disposeOnce();
}
void LifecycleTest::testPostDispose()
{
VclPtrInstance<WorkWindow> xWin(nullptr, WB_APP|WB_STDWORK);
xWin->disposeOnce();
// check selected methods continue to work post-dispose
CPPUNIT_ASSERT(!xWin->GetParent());
xWin->Show();
CPPUNIT_ASSERT(!xWin->IsReallyShown());
CPPUNIT_ASSERT(!xWin->IsEnabled());
CPPUNIT_ASSERT(!xWin->IsInputEnabled());
CPPUNIT_ASSERT(!xWin->GetChild(0));
CPPUNIT_ASSERT(!xWin->GetWindow(GetWindowType::Parent));
}
namespace {
template <class vcl_type>
class LeakTestClass : public vcl_type
{
bool &mrDeleted;
public:
template<typename... Arg>
LeakTestClass(bool &bDeleted, Arg &&... arg) :
vcl_type(std::forward<Arg>(arg)...),
mrDeleted(bDeleted)
{
mrDeleted = false;
}
~LeakTestClass()
{
mrDeleted = true;
}
};
class LeakTestObject
{
bool mbDeleted;
VclPtr<vcl::Window> mxRef;
void *mpRef;
LeakTestObject()
: mbDeleted(false)
, mpRef(nullptr)
{
}
public:
template<typename vcl_type, typename... Arg> static LeakTestObject *
Create(Arg &&... arg)
{
LeakTestObject *pNew = new LeakTestObject();
pNew->mxRef = VclPtr< LeakTestClass< vcl_type > >::Create( pNew->mbDeleted,
std::forward<Arg>(arg)...);
pNew->mpRef = static_cast<void *>(static_cast<vcl::Window *>(pNew->mxRef));
return pNew;
}
const VclPtr<vcl::Window>& getRef() const { return mxRef; }
void disposeAndClear()
{
mxRef.disposeAndClear();
}
void assertDeleted()
{
if (!mbDeleted)
{
OUStringBuffer aMsg = "Type '";
vcl::Window *pWin = static_cast<vcl::Window *>(mpRef);
aMsg.appendAscii(typeid(*pWin).name());
aMsg.append("' not freed after dispose");
CPPUNIT_FAIL(OUStringToOString(aMsg.makeStringAndClear(),
RTL_TEXTENCODING_UTF8).getStr());
}
}
};
}
void LifecycleTest::testLeakage()
{
std::vector<LeakTestObject *> aObjects;
// Create objects
aObjects.push_back(LeakTestObject::Create<WorkWindow>(nullptr, WB_APP|WB_STDWORK));
VclPtr<vcl::Window> xParent = aObjects.back()->getRef();
aObjects.push_back(LeakTestObject::Create<PushButton>(xParent));
aObjects.push_back(LeakTestObject::Create<CheckBox>(xParent));
aObjects.push_back(LeakTestObject::Create<Edit>(xParent));
aObjects.push_back(LeakTestObject::Create<ComboBox>(xParent));
aObjects.push_back(LeakTestObject::Create<RadioButton>(xParent, true, 0));
{ // something that looks like a dialog
aObjects.push_back(LeakTestObject::Create<Dialog>(xParent,WB_CLIPCHILDREN|WB_MOVEABLE|WB_3DLOOK|WB_CLOSEABLE|WB_SIZEABLE));
VclPtr<vcl::Window> xDlgParent = aObjects.back()->getRef();
aObjects.push_back(LeakTestObject::Create<VclVBox>(xDlgParent));
VclPtr<vcl::Window> xVBox = aObjects.back()->getRef();
aObjects.push_back(LeakTestObject::Create<VclVButtonBox>(xVBox));
}
aObjects.push_back(LeakTestObject::Create<Dialog>(xParent, u"PrintProgressDialog", "vcl/ui/printprogressdialog.ui"));
xParent.clear();
for (auto i = aObjects.rbegin(); i != aObjects.rend(); ++i)
(*i)->getRef()->Show();
for (auto i = aObjects.rbegin(); i != aObjects.rend(); ++i)
(*i)->disposeAndClear();
for (auto i = aObjects.begin(); i != aObjects.end(); ++i)
(*i)->assertDeleted();
for (auto i = aObjects.begin(); i != aObjects.end(); ++i)
delete *i;
}
void LifecycleTest::testToolkit()
{
LeakTestObject *pVclWin = LeakTestObject::Create<WorkWindow>(nullptr, WB_APP|WB_STDWORK);
css::uno::Reference<css::awt::XWindow> xWindow(pVclWin->getRef()->GetComponentInterface(), css::uno::UNO_QUERY);
CPPUNIT_ASSERT(xWindow.is());
// test UNO dispose
css::uno::Reference<css::lang::XComponent> xWinComponent = xWindow;
CPPUNIT_ASSERT(xWinComponent.is());
CPPUNIT_ASSERT(!pVclWin->getRef()->isDisposed());
xWinComponent->dispose();
CPPUNIT_ASSERT(pVclWin->getRef()->isDisposed());
// test UNO cleanup
xWinComponent.clear();
xWindow.clear();
pVclWin->disposeAndClear();
pVclWin->assertDeleted();
delete pVclWin;
}
CPPUNIT_TEST_SUITE_REGISTRATION(LifecycleTest);
CPPUNIT_PLUGIN_IMPLEMENT();
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|