icinga2/test/base-object.cpp

40 lines
746 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2013-04-18 16:40:09 +02:00
2014-05-25 16:23:35 +02:00
#include "base/object.hpp"
#include "base/value.hpp"
#include <BoostTestTargetConfig.h>
2013-04-18 16:40:09 +02:00
using namespace icinga;
class TestObject : public Object
{
public:
2014-11-07 12:32:25 +01:00
DECLARE_PTR_TYPEDEFS(TestObject);
2013-04-18 16:40:09 +02:00
TestObject::Ptr GetTestRef()
2013-04-18 16:40:09 +02:00
{
return this;
2013-04-18 16:40:09 +02:00
}
};
BOOST_AUTO_TEST_SUITE(base_object)
BOOST_AUTO_TEST_CASE(construct)
{
Object::Ptr tobject = new TestObject();
2013-04-18 16:40:09 +02:00
BOOST_CHECK(tobject);
}
BOOST_AUTO_TEST_CASE(getself)
{
TestObject::Ptr tobject = new TestObject();
2013-04-18 16:40:09 +02:00
TestObject::Ptr tobject_self = tobject->GetTestRef();
BOOST_CHECK(tobject == tobject_self);
Value vobject = tobject;
BOOST_CHECK(!vobject.IsEmpty());
BOOST_CHECK(vobject.IsObjectType<TestObject>());
2013-04-18 16:40:09 +02:00
}
BOOST_AUTO_TEST_SUITE_END()