Files
scylladb/test/boost/observable_test.cc
Avi Kivity f3eade2f62 treewide: relicense to ScyllaDB-Source-Available-1.0
Drop the AGPL license in favor of a source-available license.
See the blog post [1] for details.

[1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
2024-12-18 17:45:13 +02:00

75 lines
2.1 KiB
C++

/*
* Copyright (C) 2018-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
*/
#define BOOST_TEST_MODULE observable_test
#include <boost/test/unit_test.hpp>
#include <variant>
#include <numeric>
#include "utils/observable.hh"
using namespace utils;
BOOST_AUTO_TEST_CASE(test_basic_functionality) {
observable<int> pub;
int v1 = 0, v2 = 0;
observer<int> sub1 = pub.observe([&] (int x) { v1 = x; });
observer<int> sub2 = pub.observe([&] (int x) { v2 = x; });
pub(7);
BOOST_REQUIRE_EQUAL(v1, 7);
BOOST_REQUIRE_EQUAL(v2, 7);
sub1.disconnect();
pub(3);
BOOST_REQUIRE_EQUAL(v1, 7);
BOOST_REQUIRE_EQUAL(v2, 3);
sub1 = std::move(sub2);
pub(4);
BOOST_REQUIRE_EQUAL(v1, 7);
BOOST_REQUIRE_EQUAL(v2, 4);
pub = observable<int>();
pub(5);
BOOST_REQUIRE_EQUAL(v1, 7);
BOOST_REQUIRE_EQUAL(v2, 4);
}
BOOST_AUTO_TEST_CASE(test_exceptions) {
observable<> pub;
bool saw1 = false;
observer<> sub1 = pub.observe([&] { saw1 = true; });
observer<> sub2 = pub.observe([&] { throw 2; });
bool saw3 = false;
observer<> sub3 = pub.observe([&] { saw3 = true; });
observer<> sub4 = pub.observe([&] { throw 4; });
bool caught = false;
try {
pub();
} catch (int v) {
BOOST_REQUIRE(saw1);
BOOST_REQUIRE(saw3);
BOOST_REQUIRE(v == 2 || v == 4);
caught = true;
}
BOOST_REQUIRE(caught);
}
BOOST_AUTO_TEST_CASE(test_disconnect_fully_disconnects) {
std::variant<observable<>, std::array<char, 100>> pub = observable<>();
observer<> sub = std::get<observable<>>(pub).observe([] {});
sub.disconnect();
auto x = std::array<char, 100>{};
std::iota(x.begin(), x.end(), 'X');
// Once upon a time, disconnect() still remembered the observable's address.
// Simulate a the observable being freed and its memory reused for something
// else by assigning garbage to the variant that holds its data
pub = x;
// Would have accessed the overwritten observable before the bug fix.
sub.disconnect();
}