mirror of
				https://github.com/XRPLF/clio.git
				synced 2025-11-04 03:45:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//------------------------------------------------------------------------------
 | 
						|
/*
 | 
						|
    This file is part of clio: https://github.com/XRPLF/clio
 | 
						|
    Copyright (c) 2023, the clio developers.
 | 
						|
 | 
						|
    Permission to use, copy, modify, and distribute this software for any
 | 
						|
    purpose with or without fee is hereby granted, provided that the above
 | 
						|
    copyright notice and this permission notice appear in all copies.
 | 
						|
 | 
						|
    THE  SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 | 
						|
    WITH  REGARD  TO  THIS  SOFTWARE  INCLUDING  ALL  IMPLIED  WARRANTIES  OF
 | 
						|
    MERCHANTABILITY  AND  FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 | 
						|
    ANY  SPECIAL,  DIRECT,  INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 | 
						|
    WHATSOEVER  RESULTING  FROM  LOSS  OF USE, DATA OR PROFITS, WHETHER IN AN
 | 
						|
    ACTION  OF  CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 | 
						|
    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
						|
*/
 | 
						|
//==============================================================================
 | 
						|
 | 
						|
#include "etl/impl/ExtractionDataPipe.hpp"
 | 
						|
#include "util/LoggerFixtures.hpp"
 | 
						|
 | 
						|
#include <gtest/gtest.h>
 | 
						|
 | 
						|
#include <atomic>
 | 
						|
#include <chrono>
 | 
						|
#include <cstddef>
 | 
						|
#include <cstdint>
 | 
						|
#include <thread>
 | 
						|
 | 
						|
namespace {
 | 
						|
 | 
						|
constexpr auto kSTRIDE = 4;
 | 
						|
constexpr auto kSTART_SEQ = 1234;
 | 
						|
 | 
						|
}  // namespace
 | 
						|
 | 
						|
class ETLExtractionDataPipeTest : public ::testing::Test {
 | 
						|
protected:
 | 
						|
    etl::impl::ExtractionDataPipe<uint32_t> pipe_{kSTRIDE, kSTART_SEQ};
 | 
						|
};
 | 
						|
 | 
						|
TEST_F(ETLExtractionDataPipeTest, StrideMatchesInput)
 | 
						|
{
 | 
						|
    EXPECT_EQ(pipe_.getStride(), kSTRIDE);
 | 
						|
}
 | 
						|
 | 
						|
TEST_F(ETLExtractionDataPipeTest, PushedDataCanBeRetrievedAndMatchesOriginal)
 | 
						|
{
 | 
						|
    for (std::size_t i = 0; i < 8; ++i)
 | 
						|
        pipe_.push(kSTART_SEQ + i, kSTART_SEQ + i);
 | 
						|
 | 
						|
    for (std::size_t i = 0; i < 8; ++i) {
 | 
						|
        auto const data = pipe_.popNext(kSTART_SEQ + i);
 | 
						|
        EXPECT_EQ(data.value(), kSTART_SEQ + i);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
TEST_F(ETLExtractionDataPipeTest, CallingFinishPushesAnEmptyOptional)
 | 
						|
{
 | 
						|
    for (std::size_t i = 0; i < 4; ++i)
 | 
						|
        pipe_.finish(kSTART_SEQ + i);
 | 
						|
 | 
						|
    for (std::size_t i = 0; i < 4; ++i) {
 | 
						|
        auto const data = pipe_.popNext(kSTART_SEQ + i);
 | 
						|
        EXPECT_FALSE(data.has_value());
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
TEST_F(ETLExtractionDataPipeTest, CallingCleanupUnblocksOtherThread)
 | 
						|
{
 | 
						|
    std::atomic_bool unblocked = false;
 | 
						|
    auto bgThread = std::thread([this, &unblocked] {
 | 
						|
        for (std::size_t i = 0; i < 252; ++i)
 | 
						|
            pipe_.push(kSTART_SEQ, 1234);  // 251st element will block this thread here
 | 
						|
        unblocked = true;
 | 
						|
    });
 | 
						|
 | 
						|
    // emulate waiting for above thread to push and get blocked
 | 
						|
    std::this_thread::sleep_for(std::chrono::milliseconds{100});
 | 
						|
 | 
						|
    EXPECT_FALSE(unblocked);
 | 
						|
    pipe_.cleanup();
 | 
						|
 | 
						|
    bgThread.join();
 | 
						|
    EXPECT_TRUE(unblocked);
 | 
						|
}
 |