tests: moved some tests to the core lib
This commit is contained in:
@@ -15,5 +15,3 @@
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
olive_add_test(General common-tests common-tests.cpp)
|
||||
olive_add_test(General rational-tests rational-tests.cpp)
|
||||
olive_add_test(General timerange-tests timerange-tests.cpp)
|
||||
|
||||
@@ -1,64 +0,0 @@
|
||||
/***
|
||||
|
||||
Olive - Non-Linear Video Editor
|
||||
Copyright (C) 2022 Olive Team
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
***/
|
||||
|
||||
#include "testutil.h"
|
||||
|
||||
#include "common/rational.h"
|
||||
|
||||
namespace olive {
|
||||
|
||||
OLIVE_ADD_TEST(RationalDefaults)
|
||||
{
|
||||
// By default, rationals are valid 0/1
|
||||
rational basic_constructor;
|
||||
OLIVE_ASSERT(basic_constructor.isNull());
|
||||
OLIVE_ASSERT(!basic_constructor.isNaN());
|
||||
|
||||
OLIVE_TEST_END;
|
||||
}
|
||||
|
||||
OLIVE_ADD_TEST(RationalNaN)
|
||||
{
|
||||
// Create a NaN with a 0 denominator
|
||||
rational nan = rational(0, 0);
|
||||
OLIVE_ASSERT(nan.isNaN());
|
||||
OLIVE_ASSERT(nan.isNull());
|
||||
|
||||
// Create a non-NaN with a zero numerator
|
||||
rational zero_nonnan(0, 999);
|
||||
OLIVE_ASSERT(zero_nonnan.isNull());
|
||||
OLIVE_ASSERT(!zero_nonnan.isNaN());
|
||||
|
||||
// Create a non-NaN with a non-zero numerator
|
||||
rational nonzer_nonnan(1, 30);
|
||||
OLIVE_ASSERT(!nonzer_nonnan.isNull());
|
||||
OLIVE_ASSERT(!nonzer_nonnan.isNaN());
|
||||
|
||||
OLIVE_TEST_END;
|
||||
}
|
||||
|
||||
OLIVE_ADD_TEST(RationalNaNConstant)
|
||||
{
|
||||
OLIVE_ASSERT(rational::NaN.isNaN());
|
||||
|
||||
OLIVE_TEST_END;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,128 +0,0 @@
|
||||
/***
|
||||
|
||||
Olive - Non-Linear Video Editor
|
||||
Copyright (C) 2022 Olive Team
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
***/
|
||||
|
||||
#include "testutil.h"
|
||||
|
||||
#include "common/timerange.h"
|
||||
|
||||
namespace olive {
|
||||
|
||||
OLIVE_ADD_TEST(TimeRangeListMergeAdjacent)
|
||||
{
|
||||
TimeRangeList t;
|
||||
|
||||
// TimeRangeList should merge 1 and 3 together since they're adjacent
|
||||
t.insert(TimeRange(0, 6));
|
||||
t.insert(TimeRange(20, 30));
|
||||
t.insert(TimeRange(6, 10));
|
||||
|
||||
OLIVE_ASSERT(t.size() == 2);
|
||||
OLIVE_ASSERT(t.first() == TimeRange(20, 30));
|
||||
OLIVE_ASSERT(t.at(1) == TimeRange(0, 10));
|
||||
|
||||
// TimeRangeList should ignore these because it's already contained
|
||||
TimeRangeList noop_test = t;
|
||||
|
||||
noop_test.insert(TimeRange(4, 7));
|
||||
OLIVE_ASSERT(noop_test == t);
|
||||
|
||||
noop_test.insert(TimeRange(0, 3));
|
||||
OLIVE_ASSERT(noop_test == t);
|
||||
|
||||
noop_test.insert(TimeRange(25, 30));
|
||||
OLIVE_ASSERT(noop_test == t);
|
||||
|
||||
// TimeRangeList should combine all these together
|
||||
TimeRangeList combine_test_no_overlap = t;
|
||||
combine_test_no_overlap.insert(TimeRange(10, 20));
|
||||
OLIVE_ASSERT(combine_test_no_overlap.size() == 1);
|
||||
OLIVE_ASSERT(combine_test_no_overlap.first() == TimeRange(0, 30));
|
||||
|
||||
TimeRangeList combine_test_in_overlap = t;
|
||||
combine_test_in_overlap.insert(TimeRange(9, 20));
|
||||
OLIVE_ASSERT(combine_test_in_overlap.size() == 1);
|
||||
OLIVE_ASSERT(combine_test_in_overlap.first() == TimeRange(0, 30));
|
||||
|
||||
TimeRangeList combine_test_out_overlap = t;
|
||||
combine_test_out_overlap.insert(TimeRange(10, 21));
|
||||
OLIVE_ASSERT(combine_test_out_overlap.size() == 1);
|
||||
OLIVE_ASSERT(combine_test_out_overlap.first() == TimeRange(0, 30));
|
||||
|
||||
TimeRangeList combine_test_both_overlap = t;
|
||||
combine_test_both_overlap.insert(TimeRange(9, 21));
|
||||
OLIVE_ASSERT(combine_test_both_overlap.size() == 1);
|
||||
OLIVE_ASSERT(combine_test_both_overlap.first() == TimeRange(0, 30));
|
||||
|
||||
OLIVE_TEST_END;
|
||||
}
|
||||
|
||||
OLIVE_ADD_TEST(TimeRangeListFrameIteratorSize)
|
||||
{
|
||||
const rational timebase(1, 10);
|
||||
|
||||
TimeRangeList ranges;
|
||||
|
||||
ranges.insert(TimeRange(0, 10)); // 100
|
||||
ranges.insert(TimeRange(25, 30)); // 50
|
||||
ranges.insert(TimeRange(50, 60)); // 100
|
||||
ranges.insert(TimeRange(70, rational(1401, 20))); // 1
|
||||
ranges.insert(TimeRange(rational(1402, 20), rational(1403, 20))); // 1
|
||||
ranges.insert(TimeRange(rational(10001, 40), rational(10002, 40))); // 0
|
||||
ranges.insert(TimeRange(rational(10001, 40), rational(10004, 40))); // 0
|
||||
ranges.insert(TimeRange(rational(10001, 40), rational(10005, 40))); // 2
|
||||
|
||||
TimeRangeListFrameIterator iterator(ranges, timebase);
|
||||
|
||||
QVector<rational> vec = iterator.ToVector();
|
||||
|
||||
OLIVE_ASSERT_EQUAL(vec.size(), 254);
|
||||
OLIVE_ASSERT_EQUAL(iterator.size(), vec.size());
|
||||
|
||||
TimeRangeListFrameIterator empty(TimeRangeList(), timebase);
|
||||
|
||||
QVector<rational> empty_vec = empty.ToVector();
|
||||
|
||||
OLIVE_ASSERT_EQUAL(empty_vec.size(), 0);
|
||||
OLIVE_ASSERT_EQUAL(empty_vec.size(), empty.size());
|
||||
|
||||
OLIVE_TEST_END;
|
||||
}
|
||||
|
||||
OLIVE_ADD_TEST(TimeRangeListFrameIteratorSize2)
|
||||
{
|
||||
const rational timebase(1001, 30000);
|
||||
|
||||
TimeRangeList ranges;
|
||||
|
||||
ranges.insert(TimeRange(rational(247247, 30000), rational(31031, 3750))); // 1
|
||||
|
||||
TimeRange tr(rational(247247, 30000), rational(31031, 3750));
|
||||
|
||||
TimeRangeListFrameIterator iterator(ranges, timebase);
|
||||
|
||||
QVector<rational> vec = iterator.ToVector();
|
||||
|
||||
OLIVE_ASSERT_EQUAL(vec.size(), 1);
|
||||
OLIVE_ASSERT_EQUAL(iterator.size(), vec.size());
|
||||
|
||||
OLIVE_TEST_END;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user