2019-02-25 14:48:22 +01:00
|
|
|
/* 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"
|
2016-09-07 08:20:51 +02:00
|
|
|
#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
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
TestObject::Ptr GetTestRef()
|
2013-04-18 16:40:09 +02:00
|
|
|
{
|
2014-11-08 21:17:16 +01:00
|
|
|
return this;
|
2013-04-18 16:40:09 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_SUITE(base_object)
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(construct)
|
|
|
|
{
|
2014-11-08 21:17:16 +01:00
|
|
|
Object::Ptr tobject = new TestObject();
|
2013-04-18 16:40:09 +02:00
|
|
|
BOOST_CHECK(tobject);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_AUTO_TEST_CASE(getself)
|
|
|
|
{
|
2014-11-08 21:17:16 +01:00
|
|
|
TestObject::Ptr tobject = new TestObject();
|
2013-04-18 16:40:09 +02:00
|
|
|
TestObject::Ptr tobject_self = tobject->GetTestRef();
|
|
|
|
BOOST_CHECK(tobject == tobject_self);
|
2013-09-02 15:11:39 +02:00
|
|
|
|
|
|
|
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()
|