summaryrefslogtreecommitdiffstats
blob: 57c4d1ef7498fe773dbcee49105a407a693a7e32 (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
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
/*
 * Copyright (c) 2010 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */
/*
 * Copyright (c) 2015 Tarun Gupta.
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

package com.isode.stroke.serializer.payloadserializers;

import static org.junit.Assert.assertEquals;
import org.junit.BeforeClass;
import org.junit.Test;
import com.isode.stroke.elements.VCard;
import com.isode.stroke.serializer.payloadserializers.VCardSerializer;
import com.isode.stroke.base.DateTime;
import com.isode.stroke.jid.JID;
import com.isode.stroke.base.ByteArray;

public class VCardSerializerTest {

	@Test
	public void testSerialize() {
		VCardSerializer testling = new VCardSerializer();
		VCard vcard = new VCard();
		vcard.setVersion("2.0");
		vcard.setFullName("Alice In Wonderland");
		vcard.setPrefix("Mrs");
		vcard.setGivenName("Alice");
		vcard.setMiddleName("In");
		vcard.setFamilyName("Wonderland");
		vcard.setSuffix("PhD");
		vcard.setNickname("DreamGirl");
		vcard.setPhoto(new ByteArray("abcdef"));
		vcard.setPhotoType("image/png");
		vcard.setBirthday(DateTime.stringToDate("1865-05-04T00:00:00Z"));
		vcard.addUnknownContent("<MAILER>mutt</MAILER>");

		VCard.EMailAddress emailAddress1 = new VCard.EMailAddress();
		emailAddress1.address = "alice@wonderland.lit";
		emailAddress1.isHome = true;
		emailAddress1.isPreferred = true;
		emailAddress1.isInternet = true;
		vcard.addEMailAddress(emailAddress1);

		VCard.EMailAddress address2 = new VCard.EMailAddress();
		address2.address = "alice@teaparty.lit";
		address2.isWork = true;
		address2.isX400 = true;
		vcard.addEMailAddress(address2);

		VCard.Telephone telephone1 = new VCard.Telephone();
		telephone1.number = "555-6273";
		telephone1.isHome = true;
		telephone1.isVoice = true;
		vcard.addTelephone(telephone1);

		VCard.Address address1 = new VCard.Address();
		address1.locality = "Any Town";
		address1.street = "Fake Street 123";
		address1.postalCode = "12345";
		address1.country = "USA";
		address1.isHome = true;
		vcard.addAddress(address1);

		VCard.AddressLabel label1 = new VCard.AddressLabel();
		label1.lines.add("Fake Street 123");
		label1.lines.add("12345 Any Town");
		label1.lines.add("USA");
		label1.isHome = true;
		vcard.addAddressLabel(label1);

		vcard.addJID(new JID("alice@teaparty.lit"));
		vcard.addJID(new JID("alice@wonderland.lit"));

		vcard.setDescription("I once fell down a rabbit hole.");

		VCard.Organization org1 = new VCard.Organization();
		org1.name = "Alice In Wonderland Inc.";
		vcard.addOrganization(org1);

		vcard.addTitle("Some Title");
		vcard.addRole("Main Character");
		vcard.addURL("http://wonderland.lit/~alice");
		vcard.addURL("http://teaparty.lit/~alice2");

		String expectedResult = 
				"<vCard xmlns=\"vcard-temp\">"
			+		"<VERSION>2.0</VERSION>"
			+		"<FN>Alice In Wonderland</FN>"
			+		"<N>"
			+			"<FAMILY>Wonderland</FAMILY>"
			+			"<GIVEN>Alice</GIVEN>"
			+			"<MIDDLE>In</MIDDLE>"
			+			"<PREFIX>Mrs</PREFIX>"
			+			"<SUFFIX>PhD</SUFFIX>"
			+		"</N>"
			+		"<EMAIL>"
			+			"<USERID>alice@wonderland.lit</USERID>"
			+			"<HOME/>"
			+			"<INTERNET/>"
			+			"<PREF/>"
			+		"</EMAIL>"
			+		"<EMAIL>"
			+			"<USERID>alice@teaparty.lit</USERID>"
			+			"<WORK/>"
			+			"<X400/>"
			+		"</EMAIL>"
			+		"<NICKNAME>DreamGirl</NICKNAME>"
			+		"<PHOTO>"
			+			"<TYPE>image/png</TYPE>"
			+			"<BINVAL>YWJjZGVm</BINVAL>"
			+		"</PHOTO>"
			+		"<BDAY>1865-05-04T00:00:00Z</BDAY>"
			+		"<TEL>"
			+			"<NUMBER>555-6273</NUMBER>"
			+			"<HOME/>"
			+			"<VOICE/>"
			+		"</TEL>"
			+		"<ADR>"
			+			"<STREET>Fake Street 123</STREET>"
			+			"<LOCALITY>Any Town</LOCALITY>"
			+			"<PCODE>12345</PCODE>"
			+			"<CTRY>USA</CTRY>"
			+			"<HOME/>"
			+		"</ADR>"
			+		"<LABEL>"
			+			"<LINE>Fake Street 123</LINE>"
			+			"<LINE>12345 Any Town</LINE>"
			+			"<LINE>USA</LINE>"
			+			"<HOME/>"
			+		"</LABEL>"
			+		"<JID>alice@teaparty.lit</JID>"
			+		"<JID>alice@wonderland.lit</JID>"
			+		"<DESC>I once fell down a rabbit hole.</DESC>"
			+		"<ORG>"
			+			"<ORGNAME>Alice In Wonderland Inc.</ORGNAME>"
			+		"</ORG>"
			+		"<TITLE>Some Title</TITLE>"
			+		"<ROLE>Main Character</ROLE>"
			+		"<URL>http://wonderland.lit/~alice</URL>"
			+		"<URL>http://teaparty.lit/~alice2</URL>"
			+		"<MAILER>mutt</MAILER>"
			+	"</vCard>";

			assertEquals(expectedResult, testling.serialize(vcard));
	}
}