home/src/unit_tests.cc

50 lines
1.8 KiB
C++
Raw Normal View History

#include "unit_tests.hh"
2012-03-21 20:27:36 +01:00
#include "assert.hh"
#include "diff.hh"
#include "utf8.hh"
#include "string.hh"
2012-03-21 20:27:36 +01:00
namespace Kakoune
2012-03-21 20:27:36 +01:00
{
UnitTest test_utf8{[]()
2012-10-22 01:05:56 +02:00
{
StringView str = "maïs mélange bientôt";
kak_assert(utf8::distance(std::begin(str), std::end(str)) == 20);
kak_assert(utf8::codepoint(std::begin(str) + 2, std::end(str)) == 0x00EF);
}};
2013-01-30 19:16:36 +01:00
UnitTest test_diff{[]()
{
struct Diff{DiffOp op; int len; int posB;};
auto check_diff = [](StringView a, StringView b, std::initializer_list<Diff> diffs) {
size_t count = 0;
for_each_diff(a.begin(), (int)a.length(), b.begin(), (int)b.length(),
[&](DiffOp op, int len, int posB) {
kak_assert(count < diffs.size());
auto& d = diffs.begin()[count++];
kak_assert(d.op == op and d.len == len and d.posB == posB);
});
kak_assert(count == diffs.size());
2015-05-14 14:57:03 +02:00
};
check_diff("a?", "!", {{DiffOp::Remove, 1, 0}, {DiffOp::Add, 1, 0}, {DiffOp::Remove, 1, 0}});
check_diff("abcde", "cd", {{DiffOp::Remove, 2, 0}, {DiffOp::Keep, 2, 0}, {DiffOp::Remove, 1, 0}});
check_diff("abcd", "cdef", {{DiffOp::Remove, 2, 0}, {DiffOp::Keep, 2, 0}, {DiffOp::Add, 2, 2}});
check_diff("mais que fais la police", "mais ou va la police",
{{DiffOp::Keep, 5, 0}, {DiffOp::Remove, 1, 0}, {DiffOp::Add, 1, 5}, {DiffOp::Keep, 1, 0},
{DiffOp::Remove, 1, 0}, {DiffOp::Keep, 1, 0}, {DiffOp::Add, 1, 8}, {DiffOp::Remove, 1, 0},
{DiffOp::Keep, 1, 0}, {DiffOp::Remove, 2, 0}, {DiffOp::Keep, 10, 0}} );
}};
2015-05-24 23:34:05 +02:00
UnitTest* UnitTest::list = nullptr;
2015-05-24 23:34:05 +02:00
void UnitTest::run_all_tests()
2012-03-21 20:27:36 +01:00
{
2015-05-24 23:34:05 +02:00
for (const UnitTest* test = UnitTest::list; test; test = test->next)
test->func();
}
2012-03-21 20:27:36 +01:00
}