charls/unittest/run_mode_context_test.cpp
Victor Derks 5071134af7
Prevent endless loop during decoding for invalid JPEG-LS input data (#334)
Fuzzing testing of the C# implementation found a scenario that would cause an endless loop during decoding. This defect was also present in the C++ implementation.
This condition was tested with an ASSERT. Using an ASSERT is fine when encoding, but an explicit check is needed when decoding as the input data is in that case untrusted.
2024-09-16 19:42:40 +02:00

28 lines
590 B
C++

// Copyright (c) Team CharLS.
// SPDX-License-Identifier: BSD-3-Clause
#include "pch.hpp"
#include "../src/run_mode_context.hpp"
using Microsoft::VisualStudio::CppUnitTestFramework::Assert;
namespace charls::test {
TEST_CLASS(run_mode_context_test)
{
public:
TEST_METHOD(update_variable) // NOLINT
{
run_mode_context context{0, 4};
context.update_variables(3, 27, 0);
Assert::AreEqual(3, context.compute_golomb_coding_parameter());
Assert::AreEqual(3, context.compute_golomb_coding_parameter_checked());
}
};
} // namespace charls::test