icinga2/test/base-object.cpp

40 lines
746 B
C++
Raw Normal View History

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