mirror of
https://github.com/Green-Sky/crdt_tests.git
synced 2024-11-13 01:33:03 +01:00
add testing to verion0
This commit is contained in:
parent
92d3d89d0f
commit
808583873a
@ -33,5 +33,7 @@ elseif (${CMAKE_CXX_COMPILER_ID} STREQUAL "MSVC")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
add_subdirectory(./prototyping)
|
||||
add_subdirectory(./prototyping EXCLUDE_FROM_ALL)
|
||||
|
||||
add_subdirectory(./version0)
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <optional>
|
||||
#include <vector>
|
||||
|
195
version0/test1.cpp
Normal file
195
version0/test1.cpp
Normal file
@ -0,0 +1,195 @@
|
||||
#include "./list.hpp"
|
||||
#include "./text_document.hpp"
|
||||
|
||||
#include <numeric>
|
||||
#include <random>
|
||||
#include <iostream>
|
||||
#include <cassert>
|
||||
|
||||
// single letter agent, for testing only
|
||||
using Agent = char;
|
||||
using DocType = GreenCRDT::TextDocument<Agent>;
|
||||
using ListType = DocType::ListType;
|
||||
|
||||
void testSingle1(void) {
|
||||
DocType doc;
|
||||
|
||||
doc.state.add({'A', 0}, 'a', std::nullopt, std::nullopt);
|
||||
doc.state.add({'A', 1}, 'b', ListType::ListID{'A', 0u}, std::nullopt);
|
||||
|
||||
assert(doc.getText() == "ab");
|
||||
}
|
||||
|
||||
void testConcurrent1(void) {
|
||||
// agent_a < agent_b
|
||||
|
||||
// concurrent insert of first element
|
||||
{ // variant 1, a then b
|
||||
DocType doc;
|
||||
doc.state.add({'A', 0}, 'a', std::nullopt, std::nullopt);
|
||||
doc.state.add({'B', 0}, 'b', std::nullopt, std::nullopt);
|
||||
|
||||
assert(doc.getText() == "ab");
|
||||
}
|
||||
{ // variant 2, b then a
|
||||
DocType doc;
|
||||
doc.state.add({'B', 0}, 'b', std::nullopt, std::nullopt);
|
||||
doc.state.add({'A', 0}, 'a', std::nullopt, std::nullopt);
|
||||
|
||||
assert(doc.getText() == "ab");
|
||||
}
|
||||
}
|
||||
|
||||
struct AddOp {
|
||||
ListType::ListID id;
|
||||
char value;
|
||||
std::optional<ListType::ListID> parent_left;
|
||||
std::optional<ListType::ListID> parent_right;
|
||||
};
|
||||
|
||||
void randomAddPermutations(const std::vector<AddOp>& ops, const std::string& expected) {
|
||||
// TODO: more then 1k?
|
||||
for (size_t i = 0; i < 1000; i++) {
|
||||
std::minstd_rand rng(1337 + i);
|
||||
std::vector<size_t> ops_todo(ops.size());
|
||||
std::iota(ops_todo.begin(), ops_todo.end(), 0u);
|
||||
|
||||
size_t attempts {0};
|
||||
|
||||
DocType doc;
|
||||
do {
|
||||
size_t idx = rng() % ops_todo.size();
|
||||
|
||||
if (doc.state.add(ops[ops_todo[idx]].id, ops[ops_todo[idx]].value, ops[ops_todo[idx]].parent_left, ops[ops_todo[idx]].parent_right)) {
|
||||
// only remove if it was possible -> returned true;
|
||||
ops_todo.erase(ops_todo.begin()+idx);
|
||||
}
|
||||
|
||||
attempts++;
|
||||
assert(attempts < 10'000); // in case we run into an endless loop
|
||||
} while (!ops_todo.empty());
|
||||
|
||||
assert(doc.getText() == expected);
|
||||
}
|
||||
}
|
||||
|
||||
void testInterleave1(void) {
|
||||
const std::vector<AddOp> ops {
|
||||
{{'A', 0u}, 'a', std::nullopt, std::nullopt},
|
||||
{{'A', 1u}, 'a', ListType::ListID{'A', 0u}, std::nullopt},
|
||||
{{'A', 2u}, 'a', ListType::ListID{'A', 1u}, std::nullopt},
|
||||
{{'B', 0u}, 'b', std::nullopt, std::nullopt},
|
||||
{{'B', 1u}, 'b', ListType::ListID{'B', 0u}, std::nullopt},
|
||||
{{'B', 2u}, 'b', ListType::ListID{'B', 1u}, std::nullopt},
|
||||
};
|
||||
|
||||
randomAddPermutations(ops, "aaabbb");
|
||||
}
|
||||
|
||||
void testInterleave2(void) {
|
||||
const std::vector<AddOp> ops {
|
||||
{{'A', 0u}, 'a', std::nullopt, std::nullopt},
|
||||
{{'A', 1u}, 'a', std::nullopt, ListType::ListID{'A', 0u}},
|
||||
{{'A', 2u}, 'a', std::nullopt, ListType::ListID{'A', 1u}},
|
||||
{{'B', 0u}, 'b', std::nullopt, std::nullopt},
|
||||
{{'B', 1u}, 'b', std::nullopt, ListType::ListID{'B', 0u}},
|
||||
{{'B', 2u}, 'b', std::nullopt, ListType::ListID{'B', 1u}},
|
||||
};
|
||||
|
||||
randomAddPermutations(ops, "aaabbb");
|
||||
}
|
||||
|
||||
void testConcurrent2(void) {
|
||||
const std::vector<AddOp> ops {
|
||||
{{'A', 0u}, 'a', std::nullopt, std::nullopt},
|
||||
{{'C', 0u}, 'c', std::nullopt, std::nullopt},
|
||||
{{'B', 0u}, 'b', std::nullopt, std::nullopt},
|
||||
{{'D', 0u}, 'd', ListType::ListID{'A', 0u}, ListType::ListID{'C', 0u}},
|
||||
};
|
||||
|
||||
randomAddPermutations(ops, "adbc");
|
||||
}
|
||||
|
||||
void testMain1(void) {
|
||||
DocType doc;
|
||||
|
||||
static_assert('0' < '1');
|
||||
|
||||
const std::vector<AddOp> a0_ops {
|
||||
{{'0', 0u}, 'a', std::nullopt, std::nullopt},
|
||||
{{'0', 1u}, 'b', ListType::ListID{'0', 0u}, std::nullopt},
|
||||
{{'0', 2u}, 'c', ListType::ListID{'0', 1u}, std::nullopt},
|
||||
{{'0', 3u}, 'd', ListType::ListID{'0', 1u}, ListType::ListID{'0', 2u}},
|
||||
};
|
||||
|
||||
const std::vector<AddOp> a1_ops {
|
||||
// knows of a0 up to {a0, 1}
|
||||
{{'1', 0u}, 'z', ListType::ListID{'0', 0u}, ListType::ListID{'0', 1u}},
|
||||
{{'1', 1u}, 'y', ListType::ListID{'0', 1u}, std::nullopt},
|
||||
};
|
||||
|
||||
{ // the ez, in order stuff
|
||||
// a0 insert first char, 'a', since its the first, we dont have any parents
|
||||
doc.state.add(a0_ops[0].id, a0_ops[0].value, a0_ops[0].parent_left, a0_ops[0].parent_right);
|
||||
assert(doc.getText() == "a");
|
||||
|
||||
// a0 insert secound char, 'b' after 'a', no parents to right
|
||||
doc.state.add(a0_ops[1].id, a0_ops[1].value, a0_ops[1].parent_left, a0_ops[1].parent_right);
|
||||
assert(doc.getText() == "ab");
|
||||
|
||||
// a0 insert 'c' after 'b', no parents to right
|
||||
doc.state.add(a0_ops[2].id, a0_ops[2].value, a0_ops[2].parent_left, a0_ops[2].parent_right);
|
||||
assert(doc.getText() == "abc");
|
||||
|
||||
// a0 insert 'd' after 'b', 'c' parent right
|
||||
doc.state.add(a0_ops[3].id, a0_ops[3].value, a0_ops[3].parent_left, a0_ops[3].parent_right);
|
||||
assert(doc.getText() == "abdc");
|
||||
|
||||
// a1 insert 'z' after 'a', 'b' parent right
|
||||
doc.state.add(a1_ops[0].id, a1_ops[0].value, a1_ops[0].parent_left, a1_ops[0].parent_right);
|
||||
assert(doc.getText() == "azbdc");
|
||||
}
|
||||
|
||||
std::cout << "done with ez\n";
|
||||
|
||||
{ // a1 was not uptodate only had 0,1 of a0
|
||||
// a1 insert 'y' after 'b', no parent right
|
||||
doc.state.add(a1_ops[1].id, a1_ops[1].value, a1_ops[1].parent_left, a1_ops[1].parent_right);
|
||||
assert(doc.getText() == "azbdcy");
|
||||
}
|
||||
|
||||
std::cout << "\ndoc size (with tombstones): " << doc.state.list.size() << "\n";
|
||||
std::cout << "\ndoc size: " << doc.state.doc_size << "\n";
|
||||
std::cout << "doc text:\n";
|
||||
|
||||
std::cout << doc.getText() << "\n";
|
||||
}
|
||||
|
||||
int main(void) {
|
||||
std::cout << "testSingle1:\n";
|
||||
testSingle1();
|
||||
std::cout << std::string(40, '-') << "\n";
|
||||
|
||||
std::cout << "testConcurrent1:\n";
|
||||
testConcurrent1();
|
||||
std::cout << std::string(40, '-') << "\n";
|
||||
|
||||
std::cout << "testInterleave1:\n";
|
||||
testInterleave1();
|
||||
std::cout << std::string(40, '-') << "\n";
|
||||
|
||||
std::cout << "testInterleave2:\n";
|
||||
testInterleave2();
|
||||
std::cout << std::string(40, '-') << "\n";
|
||||
|
||||
std::cout << "testConcurrent2:\n";
|
||||
testConcurrent2();
|
||||
std::cout << std::string(40, '-') << "\n";
|
||||
|
||||
std::cout << "testMain1:\n";
|
||||
testMain1();
|
||||
std::cout << std::string(40, '-') << "\n";
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -1,3 +1,5 @@
|
||||
#pragma once
|
||||
|
||||
#include "./list.hpp"
|
||||
|
||||
namespace GreenCRDT {
|
||||
|
Loading…
Reference in New Issue
Block a user