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
124 lines
3.1 KiB
C++
124 lines
3.1 KiB
C++
#include <gtest/gtest.h>
|
|
|
|
#include "olive/core/util/timecodefunctions.h"
|
|
|
|
using namespace olive::core;
|
|
|
|
TEST(CoreTimecode, TimeToTimecodeSeconds)
|
|
{
|
|
rational time(5, 1);
|
|
rational tb(1, 25);
|
|
std::string tc =
|
|
Timecode::time_to_timecode(time, tb, Timecode::kTimecodeSeconds);
|
|
EXPECT_EQ(tc, "00:00:05.000");
|
|
}
|
|
|
|
TEST(CoreTimecode, TimeToTimecodeNonDropFrame)
|
|
{
|
|
rational time(2, 1);
|
|
rational tb(1, 25);
|
|
std::string tc =
|
|
Timecode::time_to_timecode(time, tb, Timecode::kTimecodeNonDropFrame);
|
|
EXPECT_EQ(tc, "00:00:02:00");
|
|
}
|
|
|
|
TEST(CoreTimecode, TimeToTimecodePlusSign)
|
|
{
|
|
rational time(1, 1);
|
|
rational tb(1, 25);
|
|
std::string tc =
|
|
Timecode::time_to_timecode(time, tb, Timecode::kTimecodeSeconds, true);
|
|
EXPECT_EQ(tc.substr(0, 1), "+");
|
|
}
|
|
|
|
TEST(CoreTimecode, TimeToTimecodeInvalidTimebase)
|
|
{
|
|
rational time(1, 1);
|
|
EXPECT_EQ(Timecode::time_to_timecode(time, rational(), Timecode::kFrames),
|
|
"INVALID TIMEBASE");
|
|
}
|
|
|
|
TEST(CoreTimecode, TimecodeToTimeSeconds)
|
|
{
|
|
rational tb(1, 25);
|
|
bool ok = false;
|
|
rational t = Timecode::timecode_to_time("00:00:05.500", tb,
|
|
Timecode::kTimecodeSeconds, &ok);
|
|
EXPECT_TRUE(ok);
|
|
EXPECT_EQ(t, rational(11, 2));
|
|
}
|
|
|
|
TEST(CoreTimecode, TimecodeToTimeNonDropFrame)
|
|
{
|
|
rational tb(1, 25);
|
|
bool ok = false;
|
|
rational t = Timecode::timecode_to_time(
|
|
"00:00:02:03", tb, Timecode::kTimecodeNonDropFrame, &ok);
|
|
EXPECT_TRUE(ok);
|
|
EXPECT_EQ(t, rational(53, 25));
|
|
}
|
|
|
|
TEST(CoreTimecode, TimecodeToTimeInvalid)
|
|
{
|
|
rational tb(1, 25);
|
|
bool ok = true;
|
|
Timecode::timecode_to_time("not a timecode", tb, Timecode::kTimecodeSeconds,
|
|
&ok);
|
|
EXPECT_FALSE(ok);
|
|
}
|
|
|
|
TEST(CoreTimecode, TimeToString)
|
|
{
|
|
EXPECT_EQ(Timecode::time_to_string(3661000), "01:01:01");
|
|
}
|
|
|
|
TEST(CoreTimecode, SnapTimeToTimebase)
|
|
{
|
|
rational tb(1, 25);
|
|
rational snapped = Timecode::snap_time_to_timebase(rational(1, 10), tb);
|
|
// 0.1s @ 25fps rounds to frame 3 (0.12s)
|
|
EXPECT_EQ(snapped, rational(3, 25));
|
|
}
|
|
|
|
TEST(CoreTimecode, TimeToTimestamp)
|
|
{
|
|
rational tb(1, 25);
|
|
EXPECT_EQ(Timecode::time_to_timestamp(rational(2, 1), tb), 50);
|
|
|
|
// 0.08s @ 25fps lands exactly on frame 2, so the rounding mode
|
|
// must not matter
|
|
EXPECT_EQ(Timecode::time_to_timestamp(0.08, tb, Timecode::kFloor), 2);
|
|
EXPECT_EQ(Timecode::time_to_timestamp(0.08, tb, Timecode::kCeil), 2);
|
|
|
|
// 0.1s @ 25fps is 2.5 frames: floor and ceil must differ
|
|
EXPECT_EQ(Timecode::time_to_timestamp(0.1, tb, Timecode::kFloor), 2);
|
|
EXPECT_EQ(Timecode::time_to_timestamp(0.1, tb, Timecode::kCeil), 3);
|
|
}
|
|
|
|
TEST(CoreTimecode, TimestampToTime)
|
|
{
|
|
rational tb(1, 25);
|
|
EXPECT_EQ(Timecode::timestamp_to_time(50, tb), rational(2, 1));
|
|
}
|
|
|
|
TEST(CoreTimecode, RescaleTimestamp)
|
|
{
|
|
rational src(1, 25);
|
|
rational dst(1, 30);
|
|
EXPECT_EQ(Timecode::rescale_timestamp(50, src, dst), 60);
|
|
EXPECT_EQ(Timecode::rescale_timestamp(50, src, src), 50);
|
|
}
|
|
|
|
TEST(CoreTimecode, RescaleTimestampCeil)
|
|
{
|
|
rational src(1, 25);
|
|
rational dst(1, 30);
|
|
EXPECT_EQ(Timecode::rescale_timestamp_ceil(1, src, dst), 2);
|
|
}
|
|
|
|
TEST(CoreTimecode, TimebaseIsDropFrame)
|
|
{
|
|
EXPECT_FALSE(Timecode::timebase_is_drop_frame(rational(1, 25)));
|
|
EXPECT_TRUE(Timecode::timebase_is_drop_frame(rational(1001, 30000)));
|
|
}
|