diff options
author | Vincent Richard <[email protected]> | 2005-07-17 20:18:14 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-07-17 20:18:14 +0000 |
commit | dafac00334ffa0ccc32696a208b2531cb4f44947 (patch) | |
tree | 78323e15fc1daca6522c1ae68336f3ce8f0ba849 /tests/utility/smartPtrTest.cpp | |
parent | Added getName() to retrieve attachment filename. (diff) | |
download | vmime-dafac00334ffa0ccc32696a208b2531cb4f44947.tar.gz vmime-dafac00334ffa0ccc32696a208b2531cb4f44947.zip |
Added unit tests for smart pointer.
Diffstat (limited to 'tests/utility/smartPtrTest.cpp')
-rw-r--r-- | tests/utility/smartPtrTest.cpp | 195 |
1 files changed, 195 insertions, 0 deletions
diff --git a/tests/utility/smartPtrTest.cpp b/tests/utility/smartPtrTest.cpp new file mode 100644 index 00000000..9bb8a49d --- /dev/null +++ b/tests/utility/smartPtrTest.cpp @@ -0,0 +1,195 @@ +// +// VMime library (http://www.vmime.org) +// Copyright (C) 2002-2005 Vincent Richard <[email protected]> +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License as +// published by the Free Software Foundation; either version 2 of +// the License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +// + +#include "../lib/unit++/unit++.h" + +#include <iostream> +#include <ostream> + +#include "vmime/vmime.hpp" +#include "vmime/platforms/posix/posixHandler.hpp" + +#include "vmime/utility/smartPtr.hpp" + +using namespace unitpp; + + +namespace +{ + class smartPtrTest : public suite + { + struct A : public vmime::object + { + const int strongCount() const { return getStrongRefCount(); } + const int weakCount() const { return getWeakRefCount(); } + }; + + struct B : public virtual A { }; + struct C : public virtual A { }; + struct D : public B, public C { }; + + class R : public A + { + public: + + R(bool* aliveFlag) : m_aliveFlag(aliveFlag) { *m_aliveFlag = true; } + ~R() { *m_aliveFlag = false; } + + private: + + bool* m_aliveFlag; + }; + + + void testNull() + { + vmime::ref <A> r1; + + assert_true("1", r1 == NULL); + assert_true("2", r1 == 0); + assert_true("3", NULL == r1); + assert_true("4", 0 == r1); + assert_true("5", !r1); + assert_true("6", r1 == vmime::null); + assert_true("7", vmime::null == r1); + assert_eq("8", static_cast <A*>(0), r1.get()); + + const A* p = r1; + assert_eq("9", static_cast <A*>(0), p); + } + + void testRefCounting() + { + bool o1_alive; + vmime::ref <R> r1 = vmime::create <R>(&o1_alive); + + assert_true("1", r1.get() != 0); + assert_true("2", o1_alive); + assert_eq("3", 1, r1->strongCount()); + assert_eq("4", 0, r1->weakCount()); + + vmime::ref <R> r2 = r1; + + assert_true("5", o1_alive); + assert_eq("6", 2, r1->strongCount()); + assert_eq("7", 0, r1->weakCount()); + + bool o2_alive; + vmime::ref <R> r3 = vmime::create <R>(&o2_alive); + + r2 = r3; + + assert_true("8", o1_alive); + assert_true("9", o2_alive); + assert_eq("10", 1, r1->strongCount()); + assert_eq("11", 2, r2->strongCount()); + assert_eq("12", 2, r3->strongCount()); + + { + vmime::ref <R> r4; + + r4 = r1; + + assert_true("13", o1_alive); + assert_true("14", o2_alive); + assert_eq("15", 2, r4->strongCount()); + assert_eq("16", 2, r1->strongCount()); + + r1 = NULL; + + assert_true("17", o1_alive); + assert_true("18", o2_alive); + assert_eq("19", 1, r4->strongCount()); + + // Here, object1 will be deleted + } + + assert_true("20", !o1_alive); + assert_true("21", o2_alive); + + { + vmime::weak_ref <R> w1 = r3; + + assert_eq("22", 1, r3->weakCount()); + } + + assert_true("23", o2_alive); + assert_eq("24", 2, r3->strongCount()); + assert_eq("25", 0, r3->weakCount()); + } + + void testWeakRef() + { + vmime::ref <A> r1 = vmime::create <A>(); + vmime::weak_ref <A> w1 = r1; + + assert_true("1", r1.get() != 0); + assert_true("2", r1.get() == w1.get()); + + { + vmime::ref <A> r2 = r1; + + assert_true("3", r1.get() == r2.get()); + assert_true("4", r1.get() == w1.get()); + } + + assert_true("5", r1.get() != 0); + assert_true("6", r1.get() == w1.get()); + + r1 = 0; + + assert_true("7", w1.get() == 0); + } + + void testCast() + { + // Explicit upcast + vmime::ref <A> r1 = vmime::create <C>(); + vmime::ref <C> r2 = r1.dynamicCast <C>(); + + assert_true("1", r2.get() == dynamic_cast <C*>(r1.get())); + assert_true("2", 0 == r1.dynamicCast <B>().get()); + + // Implicit downcast + vmime::ref <D> r3 = vmime::create <D>(); + vmime::ref <A> r4 = r3; + + assert_true("3", r4.get() == dynamic_cast <A*>(r3.get())); + } + + public: + + smartPtrTest() : suite("vmime::utility::url") + { + // VMime initialization + vmime::platformDependant::setHandler<vmime::platforms::posix::posixHandler>(); + + add("Null", testcase(this, "TestNull", &smartPtrTest::testNull)); + add("RefCounting", testcase(this, "TestRefCounting", &smartPtrTest::testRefCounting)); + add("WeakRef", testcase(this, "TestWeakRef", &smartPtrTest::testWeakRef)); + add("Cast", testcase(this, "TestCast", &smartPtrTest::testCast)); + + suite::main().add("vmime::utility::smartPtr", this); + } + + }; + + smartPtrTest* theTest = new smartPtrTest(); +} + |