Files
kdenlive/tests/snaptest.cpp
2023-07-06 13:26:30 +02:00

131 lines
4.6 KiB
C++

/*
SPDX-FileCopyrightText: 2022 Jean-Baptiste Mardelle <jb@kdenlive.org>
SPDX-FileCopyrightText: 2017 Nicolas Carion <french.ebook.lover@gmail.com>
SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#include "test_utils.hpp"
// test specific headers
#include "timeline2/model/snapmodel.hpp"
TEST_CASE("Snap points model test", "[SnapModel]")
{
SnapModel snap;
SECTION("Basic test")
{
// empty
REQUIRE(snap.getClosestPoint(0) == -1);
REQUIRE(snap.getClosestPoint(10) == -1);
snap.addPoint(10);
REQUIRE(snap.getClosestPoint(0) == 10);
REQUIRE(snap.getClosestPoint(10) == 10);
REQUIRE(snap.getClosestPoint(11) == 10);
REQUIRE(snap.getClosestPoint(9) == 10);
REQUIRE(snap.getClosestPoint(999) == 10);
snap.addPoint(10);
REQUIRE(snap.getClosestPoint(0) == 10);
REQUIRE(snap.getClosestPoint(10) == 10);
REQUIRE(snap.getClosestPoint(11) == 10);
REQUIRE(snap.getClosestPoint(9) == 10);
REQUIRE(snap.getClosestPoint(999) == 10);
snap.addPoint(15);
REQUIRE(snap.getClosestPoint(0) == 10);
REQUIRE(snap.getClosestPoint(10) == 10);
REQUIRE(snap.getClosestPoint(11) == 10);
REQUIRE(snap.getClosestPoint(9) == 10);
REQUIRE(snap.getClosestPoint(12) == 10);
REQUIRE(snap.getClosestPoint(13) == 15);
REQUIRE(snap.getClosestPoint(15) == 15);
REQUIRE(snap.getClosestPoint(16) == 15);
REQUIRE(snap.getClosestPoint(999) == 15);
snap.removePoint(10);
REQUIRE(snap.getClosestPoint(0) == 10);
REQUIRE(snap.getClosestPoint(10) == 10);
REQUIRE(snap.getClosestPoint(11) == 10);
REQUIRE(snap.getClosestPoint(9) == 10);
REQUIRE(snap.getClosestPoint(12) == 10);
REQUIRE(snap.getClosestPoint(13) == 15);
REQUIRE(snap.getClosestPoint(15) == 15);
REQUIRE(snap.getClosestPoint(16) == 15);
REQUIRE(snap.getClosestPoint(999) == 15);
snap.removePoint(10);
REQUIRE(snap.getClosestPoint(0) == 15);
REQUIRE(snap.getClosestPoint(10) == 15);
REQUIRE(snap.getClosestPoint(11) == 15);
REQUIRE(snap.getClosestPoint(9) == 15);
REQUIRE(snap.getClosestPoint(12) == 15);
REQUIRE(snap.getClosestPoint(13) == 15);
REQUIRE(snap.getClosestPoint(15) == 15);
REQUIRE(snap.getClosestPoint(16) == 15);
REQUIRE(snap.getClosestPoint(999) == 15);
snap.removePoint(15);
REQUIRE(snap.getClosestPoint(0) == -1);
REQUIRE(snap.getClosestPoint(10) == -1);
REQUIRE(snap.getClosestPoint(11) == -1);
REQUIRE(snap.getClosestPoint(9) == -1);
REQUIRE(snap.getClosestPoint(12) == -1);
REQUIRE(snap.getClosestPoint(13) == -1);
REQUIRE(snap.getClosestPoint(15) == -1);
REQUIRE(snap.getClosestPoint(16) == -1);
REQUIRE(snap.getClosestPoint(999) == -1);
}
SECTION("Snappoint Ignoring")
{
REQUIRE(snap.getClosestPoint(0) == -1);
REQUIRE(snap.getClosestPoint(10) == -1);
snap.addPoint(10);
snap.addPoint(10);
auto state = [&]() {
REQUIRE(snap.getClosestPoint(0) == 10);
REQUIRE(snap.getClosestPoint(10) == 10);
REQUIRE(snap.getClosestPoint(11) == 10);
REQUIRE(snap.getClosestPoint(9) == 10);
REQUIRE(snap.getClosestPoint(999) == 10);
};
state();
snap.ignore({10});
state();
snap.ignore({10});
REQUIRE(snap.getClosestPoint(0) == -1);
REQUIRE(snap.getClosestPoint(10) == -1);
snap.unIgnore();
state();
snap.addPoint(15);
REQUIRE(snap.getClosestPoint(0) == 10);
REQUIRE(snap.getClosestPoint(10) == 10);
REQUIRE(snap.getClosestPoint(11) == 10);
REQUIRE(snap.getClosestPoint(9) == 10);
REQUIRE(snap.getClosestPoint(12) == 10);
REQUIRE(snap.getClosestPoint(13) == 15);
REQUIRE(snap.getClosestPoint(15) == 15);
REQUIRE(snap.getClosestPoint(16) == 15);
REQUIRE(snap.getClosestPoint(999) == 15);
snap.ignore({15});
state();
snap.removePoint(10);
state();
snap.removePoint(10);
REQUIRE(snap.getClosestPoint(0) == -1);
REQUIRE(snap.getClosestPoint(10) == -1);
snap.unIgnore();
REQUIRE(snap.getClosestPoint(0) == 15);
REQUIRE(snap.getClosestPoint(10) == 15);
REQUIRE(snap.getClosestPoint(11) == 15);
REQUIRE(snap.getClosestPoint(9) == 15);
REQUIRE(snap.getClosestPoint(999) == 15);
}
}