forked from Green-Sky/tomato
Green Sky
a3126d581b
82460b212 feat: add ngc events 24b54722a fix: Ensure we have allocators available for the error paths. 48dbcfebc cleanup: Remove redundant `-DSODIUM_EXPORT` from definitions. 0cef46ee9 cleanup: Fix a few more clang-tidy warnings. 0c5b918e9 cleanup: Fix a few more clang-tidy warnings. 4d3c97f49 cleanup: Enforce stricter identifier naming using clang-tidy. a549807df refactor: Add `mem` module to allow tests to override allocators. 6133fb153 chore: Add devcontainer setup for codespaces. 620e07ecd chore: Set a timeout for tests started using Conan c0ec33b16 chore: Migrate Windows CI from Appveyor to Azure DevOps 8ed47f3ef fix incorrect documentation a1e245841 docs: Fix doxygen config and remove some redundant comments. b0f633185 chore: Fix the Android CI job 7469a529b fix: Add missing `#include <array>`. 2b1a6b0d2 add missing ngc constants getter declarations and definitions 2e02d5637 chore: Add missing module dependencies. REVERT: 67badf694 feat: add ngc events git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 82460b2124216af1ac9d63060de310a682a2fd15
70 lines
2.1 KiB
C++
70 lines
2.1 KiB
C++
#include "tox_events.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <array>
|
|
#include <vector>
|
|
|
|
#include "crypto_core.h"
|
|
#include "tox_private.h"
|
|
|
|
namespace {
|
|
|
|
TEST(ToxEvents, UnpackRandomDataDoesntCrash)
|
|
{
|
|
const Tox_System sys = tox_default_system();
|
|
ASSERT_NE(sys.rng, nullptr);
|
|
std::array<uint8_t, 128> data;
|
|
random_bytes(sys.rng, data.data(), data.size());
|
|
tox_events_free(tox_events_load(&sys, data.data(), data.size()));
|
|
}
|
|
|
|
TEST(ToxEvents, UnpackEmptyDataFails)
|
|
{
|
|
const Tox_System sys = tox_default_system();
|
|
std::array<uint8_t, 1> data;
|
|
Tox_Events *events = tox_events_load(&sys, data.end(), 0);
|
|
EXPECT_EQ(events, nullptr);
|
|
}
|
|
|
|
TEST(ToxEvents, UnpackEmptyArrayCreatesEmptyEvents)
|
|
{
|
|
const Tox_System sys = tox_default_system();
|
|
std::array<uint8_t, 1> data{0x90}; // empty msgpack array
|
|
Tox_Events *events = tox_events_load(&sys, data.data(), data.size());
|
|
ASSERT_NE(events, nullptr);
|
|
EXPECT_EQ(tox_events_get_conference_connected_size(events), 0);
|
|
tox_events_free(events);
|
|
}
|
|
|
|
TEST(ToxEvents, NullEventsPacksToEmptyArray)
|
|
{
|
|
std::array<uint8_t, 1> bytes;
|
|
ASSERT_EQ(tox_events_bytes_size(nullptr), bytes.size());
|
|
tox_events_get_bytes(nullptr, bytes.data());
|
|
EXPECT_EQ(bytes, (std::array<uint8_t, 1>{0x90}));
|
|
}
|
|
|
|
TEST(ToxEvents, PackedEventsCanBeUnpacked)
|
|
{
|
|
const Tox_System sys = tox_default_system();
|
|
// [[0, 1]] == Tox_Self_Connection_Status { .connection_status = TOX_CONNECTION_TCP }
|
|
std::array<uint8_t, 6> packed{0x91, 0x92, 0xcc, 0x00, 0xcc, 0x01};
|
|
Tox_Events *events = tox_events_load(&sys, packed.data(), packed.size());
|
|
ASSERT_NE(events, nullptr);
|
|
std::array<uint8_t, 4> bytes;
|
|
ASSERT_EQ(tox_events_bytes_size(events), bytes.size());
|
|
tox_events_get_bytes(events, bytes.data());
|
|
EXPECT_EQ(bytes, (std::array<uint8_t, 4>{0x91, 0x92, 0x00, 0x01}));
|
|
tox_events_free(events);
|
|
}
|
|
|
|
TEST(ToxEvents, DealsWithHugeMsgpackArrays)
|
|
{
|
|
const Tox_System sys = tox_default_system();
|
|
std::vector<uint8_t> data{0xdd, 0xff, 0xff, 0xff, 0xff};
|
|
EXPECT_EQ(tox_events_load(&sys, data.data(), data.size()), nullptr);
|
|
}
|
|
|
|
} // namespace
|