about summary refs log tree commit diff stats
path: root/tests/functionaltests/test_chat_session.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functionaltests/test_chat_session.c')
-rw-r--r--tests/functionaltests/test_chat_session.c44
1 files changed, 22 insertions, 22 deletions
diff --git a/tests/functionaltests/test_chat_session.c b/tests/functionaltests/test_chat_session.c
index 9e779afa..6589ae36 100644
--- a/tests/functionaltests/test_chat_session.c
+++ b/tests/functionaltests/test_chat_session.c
@@ -19,7 +19,7 @@ sends_message_to_barejid_when_contact_offline(void **state)
     prof_input("/msg buddy1@localhost Hi there");
 
     assert_true(stbbr_received(
-        "<message id=\"*\" to=\"buddy1@localhost\" type=\"chat\">"
+        "<message id='*' to='buddy1@localhost' type='chat'>"
             "<body>Hi there</body>"
         "</message>"
     ));
@@ -31,7 +31,7 @@ sends_message_to_barejid_when_contact_online(void **state)
     prof_connect();
 
     stbbr_send(
-        "<presence to=\"stabber@localhost/profanity\" from=\"buddy1@localhost/mobile\">"
+        "<presence to='stabber@localhost/profanity' from='buddy1@localhost/mobile'>"
             "<priority>10</priority>"
         "</presence>"
     );
@@ -40,7 +40,7 @@ sends_message_to_barejid_when_contact_online(void **state)
     prof_input("/msg buddy1@localhost Hi there");
 
     assert_true(stbbr_received(
-        "<message id=\"*\" to=\"buddy1@localhost\" type=\"chat\">"
+        "<message id='*' to='buddy1@localhost' type='chat'>"
             "<body>Hi there</body>"
         "</message>"
     ));
@@ -52,14 +52,14 @@ sends_message_to_fulljid_when_received_from_fulljid(void **state)
     prof_connect();
 
     stbbr_send(
-        "<presence to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\">"
+        "<presence to='stabber@localhost' from='buddy1@localhost/mobile'>"
             "<priority>10</priority>"
         "</presence>"
     );
     assert_true(prof_output_exact("Buddy1 (mobile) is online"));
 
     stbbr_send(
-        "<message id=\"message1\" to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\" type=\"chat\">"
+        "<message id='message1' to='stabber@localhost' from='buddy1@localhost/mobile' type='chat'>"
             "<body>First message</body>"
         "</message>"
     );
@@ -68,7 +68,7 @@ sends_message_to_fulljid_when_received_from_fulljid(void **state)
     prof_input("/msg buddy1@localhost Hi there");
 
     assert_true(stbbr_received(
-        "<message id=\"*\" to=\"buddy1@localhost/mobile\" type=\"chat\">"
+        "<message id='*' to='buddy1@localhost/mobile' type='chat'>"
             "<body>Hi there</body>"
         "</message>"
     ));
@@ -80,14 +80,14 @@ sends_subsequent_messages_to_fulljid(void **state)
     prof_connect();
 
     stbbr_send(
-        "<presence to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\">"
+        "<presence to='stabber@localhost' from='buddy1@localhost/mobile'>"
             "<priority>10</priority>"
         "</presence>"
     );
     assert_true(prof_output_exact("Buddy1 (mobile) is online"));
 
     stbbr_send(
-        "<message id=\"message1\" to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\" type=\"chat\">"
+        "<message id='message1' to='stabber@localhost' from='buddy1@localhost/mobile' type='chat'>"
             "<body>First message</body>"
         "</message>"
     );
@@ -95,21 +95,21 @@ sends_subsequent_messages_to_fulljid(void **state)
 
     prof_input("/msg buddy1@localhost Outgoing 1");
     assert_true(stbbr_received(
-        "<message id=\"*\" to=\"buddy1@localhost/mobile\" type=\"chat\">"
+        "<message id='*' to='buddy1@localhost/mobile' type='chat'>"
             "<body>Outgoing 1</body>"
         "</message>"
     ));
 
     prof_input("/msg buddy1@localhost Outgoing 2");
     assert_true(stbbr_received(
-        "<message id=\"*\" to=\"buddy1@localhost/mobile\" type=\"chat\">"
+        "<message id='*' to='buddy1@localhost/mobile' type='chat'>"
             "<body>Outgoing 2</body>"
         "</message>"
     ));
 
     prof_input("/msg buddy1@localhost Outgoing 3");
     assert_true(stbbr_received(
-        "<message id=\"*\" to=\"buddy1@localhost/mobile\" type=\"chat\">"
+        "<message id='*' to='buddy1@localhost/mobile' type='chat'>"
             "<body>Outgoing 3</body>"
         "</message>"
     ));
