gst-plugins-rs/text/wrap/tests/textwrap.rs
Mathieu Duponchelle ee6ab26d2a textwrap: fix text accumulating for longer than accumulate-time
By draining before *and* after the word wrapping loop.

We don't do that during the loop in order not to break up sentences
unnecessarily.

Also adds tests

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1930>
2024-11-29 22:09:37 +00:00

225 lines
5.9 KiB
Rust

// Copyright (C) 2020 Mathieu Duponchelle <mathieu@centricular.com>
//
// This Source Code Form is subject to the terms of the Mozilla Public License, v2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at
// <https://mozilla.org/MPL/2.0/>.
//
// SPDX-License-Identifier: MPL-2.0
use gst::prelude::*;
fn init() {
use std::sync::Once;
static INIT: Once = Once::new();
INIT.call_once(|| {
gst::init().unwrap();
gsttextwrap::plugin_register_static().expect("textwrap test");
});
}
#[test]
fn test_columns() {
init();
let input = b"Split this text up";
let expected_output = "Split\nthis\ntext\nup";
let mut h = gst_check::Harness::new("textwrap");
{
let wrap = h.element().expect("Could not create textwrap");
wrap.set_property("columns", 5u32);
}
h.set_src_caps_str("text/x-raw, format=utf8");
let buf = {
let mut buf = gst::Buffer::from_mut_slice(Vec::from(&input[..]));
let buf_ref = buf.get_mut().unwrap();
buf_ref.set_pts(gst::ClockTime::ZERO);
buf_ref.set_duration(2.seconds());
buf
};
assert_eq!(h.push(buf), Ok(gst::FlowSuccess::Ok));
let buf = h.pull().expect("Couldn't pull buffer");
assert_eq!(buf.pts(), Some(gst::ClockTime::ZERO));
assert_eq!(buf.duration(), Some(2.seconds()));
let map = buf.map_readable().expect("Couldn't map buffer readable");
assert_eq!(
std::str::from_utf8(map.as_ref()),
std::str::from_utf8(expected_output.as_ref())
);
}
#[test]
fn test_lines() {
init();
let input = b"Split this text up";
let mut h = gst_check::Harness::new("textwrap");
{
let wrap = h.element().expect("Could not create textwrap");
wrap.set_property("columns", 5u32);
wrap.set_property("lines", 2u32);
}
h.set_src_caps_str("text/x-raw, format=utf8");
let buf = {
let mut buf = gst::Buffer::from_mut_slice(Vec::from(&input[..]));
let buf_ref = buf.get_mut().unwrap();
buf_ref.set_pts(gst::ClockTime::ZERO);
buf_ref.set_duration(2.seconds());
buf
};
assert_eq!(h.push(buf), Ok(gst::FlowSuccess::Ok));
let buf = h.pull().expect("Couldn't pull buffer");
assert_eq!(buf.pts(), Some(gst::ClockTime::ZERO));
assert_eq!(buf.duration(), Some(gst::ClockTime::SECOND));
let expected_output = "Split\nthis";
let map = buf.map_readable().expect("Couldn't map buffer readable");
assert_eq!(
std::str::from_utf8(map.as_ref()),
std::str::from_utf8(expected_output.as_ref())
);
let buf = h.pull().expect("Couldn't pull buffer");
assert_eq!(buf.pts(), Some(gst::ClockTime::SECOND));
assert_eq!(buf.duration(), Some(gst::ClockTime::SECOND));
let expected_output = "text\nup";
let map = buf.map_readable().expect("Couldn't map buffer readable");
assert_eq!(
std::str::from_utf8(map.as_ref()),
std::str::from_utf8(expected_output.as_ref())
);
}
#[test]
fn test_accumulate_time_gaps() {
init();
let input = b"First buffer content";
let mut h = gst_check::Harness::new("textwrap");
{
let wrap = h.element().expect("Could not create textwrap");
wrap.set_property("accumulate-time", 2_000_000_000u64);
wrap.set_property("columns", u32::MAX);
}
h.set_src_caps_str("text/x-raw, format=utf8");
let buf = {
let mut buf = gst::Buffer::from_mut_slice(Vec::from(&input[..]));
let buf_ref = buf.get_mut().unwrap();
buf_ref.set_pts(gst::ClockTime::ZERO);
buf_ref.set_duration(1.seconds());
buf
};
assert_eq!(h.push(buf), Ok(gst::FlowSuccess::Ok));
assert_eq!(h.buffers_in_queue(), 0);
// A long-enough gap should cause the first buffer to come out
let gap = gst::event::Gap::builder(1.seconds())
.duration(1_000.mseconds())
.build();
assert!(h.push_event(gap));
assert_eq!(h.buffers_in_queue(), 1);
let buf = h.pull().expect("Couldn't pull buffer");
assert_eq!(buf.pts(), Some(gst::ClockTime::ZERO));
assert_eq!(buf.duration(), Some(2.seconds()));
let map = buf.map_readable().expect("Couldn't map buffer readable");
let expected_output = b"First buffer content";
assert_eq!(
std::str::from_utf8(map.as_ref()),
std::str::from_utf8(expected_output.as_ref())
);
}
#[test]
fn test_accumulate_time_long_second_buffer() {
init();
let input = b"First buffer content";
let mut h = gst_check::Harness::new("textwrap");
{
let wrap = h.element().expect("Could not create textwrap");
wrap.set_property("accumulate-time", 2_000_000_000u64);
wrap.set_property("columns", u32::MAX);
}
h.set_src_caps_str("text/x-raw, format=utf8");
let buf = {
let mut buf = gst::Buffer::from_mut_slice(Vec::from(&input[..]));
let buf_ref = buf.get_mut().unwrap();
buf_ref.set_pts(gst::ClockTime::ZERO);
buf_ref.set_duration(1.seconds());
buf
};
assert_eq!(h.push(buf), Ok(gst::FlowSuccess::Ok));
assert_eq!(h.buffers_in_queue(), 0);
let input = b"Second buffer content";
let buf = {
let mut buf = gst::Buffer::from_mut_slice(Vec::from(&input[..]));
let buf_ref = buf.get_mut().unwrap();
buf_ref.set_pts(1.seconds());
buf_ref.set_duration(2.seconds());
buf
};
assert_eq!(h.push(buf), Ok(gst::FlowSuccess::Ok));
assert_eq!(h.buffers_in_queue(), 1);
let buf = h.pull().expect("Couldn't pull buffer");
// The contents of the second buffer should not be broken up
assert_eq!(buf.pts(), Some(gst::ClockTime::ZERO));
assert_eq!(buf.duration(), Some(3.seconds()));
let map = buf.map_readable().expect("Couldn't map buffer readable");
let expected_output = b"First buffer content Second buffer content";
assert_eq!(
std::str::from_utf8(map.as_ref()),
std::str::from_utf8(expected_output.as_ref())
);
}