summaryrefslogtreecommitdiffstats
blob: 712ba1012c772a2ac3d5918d3fbe82a1904b85a8 (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
/*
 * Copyright (c) 2010 Kevin Smith
 * 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 <boost/bind.hpp>

#include "Swiften/Chat/ChatStateNotifier.h"

using namespace Swift;


class ChatStateMonitor {
public:
	ChatStateMonitor(ChatStateNotifier* notifier) {
		notifier_ = notifier;
		composingCallCount = 0;
		activeCallCount = 0;
		notifier->onChatStateChanged.connect(boost::bind(&ChatStateMonitor::handleChatStateChanged, this, _1));
	};

	int composingCallCount;
	int activeCallCount;
	ChatState::ChatStateType currentState;

private:
	void handleChatStateChanged(ChatState::ChatStateType newState) {
		switch (newState) {
			case ChatState::Composing:
				composingCallCount++;
				break;
			case ChatState::Active:
				activeCallCount++;
				break;
			default:
				break;
			}
		currentState = newState;
	};

	ChatStateNotifier* notifier_;
};

class ChatStateNotifierTest : public CppUnit::TestFixture {
	CPPUNIT_TEST_SUITE(ChatStateNotifierTest);
	CPPUNIT_TEST(testStartTypingReply_CapsNotIncluded);
	CPPUNIT_TEST(testStartTypingReply_CapsIncluded);
	CPPUNIT_TEST(testCancelledNewMessage);
	CPPUNIT_TEST(testContinueTypingReply_CapsIncluded);
	CPPUNIT_TEST(testContactShouldReceiveStates_CapsOnly);
	CPPUNIT_TEST(testContactShouldReceiveStates_CapsNorActive);
	CPPUNIT_TEST(testContactShouldReceiveStates_ActiveOverrideOn);	
	CPPUNIT_TEST(testContactShouldReceiveStates_ActiveOverrideOff);
	CPPUNIT_TEST_SUITE_END();
	
private:
	ChatStateNotifier* notifier_;
	ChatStateMonitor* monitor_;
	
public:
	void setUp() {
		notifier_ = new ChatStateNotifier();
		monitor_ = new ChatStateMonitor(notifier_);
	}
	
	void tearDown() {
		delete notifier_;
		delete monitor_;
	}
	
	void testStartTypingReply_CapsNotIncluded() {
		notifier_->setContactHas85Caps(false);
		notifier_->setUserIsTyping();
		CPPUNIT_ASSERT_EQUAL(0, monitor_->composingCallCount);
	}

	void testSendTwoMessages() {
		notifier_->setContactHas85Caps(true);
		notifier_->setUserIsTyping();
		notifier_->userSentMessage();
		notifier_->setUserIsTyping();
		notifier_->userSentMessage();
		CPPUNIT_ASSERT_EQUAL(2, monitor_->composingCallCount);
	}

	void testCancelledNewMessage() {
		notifier_->setContactHas85Caps(true);
		notifier_->setUserIsTyping();
		notifier_->userCancelledNewMessage();
		CPPUNIT_ASSERT_EQUAL(1, monitor_->composingCallCount);
		CPPUNIT_ASSERT_EQUAL(1, monitor_->activeCallCount);
		CPPUNIT_ASSERT_EQUAL(ChatState::Active, monitor_->currentState);
	}


	void testContactShouldReceiveStates_CapsOnly() {
		notifier_->setContactHas85Caps(true);
		CPPUNIT_ASSERT_EQUAL(true, notifier_->contactShouldReceiveStates());
	}

	void testContactShouldReceiveStates_CapsNorActive() {
		CPPUNIT_ASSERT_EQUAL(false, notifier_->contactShouldReceiveStates());
	}

	void testContactShouldReceiveStates_ActiveOverrideOn() {
		notifier_->setContactHas85Caps(false);
		notifier_->receivedMessageFromContact(true);
		CPPUNIT_ASSERT_EQUAL(true, notifier_->contactShouldReceiveStates());
	}

	void testContactShouldReceiveStates_ActiveOverrideOff() {
		notifier_->setContactHas85Caps(true);
		notifier_->receivedMessageFromContact(false);
		CPPUNIT_ASSERT_EQUAL(false, notifier_->contactShouldReceiveStates());
	}


	void testStartTypingReply_CapsIncluded() {
		notifier_->setContactHas85Caps(true);
		notifier_->setUserIsTyping();
		CPPUNIT_ASSERT_EQUAL(1, monitor_->composingCallCount);
	}

	void testContinueTypingReply_CapsIncluded() {
		notifier_->setContactHas85Caps(true);
		notifier_->setUserIsTyping();
		notifier_->setUserIsTyping();
		notifier_->setUserIsTyping();
		CPPUNIT_ASSERT_EQUAL(1, monitor_->composingCallCount);
	}

	
};

CPPUNIT_TEST_SUITE_REGISTRATION(ChatStateNotifierTest);