1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
// Eris Online RPG Protocol Library
// Copyright (C) 2007 Alistair Riddoch
//
// 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
// $Id: Calendar_unittest.cpp,v 1.3 2007-10-10 23:30:52 alriddoch Exp $
#include <Eris/Calendar.h>
#include <Eris/Connection.h>
#include <Eris/Account.h>
#include <Eris/Avatar.h>
#include <Eris/View.h>
#include <Eris/Log.h>
#include <Atlas/Objects/SmartPtr.h>
#include <Atlas/Objects/Anonymous.h>
#include <iostream>
#include <cassert>
class TestAvatar : public Eris::Avatar {
public:
TestAvatar(Eris::Account * ac, const std::string & ent_id) :
Eris::Avatar(ac, ent_id) { }
};
class TestCalendar : public Eris::Calendar {
public:
TestCalendar(Eris::Avatar * av) : Eris::Calendar(av) { }
void test_topLevelEntityChanged() {
topLevelEntityChanged();
}
};
class TestConnection : public Eris::Connection {
public:
TestConnection(const std::string & name, const std::string & host,
short port, bool debug) :
Eris::Connection(name, host, port, debug) { }
virtual void send(const Atlas::Objects::Root &obj) {
std::cout << "Sending " << obj->getParents().front()
<< std::endl << std::flush;
}
};
static void writeLog(Eris::LogLevel, const std::string & msg)
{
std::cerr << msg << std::endl << std::flush;
}
int main()
{
Eris::Logged.connect(sigc::ptr_fun(writeLog));
Eris::setLogLevel(Eris::LOG_DEBUG);
/////////////////////////// DateTime ///////////////////////////
// Test constructor and destructor
{
Eris::DateTime dt;
}
// Test valid()
{
Eris::DateTime dt;
assert(!dt.valid());
}
// Test year()
{
Eris::DateTime dt;
dt.year();
}
// Test month()
{
Eris::DateTime dt;
dt.month();
}
// Test dayOfMonth()
{
Eris::DateTime dt;
dt.dayOfMonth();
}
// Test seconds()
{
Eris::DateTime dt;
dt.seconds();
}
// Test minutes()
{
Eris::DateTime dt;
dt.minutes();
}
// Test hours()
{
Eris::DateTime dt;
dt.hours();
}
// Test year()
{
Eris::DateTime dt;
dt.year();
}
/////////////////////////// Calendar ///////////////////////////
// Test constructor
{
Eris::Connection * con = new TestConnection("name", "localhost",
6767, true);
Eris::Account * acc = new Eris::Account(con);
std::string fake_char_id("1");
Eris::Avatar * ea = new TestAvatar(acc, fake_char_id);
Eris::Calendar ec(ea);
}
// FIXME Can't set the toplevel on the view, which is required to
// test all paths through the constructor.
// Test topLevelEntityChanged()
{
Eris::Connection * con = new TestConnection("name", "localhost",
6767, true);
Eris::Account * acc = new Eris::Account(con);
std::string fake_char_id("1");
Eris::Avatar * ea = new TestAvatar(acc, fake_char_id);
TestCalendar ec(ea);
ec.test_topLevelEntityChanged();
}
return 0;
}
|