Fake tests rewritten to assert real behavior: - audio_smoke: conversion tests now actually Convert() samples and verify output; waveform length/summary assertions tightened to exact values - plugin_format_conversion: RowBytes/U8ToU16/LoadImageFile now call real production code (VideoParams::GetBytesPerPixel, sws scaler, OIIO decode of tests/img.png with known pixel values) - core_color: HSV round trip now verifies fromHsv(toHsv(c)) == c instead of comparing toHsv against its own accessors - core_bezier/node_inputimmediate: expected values replaced with independently derived constants instead of re-running the code under test - common_commandlineparser/common_debug/common_jobtime: capture stdout/stderr/qDebug and assert actual output content - proxy_manager: ProxyFinished test now drives a real proxy job instead of emitting the signal itself; proxy_dialog/panel/proxy/preferences/timeruler tests assert real widget state - viewer_smoke/preview_autocacher/render_misc: zero-assertion tests given observable-state assertions or removed where nothing is observable Duplicates removed: - plugin_smoke_test.cpp: 18 tests duplicated from plugin_paraminstance / plugin_support_* / plugin_renderer_readback (751 -> 180 lines) - module_smoke HumanStrings tests covered precisely by ui_humanstrings_test - render_misc duplicate kDefaultInterpolation constant check Removed by policy (skip allowed, never disabled): - all DISABLED_ prefixes: re-enabled as real offscreen tests or deleted - ffmpeg_decoder_hw: hardcoded personal path replaced with OAK_TEST_HW_DECODE_FILE env var, GTEST_SKIP when unset Also: - config_test: restore Config defaults after run (cross-test pollution) - render_worker_footage: drop /tmp debug-output scaffolding - previewaudiodevice construction test asserts the real bugfix
77 lines
2.1 KiB
C++
77 lines
2.1 KiB
C++
#include <gtest/gtest.h>
|
|
|
|
#include <QCoreApplication>
|
|
#include <QDir>
|
|
|
|
#include "codec/decoder.h"
|
|
#include "codec/ffmpeg/ffmpegdecoder.h"
|
|
#include "node/project/footage/footage.h"
|
|
#include "node/output/track/track.h"
|
|
|
|
using namespace olive;
|
|
|
|
TEST(FFmpegDecoderHW, H264_422_10bit_CPUFrame_IsNotBlack)
|
|
{
|
|
const QString path = qEnvironmentVariable("OAK_TEST_HW_DECODE_FILE");
|
|
|
|
if (path.isEmpty()) {
|
|
GTEST_SKIP() << "Set OAK_TEST_HW_DECODE_FILE to a 10-bit 4:2:2 H.264 "
|
|
"sample file to run this test";
|
|
}
|
|
|
|
if (!QFileInfo::exists(path)) {
|
|
GTEST_SKIP() << "Test footage not available: " << path.toStdString();
|
|
}
|
|
|
|
DecoderPtr decoder = Decoder::CreateFromID(QStringLiteral("ffmpeg"));
|
|
ASSERT_TRUE(decoder);
|
|
|
|
Footage footage(path);
|
|
ASSERT_TRUE(footage.IsValid());
|
|
|
|
Decoder::CodecStream stream(path, footage.GetStreamIndex(Track::kVideo, 0),
|
|
nullptr);
|
|
ASSERT_TRUE(decoder->Open(stream));
|
|
|
|
Decoder::RetrieveVideoParams params;
|
|
params.time = rational(0);
|
|
params.maximum_format = PixelFormat::U16;
|
|
FramePtr frame = decoder->RetrieveVideoFrame(params);
|
|
ASSERT_TRUE(frame);
|
|
ASSERT_TRUE(frame->is_allocated());
|
|
|
|
const int width = frame->width();
|
|
const int height = frame->height();
|
|
ASSERT_GT(width, 0);
|
|
ASSERT_GT(height, 0);
|
|
|
|
double avg = 0.0;
|
|
int samples = 0;
|
|
const int bpc = VideoParams::GetBytesPerChannel(frame->format());
|
|
const int stride = frame->linesize_bytes();
|
|
for (int y = 0; y < height && y < 1080; y += 120) {
|
|
for (int x = 0; x < width && x < 1920; x += 240) {
|
|
const uint8_t *p = reinterpret_cast<const uint8_t *>(
|
|
frame->const_data() + y * stride + x * 4 * bpc);
|
|
if (bpc == 1) {
|
|
for (int c = 0; c < 3; ++c) {
|
|
avg += p[c] / 255.0;
|
|
}
|
|
} else {
|
|
const uint16_t *p16 = reinterpret_cast<const uint16_t *>(p);
|
|
for (int c = 0; c < 3; ++c) {
|
|
avg += p16[c] / 65535.0;
|
|
}
|
|
}
|
|
samples += 3;
|
|
}
|
|
}
|
|
|
|
const double brightness = samples ? avg / samples : 0.0;
|
|
std::cerr << "Frame size: " << width << "x" << height
|
|
<< " format: " << static_cast<int>(frame->format())
|
|
<< " brightness: " << brightness << std::endl;
|
|
|
|
EXPECT_GT(brightness, 0.01);
|
|
}
|