2013-04-18 16:40:09 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2013-04-18 16:40:09 +02:00
|
|
|
* *
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/object.hpp"
|
|
|
|
#include "base/value.hpp"
|
2013-04-18 16:40:09 +02:00
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
|
|
|
|
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(void)
|
|
|
|
{
|
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()
|