blob: 01899a969cfdd067f63ca265e4ec6583d433387f (
plain)
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
|
/*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
#include "Swiften/Serializer/PayloadSerializers/UnitTest/PayloadsSerializer.h"
#include "Swiften/Elements/Storage.h"
using namespace Swift;
class StorageSerializerTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(StorageSerializerTest);
CPPUNIT_TEST(testSerialize);
CPPUNIT_TEST(testSerialize_NoNickOrPassword);
CPPUNIT_TEST_SUITE_END();
public:
StorageSerializerTest() {}
void testSerialize() {
PayloadsSerializer serializer;
boost::shared_ptr<Storage> storage(new Storage());
Storage::Room room;
room.name = "Council of Oberon";
room.autoJoin = true;
room.jid = JID("council@conference.underhill.org");
room.nick = "Puck";
room.password = "MyPass";
storage->addRoom(room);
Storage::URL url;
url.name = "Complete Works of Shakespeare";
url.url = "http://the-tech.mit.edu/Shakespeare/";
storage->addURL(url);
CPPUNIT_ASSERT_EQUAL(std::string(
"<storage xmlns=\"storage:bookmarks\">"
"<conference "
"autojoin=\"1\" "
"jid=\"council@conference.underhill.org\" "
"name=\"Council of Oberon\">"
"<nick>Puck</nick>"
"<password>MyPass</password>"
"</conference>"
"<url name=\"Complete Works of Shakespeare\" url=\"http://the-tech.mit.edu/Shakespeare/\"/>"
"</storage>"), serializer.serialize(storage));
}
void testSerialize_NoNickOrPassword() {
PayloadsSerializer serializer;
boost::shared_ptr<Storage> storage(new Storage());
Storage::Room room;
room.name = "Council of Oberon";
room.autoJoin = true;
room.jid = JID("council@conference.underhill.org");
storage->addRoom(room);
CPPUNIT_ASSERT_EQUAL(std::string(
"<storage xmlns=\"storage:bookmarks\">"
"<conference "
"autojoin=\"1\" "
"jid=\"council@conference.underhill.org\" "
"name=\"Council of Oberon\"/>"
"</storage>"), serializer.serialize(storage));
}
};
CPPUNIT_TEST_SUITE_REGISTRATION(StorageSerializerTest);
|