From f3f0f3d451a667c7a12f23baf08853f12cbea4c0 Mon Sep 17 00:00:00 2001 From: n-peugnet Date: Wed, 22 Sep 2021 14:39:02 +0200 Subject: misc tests and log messages --- slice/slice_test.go | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'slice/slice_test.go') diff --git a/slice/slice_test.go b/slice/slice_test.go index 0cf1c40..d678fc7 100644 --- a/slice/slice_test.go +++ b/slice/slice_test.go @@ -29,3 +29,22 @@ func TestEmptyPatch(t *testing.T) { actual := Patch(source, patch) testutils.AssertSame(t, target, actual, "Target obtained from patch application") } + +type i struct { + int +} + +func TestStruct(t *testing.T) { + c1, c2, c3, c4, c5, c6, c7, c8 := &i{1}, &i{2}, &i{3}, &i{4}, &i{5}, &i{6}, &i{7}, &i{8} + source := Slice{c1, c2, c3, c4} + target := Slice{&i{5}, c2, c5, c6, &i{4}, c7, &i{8}} + patch := Diff(source, target) + testutils.AssertSame(t, []Del{0, 2}, patch.Del, "Patch del part") + testutils.AssertSame(t, []Ins{ + {0, Slice{c5}}, + {2, Slice{c5, c6}}, + {5, Slice{c7, c8}}, + }, patch.Ins, "Patch ins part") + actual := Patch(source, patch) + testutils.AssertSame(t, target, actual, "Target obtained from patch application") +} -- cgit v1.2.3