aboutsummaryrefslogtreecommitdiff
path: root/juick-core/src/test/java/com/juick/MessageTest.java
blob: b420edfa1dc127e8ec59ca073ccec51199162b8f (plain) (blame)
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/*
 * Copyright (C) 2008-2017, Juick
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package com.juick;

import org.apache.commons.lang3.RandomUtils;
import org.apache.commons.lang3.StringUtils;
import org.junit.Test;
import rocks.xmpp.addr.Jid;
import rocks.xmpp.core.XmppException;
import rocks.xmpp.core.session.Extension;
import rocks.xmpp.core.session.XmppSession;
import rocks.xmpp.core.session.XmppSessionConfiguration;

import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;
import java.io.StringReader;

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.*;

/**
 * Created by aalexeev on 12/7/16.
 */
public class MessageTest {

    @Test
    public void equalsShouldBeReturnCorrectResult() throws Exception {
        Message message1 = new Message();

        Message message2 = new Message();
        message2.setMid(RandomUtils.nextInt());

        Message message3 = message1;

        assertThat(message1, equalTo(message3));
        assertThat(message3, equalTo(message1));

        assertThat(message1, not(equalTo(message2)));
        assertThat(message2, not(equalTo(message1)));

        int id = RandomUtils.nextInt();
        message1.setMid(id);
        message2.setMid(id);

        id = RandomUtils.nextInt();
        message1.setRid(id);
        message2.setRid(id);

        assertThat(message1, equalTo(message2));
        assertThat(message2, equalTo(message1));

        message1.setMid(RandomUtils.nextInt());
        message1.setRid(RandomUtils.nextInt());

        message2.setMid(RandomUtils.nextInt());
        message2.setRid(RandomUtils.nextInt());

        assertThat(message1, not(equalTo(message2)));
        assertThat(message2, not(equalTo(message1)));
    }

    @Test
    public void compareShouldBeReturnCorrectResult() throws Exception {
        Message message1 = new Message();

        message1.setMid(RandomUtils.nextInt());
        message1.setRid(RandomUtils.nextInt());

        Message message2 = message1;

        assertThat(message1.compareTo(message2), equalTo(0));
        assertThat(message2.compareTo(message1), equalTo(0));

        Message message3 = new Message();

        message3.setMid(message1.getMid());
        message3.setRid(message1.getRid());

        assertThat(message1.compareTo(message3), equalTo(0));
        assertThat(message3.compareTo(message1), equalTo(0));
    }

    @Test
    public void messageWithGreaterMidShouldBeLessThenMesageWithLessMid() throws Exception {
        Message message1 = new Message();

        message1.setMid(RandomUtils.nextInt());
        message1.setRid(RandomUtils.nextInt());

        Message message2 = new Message();

        message2.setMid(message1.getMid() + RandomUtils.nextInt(1, 10000));
        message2.setRid(RandomUtils.nextInt());

        assertThat(message1.compareTo(message2), equalTo(1));
        assertThat(message2.compareTo(message1), equalTo(-1));
    }

    @Test
    public void messageWithGreaterRidAndEqualsMidShouldBeGreaterThenMessageWithLessRid() throws Exception {
        Message message1 = new Message();

        message1.setMid(RandomUtils.nextInt());
        message1.setRid(RandomUtils.nextInt());

        Message message2 = new Message();

        message2.setMid(message1.getMid());
        message2.setRid(message1.getRid() +  + RandomUtils.nextInt(1, 10000));

        assertThat(message1.compareTo(message2), equalTo(-1));
        assertThat(message2.compareTo(message1), equalTo(1));
    }

    @Test
    public void attachmentURLShouldBeReturnCorrectResult() throws Exception {
        Message message1 = new Message();

        assertThat(message1.getAttachmentURL(), nullValue());

        message1.setAttachmentType("jpeg");

        assertThat(message1.getAttachmentURL(), equalTo("http://i.juick.com/photos-1024/0.jpeg"));

        message1.setRid(1);

        assertThat(message1.getAttachmentURL(), equalTo("http://i.juick.com/photos-1024/0-1.jpeg"));

        Message message2 = new Message();

        message2.setAttachmentType("mp4");

        assertThat(message2.getAttachmentURL(), equalTo("http://i.juick.com/video/0.mp4"));

        message2.setRid(1);

        assertThat(message2.getAttachmentURL(), equalTo("http://i.juick.com/video/0-1.mp4"));
    }

    @Test
    public void tagsStringShouldBeEmptyIfNoTags() throws Exception {
        Message message = new Message();

        assertThat(message.getTagsString(), isEmptyString());

        message.FriendsOnly = true;

        assertThat(message.getTagsString(), isEmptyString());

        message.Hidden = true;
        message.ReadOnly = true;

        assertThat(message.getTagsString(), isEmptyString());

        message.parseTags(" ");

        assertThat(message.getTagsString(), isEmptyString());
    }

    @Test
    public void tagsStringShouldHasNoTagDuplicates() throws Exception {
        Message message = new Message();

        message.parseTags("test");

        assertThat(StringUtils.countMatches(message.getTagsString(), "*test"), equalTo(1));

        message.parseTags("test test");

        assertThat(StringUtils.countMatches(message.getTagsString(), "*test"), equalTo(1));

        message.parseTags("test test ab test");

        assertThat(StringUtils.countMatches(message.getTagsString(), "*test"), equalTo(1));
        assertThat(StringUtils.countMatches(message.getTagsString(), "*ab"), equalTo(1));
    }
    @Test
    public void tagsShouldBeDeserializedFromXml() throws JAXBException {
        XmppSessionConfiguration configuration = XmppSessionConfiguration.builder()
                .extensions(Extension.of(com.juick.Message.class))
                .build();
        XmppSession xmpp = new XmppSession("juick.com", configuration) {
            @Override
            public void connect(Jid from) throws XmppException {

            }

            @Override
            public Jid getConnectedResource() {
                return null;
            }
        };
        String tag = "<tag xmlns='http://juick.com/message'>yo</tag>";
        String xml = "<message xmlns='jabber:client' from='juick@juick.com' type='chat'><body>yo</body><juick mid='1' ts='2017-09-14' uid='1' uname='ugnich' xmlns='http://juick.com/message'><body>yo</body><user uid='1' uname='ugnich' xmlns='http://juick.com/user'/><tag>yo</tag><tag>people</tag></juick></message>";
        Unmarshaller unmarshaller = xmpp.createUnmarshaller();
        rocks.xmpp.core.stanza.model.Message xmppMessage = (rocks.xmpp.core.stanza.model.Message) unmarshaller.unmarshal(new StringReader(xml));
        Tag xmlTag = (Tag) unmarshaller.unmarshal(new StringReader(tag));
        assertThat(xmlTag.getName(), equalTo("yo"));
        Message juickMessage = xmppMessage.getExtension(Message.class);
        assertThat(juickMessage.getTags().get(0).getName(), equalTo("yo"));
    }
}