diff options
author | n-peugnet <n.peugnet@free.fr> | 2021-09-22 14:39:02 +0200 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2021-09-22 14:39:02 +0200 |
commit | f3f0f3d451a667c7a12f23baf08853f12cbea4c0 (patch) | |
tree | b020684bd939dde093cbc18fc7a3376918e0ca08 /slice | |
parent | d736642d6ea3ae42de3a30f39881c88a00e1a1f9 (diff) | |
download | dna-backup-f3f0f3d451a667c7a12f23baf08853f12cbea4c0.tar.gz dna-backup-f3f0f3d451a667c7a12f23baf08853f12cbea4c0.zip |
misc tests and log messages
Diffstat (limited to 'slice')
-rw-r--r-- | slice/slice_test.go | 19 |
1 files changed, 19 insertions, 0 deletions
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") +} |