43 lines
1019 B
C++
43 lines
1019 B
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 "peer-msgs.h"
|
|
#include "utils.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
TEST(PeerMsgs, placeholder)
|
|
{
|
|
#if 0
|
|
|
|
uint8_t infohash[SHA_DIGEST_LENGTH];
|
|
struct tr_address addr;
|
|
tr_piece_index_t pieceCount = 1313;
|
|
size_t numwant;
|
|
size_t numgot;
|
|
tr_piece_index_t pieces[] = { 1059, 431, 808, 1217, 287, 376, 1188, 353, 508 };
|
|
tr_piece_index_t buf[16];
|
|
|
|
memset(infohash, 0xaa, SHA_DIGEST_LENGTH);
|
|
|
|
tr_address_from_string(&addr, "80.4.4.200");
|
|
|
|
numwant = 7;
|
|
numgot = tr_generateAllowedSet(buf, numwant, pieceCount, infohash, &addr);
|
|
check_uint(numgot, ==, numwant);
|
|
check_mem(buf, ==, pieces, numgot);
|
|
|
|
numwant = 9;
|
|
numgot = tr_generateAllowedSet(buf, numwant, pieceCount, infohash, &addr);
|
|
check_uint(numgot, ==, numwant);
|
|
check_mem(buf, ==, pieces, numgot);
|
|
|
|
#endif
|
|
}
|