@@ -121,14 +121,14 @@ resets_to_barejid_after_presence_received(void **state)
     prof_connect();
 
     stbbr_send(
-        "<presence to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\">"
+        "<presence to='stabber@localhost' from='buddy1@localhost/mobile'>"
             "<priority>10</priority>"
         "</presence>"
     );
     assert_true(prof_output_exact("Buddy1 (mobile) is online"));
 
     stbbr_send(
-        "<message id=\"message1\" to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\" type=\"chat\">"
+        "<message id='message1' to='stabber@localhost' from='buddy1@localhost/mobile' type='chat'>"
             "<body>First message</body>"
         "</message>"
     );
@@ -136,13 +136,13 @@ resets_to_barejid_after_presence_received(void **state)
 
     prof_input("/msg buddy1@localhost Outgoing 1");
     assert_true(stbbr_received(
-        "<message id=\"*\" to=\"buddy1@localhost/mobile\" type=\"chat\">"
+        "<message id='*' to='buddy1@localhost/mobile' type='chat'>"
             "<body>Outgoing 1</body>"
         "</message>"
     ));
 
     stbbr_send(
-        "<presence to=\"stabber@localhost\" from=\"buddy1@localhost/laptop\">"
+        "<presence to='stabber@localhost' from='buddy1@localhost/laptop'>"
             "<priority>5</priority>"
             "<show>dnd</show>"
         "</presence>"
@@ -151,7 +151,7 @@ resets_to_barejid_after_presence_received(void **state)
 
     prof_input("/msg buddy1@localhost Outgoing 2");
     assert_true(stbbr_received(
-        "<message id=\"*\" to=\"buddy1@localhost\" type=\"chat\">"
+        "<message id='*' to='buddy1@localhost' type='chat'>"
             "<body>Outgoing 2</body>"
         "</message>"
     ));
@@ -163,14 +163,14 @@ new_session_when_message_received_from_different_fulljid(void **state)
     prof_connect();
 
     stbbr_send(
-        "<presence to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\">"
+        "<presence to='stabber@localhost' from='buddy1@localhost/mobile'>"
             "<priority>10</priority>"
         "</presence>"
     );
     assert_true(prof_output_exact("Buddy1 (mobile) is online"));
 
     stbbr_send(
-        "<presence to=\"stabber@localhost\" from=\"buddy1@localhost/laptop\">"
+        "<presence to='stabber@localhost' from='buddy1@localhost/laptop'>"
             "<priority>8</priority>"
             "<show>away</show>"
         "</presence>"
@@ -178,7 +178,7 @@ new_session_when_message_received_from_different_fulljid(void **state)
     assert_true(prof_output_exact("Buddy1 (laptop) is away"));
 
     stbbr_send(
-        "<message id=\"message1\" to=\"stabber@localhost\" from=\"buddy1@localhost/mobile\" type=\"chat\">"
+        "<message id='message1' to='stabber@localhost' from='buddy1@localhost/mobile' type='chat'>"
             "<body>From first resource</body>"
         "</message>"
     );
@@ -186,13 +186,13 @@ new_session_when_message_received_from_different_fulljid(void **state)
 
     prof_input("/msg buddy1@localhost Outgoing 1");
     assert_true(stbbr_received(
-        "<message id=\"*\" to=\"buddy1@localhost/mobile\" type=\"chat\">"
+        "<message id='*' to='buddy1@localhost/mobile' type='chat'>"
             "<body>Outgoing 1</body>"
         "</message>"
     ));
 
     stbbr_send(
-        "<message id=\"message1\" to=\"stabber@localhost\" from=\"buddy1@localhost/laptop\" type=\"chat\">"
+        "<message id='message1' to='stabber@localhost' from='buddy1@localhost/laptop' type='chat'>"
             "<body>From second resource</body>"
         "</message>"
     );
@@ -200,7 +200,7 @@ new_session_when_message_received_from_different_fulljid(void **state)
 
     prof_input("/msg buddy1@localhost Outgoing 2");
     assert_true(stbbr_received(
-        "<message id=\"*\" to=\"buddy1@localhost/laptop\" type=\"chat\">"
+        "<message id='*' to='buddy1@localhost/laptop' type='chat'>"
             "<body>Outgoing 2</body>"
         "</message>"
     ));