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