53 lines
1.6 KiB
C
53 lines
1.6 KiB
C
/*
|
|
* This file Copyright (C) 2013-2014 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
*/
|
|
|
|
#include "transmission.h"
|
|
#include "clients.h"
|
|
|
|
#include "libtransmission-test.h"
|
|
|
|
#define TEST_CLIENT(A, B) \
|
|
tr_clientForId(buf, sizeof(buf), A); \
|
|
check_str(buf, ==, B);
|
|
|
|
int main(void)
|
|
{
|
|
char buf[128];
|
|
|
|
TEST_CLIENT("-FC1013-", "FileCroc 1.0.1.3");
|
|
TEST_CLIENT("-MR1100-", "Miro 1.1.0.0");
|
|
TEST_CLIENT("-TR0006-", "Transmission 0.6");
|
|
TEST_CLIENT("-TR0072-", "Transmission 0.72");
|
|
TEST_CLIENT("-TR111Z-", "Transmission 1.11+");
|
|
TEST_CLIENT("O1008132", "Osprey 1.0.0");
|
|
TEST_CLIENT("TIX0193-", "Tixati 1.93");
|
|
TEST_CLIENT("-UT341\0-", "\xc2\xb5Torrent 3.4.1");
|
|
TEST_CLIENT("-BT791\0-", "BitTorrent 7.9.1");
|
|
TEST_CLIENT("-BT791B-", "BitTorrent 7.9.1 (Beta)");
|
|
|
|
/* Xfplay 9.9.92 to 9.9.94 uses "-XF9992-" */
|
|
TEST_CLIENT("-XF9992-", "Xfplay 9.9.92");
|
|
|
|
/* Older Xfplay versions have three digit version number */
|
|
TEST_CLIENT("-XF9990-", "Xfplay 9.9.9");
|
|
|
|
/* PicoTorrent */
|
|
TEST_CLIENT("-PI0091-", "PicoTorrent 0.09.1");
|
|
TEST_CLIENT("-PI0120-", "PicoTorrent 0.12.0");
|
|
|
|
/* gobbledygook */
|
|
TEST_CLIENT("-IIO\x10\x2D\x04-", "-IIO%10-%04-");
|
|
TEST_CLIENT("-I\05O\x08\x03\x01-", "-I%05O%08%03%01-");
|
|
|
|
TEST_CLIENT("\x65\x78\x62\x63\x00\x38\x7A\x44\x63\x10\x2D\x6E\x9A\xD6\x72\x3B\x33\x9F\x35\xA9", "BitComet 0.56");
|
|
TEST_CLIENT("\x65\x78\x62\x63\x00\x38\x4C\x4F\x52\x44\x32\x00\x04\x8E\xCE\xD5\x7B\xD7\x10\x28", "BitLord 0.56");
|
|
|
|
/* cleanup */
|
|
return 0;
|
|
}
|