summaryrefslogtreecommitdiff
path: root/testing/toxic
diff options
context:
space:
mode:
Diffstat (limited to 'testing/toxic')
-rw-r--r--testing/toxic/CMakeLists.txt3
-rw-r--r--testing/toxic/chat.c50
-rw-r--r--testing/toxic/main.c7
-rw-r--r--testing/toxic/prompt.c32
-rw-r--r--testing/toxic/windows.h4
5 files changed, 62 insertions, 34 deletions
diff --git a/testing/toxic/CMakeLists.txt b/testing/toxic/CMakeLists.txt
index f30d8e9e..38f02dc6 100644
--- a/testing/toxic/CMakeLists.txt
+++ b/testing/toxic/CMakeLists.txt
@@ -1,6 +1,9 @@
1cmake_minimum_required(VERSION 2.6.0) 1cmake_minimum_required(VERSION 2.6.0)
2project(toxic C) 2project(toxic C)
3 3
4execute_process(COMMAND git rev-list HEAD --count OUTPUT_VARIABLE COMMIT)
5SET(GCC_COVERAGE_COMPILE_FLAGS '-DTOXICVER="0.1.1_r${COMMIT}"')
6add_definitions(${GCC_COVERAGE_COMPILE_FLAGS})
4set(exe_name toxic) 7set(exe_name toxic)
5 8
6add_executable(${exe_name} 9add_executable(${exe_name}
diff --git a/testing/toxic/chat.c b/testing/toxic/chat.c
index 28c5de6c..83765777 100644
--- a/testing/toxic/chat.c
+++ b/testing/toxic/chat.c
@@ -16,7 +16,7 @@
16 16
17typedef struct { 17typedef struct {
18 int friendnum; 18 int friendnum;
19 char line[256]; 19 char line[MAX_STR_SIZE];
20 size_t pos; 20 size_t pos;
21 WINDOW* history; 21 WINDOW* history;
22 WINDOW* linewin; 22 WINDOW* linewin;
@@ -154,15 +154,47 @@ void execute(ToxWindow *self, ChatContext *ctx, char *cmd)
154 } 154 }
155 155
156 else if (!strncmp(cmd, "/status ", strlen("/status "))) { 156 else if (!strncmp(cmd, "/status ", strlen("/status "))) {
157 char *status = strchr(cmd, ' ');
157 char *msg; 158 char *msg;
158 msg = strchr(cmd, ' '); 159 char *status_text;
159 if (msg == NULL) { 160 if (status == NULL) {
160 wprintw(ctx->history, "Invalid syntax.\n"); 161 wprintw(ctx->history, "Invalid syntax.\n");
161 return; 162 return;
162 } 163 }
163 msg++; 164 status++;
164 m_set_statusmessage((uint8_t*) msg, strlen(msg)+1); 165 USERSTATUS status_kind;
165 wprintw(ctx->history, "Status set to: %s\n", msg); 166 if (!strncmp(status, "online", strlen("online"))) {
167 status_kind = USERSTATUS_NONE;
168 status_text = "ONLINE";
169 }
170
171 else if (!strncmp(status, "away", strlen("away"))) {
172 status_kind = USERSTATUS_AWAY;
173 status_text = "AWAY";
174 }
175
176 else if (!strncmp(status, "busy", strlen("busy"))) {
177 status_kind = USERSTATUS_BUSY;
178 status_text = "BUSY";
179 }
180
181 else
182 {
183 wprintw(ctx->history, "Invalid status.\n");
184 return;
185 }
186
187 msg = strchr(status, ' ');
188 if (msg == NULL) {
189 m_set_userstatus(status_kind);
190 wprintw(ctx->history, "Status set to: %s\n", status_text);
191 }
192 else {
193 msg++;
194 m_set_userstatus(status_kind);
195 m_set_statusmessage((uint8_t*) msg, strlen(msg)+1);
196 wprintw(ctx->history, "Status set to: %s, %s\n", status_text, msg);
197 }
166 } 198 }
167 199
168 else if (!strncmp(cmd, "/nick ", strlen("/nick "))) { 200 else if (!strncmp(cmd, "/nick ", strlen("/nick "))) {
@@ -178,9 +210,9 @@ void execute(ToxWindow *self, ChatContext *ctx, char *cmd)
178 } 210 }
179 211
180 else if (!strcmp(cmd, "/myid")) { 212 else if (!strcmp(cmd, "/myid")) {
181 char id[32*2 + 1] = {0}; 213 char id[KEY_SIZE_BYTES*2+1] = {0};
182 int i; 214 int i;
183 for (i = 0; i < 32; i++) { 215 for (i = 0; i < KEY_SIZE_BYTES; i++) {
184 char xx[3]; 216 char xx[3];
185 snprintf(xx, sizeof(xx), "%02x", self_public_key[i] & 0xff); 217 snprintf(xx, sizeof(xx), "%02x", self_public_key[i] & 0xff);
186 strcat(id, xx); 218 strcat(id, xx);
@@ -231,7 +263,7 @@ void print_help(ChatContext *self)
231 wprintw(self->history, "Commands:\n"); 263 wprintw(self->history, "Commands:\n");
232 wattroff(self->history, A_BOLD); 264 wattroff(self->history, A_BOLD);
233 265
234 wprintw(self->history, " /status <message> : Set your status\n"); 266 wprintw(self->history, " /status <type> <message> : Set your status\n");
235 wprintw(self->history, " /nick <nickname> : Set your nickname\n"); 267 wprintw(self->history, " /nick <nickname> : Set your nickname\n");
236 wprintw(self->history, " /myid : Print your ID\n"); 268 wprintw(self->history, " /myid : Print your ID\n");
237 wprintw(self->history, " /clear : Clear the screen\n"); 269 wprintw(self->history, " /clear : Clear the screen\n");
diff --git a/testing/toxic/main.c b/testing/toxic/main.c
index b2310c80..7fa9e964 100644
--- a/testing/toxic/main.c
+++ b/testing/toxic/main.c
@@ -22,7 +22,10 @@ extern int add_req(uint8_t *public_key); // XXX
22 22
23/* Holds status of chat windows */ 23/* Holds status of chat windows */
24char WINDOW_STATUS[MAX_WINDOW_SLOTS]; 24char WINDOW_STATUS[MAX_WINDOW_SLOTS];
25#define TOXICVER "0.1.0" //Will be moved to a -D flag later 25
26#ifndef TOXICVER
27#define TOXICVER "NOVER" //Use the -D flag to set this
28#endif
26 29
27static ToxWindow windows[MAX_WINDOW_SLOTS]; 30static ToxWindow windows[MAX_WINDOW_SLOTS];
28static ToxWindow* prompt; 31static ToxWindow* prompt;
@@ -37,7 +40,7 @@ void on_request(uint8_t *public_key, uint8_t *data, uint16_t length)
37 wprintw(prompt->window, "\nFriend request from:\n"); 40 wprintw(prompt->window, "\nFriend request from:\n");
38 41
39 int i; 42 int i;
40 for (i = 0; i < 32; ++i) { 43 for (i = 0; i < KEY_SIZE_BYTES; ++i) {
41 wprintw(prompt->window, "%02x", public_key[i] & 0xff); 44 wprintw(prompt->window, "%02x", public_key[i] & 0xff);
42 } 45 }
43 46
diff --git a/testing/toxic/prompt.c b/testing/toxic/prompt.c
index 661d881f..eaa8d7bc 100644
--- a/testing/toxic/prompt.c
+++ b/testing/toxic/prompt.c
@@ -12,12 +12,12 @@
12 12
13#include "windows.h" 13#include "windows.h"
14 14
15uint8_t pending_requests[256][CLIENT_ID_SIZE]; // XXX 15uint8_t pending_requests[MAX_STR_SIZE][CLIENT_ID_SIZE]; // XXX
16uint8_t num_requests=0; // XXX 16uint8_t num_requests=0; // XXX
17 17
18extern void on_friendadded(int friendnumber); 18extern void on_friendadded(int friendnumber);
19static void print_usage(ToxWindow *self); 19static void print_usage(ToxWindow *self);
20static char prompt_buf[256] = {0}; 20static char prompt_buf[MAX_STR_SIZE] = {0};
21static int prompt_buf_pos = 0; 21static int prompt_buf_pos = 0;
22 22
23// XXX: 23// XXX:
@@ -43,7 +43,7 @@ unsigned char *hex_string_to_bin(char hex_string[])
43static void execute(ToxWindow *self, char *u_cmd) 43static void execute(ToxWindow *self, char *u_cmd)
44{ 44{
45 int newlines = 0; 45 int newlines = 0;
46 char cmd[256] = {0}; 46 char cmd[MAX_STR_SIZE] = {0};
47 int i; 47 int i;
48 for (i = 0; i < strlen(prompt_buf); ++i) { 48 for (i = 0; i < strlen(prompt_buf); ++i) {
49 if (u_cmd[i] == '\n') 49 if (u_cmd[i] == '\n')
@@ -53,9 +53,9 @@ static void execute(ToxWindow *self, char *u_cmd)
53 } 53 }
54 54
55 int leading_spc = 0; 55 int leading_spc = 0;
56 for (i = 0; i < 256 && isspace(cmd[i]); ++i) 56 for (i = 0; i < MAX_STR_SIZE && isspace(cmd[i]); ++i)
57 leading_spc++; 57 leading_spc++;
58 memmove(cmd, cmd + leading_spc, 256 - leading_spc); 58 memmove(cmd, cmd + leading_spc, MAX_STR_SIZE - leading_spc);
59 59
60 int cmd_end = strlen(cmd); 60 int cmd_end = strlen(cmd);
61 while (cmd_end > 0 && cmd_end--) 61 while (cmd_end > 0 && cmd_end--)
@@ -121,7 +121,7 @@ static void execute(ToxWindow *self, char *u_cmd)
121 } 121 }
122 122
123 else if (!strncmp(cmd, "add ", strlen("add "))) { 123 else if (!strncmp(cmd, "add ", strlen("add "))) {
124 uint8_t id_bin[32]; 124 uint8_t id_bin[KEY_SIZE_BYTES];
125 char xx[3]; 125 char xx[3];
126 uint32_t x; 126 uint32_t x;
127 char *id = strchr(cmd, ' '); 127 char *id = strchr(cmd, ' ');
@@ -136,12 +136,12 @@ static void execute(ToxWindow *self, char *u_cmd)
136 msg++; 136 msg++;
137 } 137 }
138 else msg = ""; 138 else msg = "";
139 if (strlen(id) != 2*32) { 139 if (strlen(id) != 2*KEY_SIZE_BYTES) {
140 wprintw(self->window, "Invalid ID length.\n"); 140 wprintw(self->window, "Invalid ID length.\n");
141 return; 141 return;
142 } 142 }
143 int i; 143 int i;
144 for (i = 0; i < 32; ++i) { 144 for (i = 0; i < KEY_SIZE_BYTES; ++i) {
145 xx[0] = id[2*i]; 145 xx[0] = id[2*i];
146 xx[1] = id[2*i+1]; 146 xx[1] = id[2*i+1];
147 xx[2] = '\0'; 147 xx[2] = '\0';
@@ -228,17 +228,6 @@ static void execute(ToxWindow *self, char *u_cmd)
228 } 228 }
229 } 229 }
230 230
231 else if (!strncmp(cmd, "statusmsg ", strlen("statumsg "))) {
232 char *msg = strchr(cmd, ' ');
233 if (msg == NULL) {
234 wprintw(self->window, "Invalid syntax.\n");
235 return;
236 }
237 msg++;
238 m_set_statusmessage((uint8_t*) msg, strlen(msg)+1);
239 wprintw(self->window, "Status set to: %s\n", msg);
240 }
241
242 else if (!strncmp(cmd, "nick ", strlen("nick "))) { 231 else if (!strncmp(cmd, "nick ", strlen("nick "))) {
243 char *nick = strchr(cmd, ' '); 232 char *nick = strchr(cmd, ' ');
244 if (nick == NULL) { 233 if (nick == NULL) {
@@ -251,9 +240,9 @@ static void execute(ToxWindow *self, char *u_cmd)
251 } 240 }
252 241
253 else if (!strcmp(cmd, "myid")) { 242 else if (!strcmp(cmd, "myid")) {
254 char id[32*2 + 1] = {0}; 243 char id[KEY_SIZE_BYTES*2 + 1] = {0};
255 size_t i; 244 size_t i;
256 for (i = 0; i < 32; ++i) { 245 for (i = 0; i < KEY_SIZE_BYTES; ++i) {
257 char xx[3]; 246 char xx[3];
258 snprintf(xx, sizeof(xx), "%02x", self_public_key[i] & 0xff); 247 snprintf(xx, sizeof(xx), "%02x", self_public_key[i] & 0xff);
259 strcat(id, xx); 248 strcat(id, xx);
@@ -372,7 +361,6 @@ static void print_usage(ToxWindow *self)
372 wprintw(self->window, " connect <ip> <port> <key> : Connect to DHT server\n"); 361 wprintw(self->window, " connect <ip> <port> <key> : Connect to DHT server\n");
373 wprintw(self->window, " add <id> <message> : Add friend\n"); 362 wprintw(self->window, " add <id> <message> : Add friend\n");
374 wprintw(self->window, " status <type> <message> : Set your status\n"); 363 wprintw(self->window, " status <type> <message> : Set your status\n");
375 wprintw(self->window, " statusmsg <message> : Set your status\n");
376 wprintw(self->window, " nick <nickname> : Set your nickname\n"); 364 wprintw(self->window, " nick <nickname> : Set your nickname\n");
377 wprintw(self->window, " accept <number> : Accept friend request\n"); 365 wprintw(self->window, " accept <number> : Accept friend request\n");
378 wprintw(self->window, " myid : Print your ID\n"); 366 wprintw(self->window, " myid : Print your ID\n");
diff --git a/testing/toxic/windows.h b/testing/toxic/windows.h
index cb45614d..287e534a 100644
--- a/testing/toxic/windows.h
+++ b/testing/toxic/windows.h
@@ -5,7 +5,9 @@
5#include <stdbool.h> 5#include <stdbool.h>
6#define TOXWINDOWS_MAX_NUM 32 6#define TOXWINDOWS_MAX_NUM 32
7#define MAX_FRIENDS_NUM 100 7#define MAX_FRIENDS_NUM 100
8 8#define MAX_STR_SIZE 256
9#define KEY_SIZE_BYTES 32
10
9/* number of permanent default windows */ 11/* number of permanent default windows */
10#define N_DEFAULT_WINS 2 12#define N_DEFAULT_WINS 2
11 13