Files
dolt/go/store/prolly/tree/json_diff_test.go
2024-01-03 13:15:55 -08:00

247 lines
5.6 KiB
Go

// Copyright 2023 Dolthub, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package tree
import (
"io"
"testing"
"github.com/dolthub/go-mysql-server/sql/types"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
type jsonDiffTest struct {
name string
from, to types.JsonObject
expectedDiffs []JsonDiff
}
var simpleJsonDiffTests = []jsonDiffTest{
{
name: "empty object, no modifications",
from: types.JsonObject{},
to: types.JsonObject{},
expectedDiffs: nil,
},
{
name: "insert into empty object",
from: types.JsonObject{},
to: types.JsonObject{"a": 1},
expectedDiffs: []JsonDiff{
{
Key: "$.\"a\"",
From: nil,
To: &types.JSONDocument{Val: 1},
Type: AddedDiff,
},
},
},
{
name: "delete from object",
from: types.JsonObject{"a": 1},
to: types.JsonObject{},
expectedDiffs: []JsonDiff{
{
Key: "$.\"a\"",
From: &types.JSONDocument{Val: 1},
To: nil,
Type: RemovedDiff,
},
},
},
{
name: "modify object",
from: types.JsonObject{"a": 1},
to: types.JsonObject{"a": 2},
expectedDiffs: []JsonDiff{
{
Key: "$.\"a\"",
From: &types.JSONDocument{Val: 1},
To: &types.JSONDocument{Val: 2},
Type: ModifiedDiff,
},
},
},
{
name: "nested insert",
from: types.JsonObject{"a": types.JsonObject{}},
to: types.JsonObject{"a": types.JsonObject{"b": 1}},
expectedDiffs: []JsonDiff{
{
Key: "$.\"a\".\"b\"",
To: &types.JSONDocument{Val: 1},
Type: AddedDiff,
},
},
},
{
name: "nested delete",
from: types.JsonObject{"a": types.JsonObject{"b": 1}},
to: types.JsonObject{"a": types.JsonObject{}},
expectedDiffs: []JsonDiff{
{
Key: "$.\"a\".\"b\"",
From: &types.JSONDocument{Val: 1},
Type: RemovedDiff,
},
},
},
{
name: "nested modify",
from: types.JsonObject{"a": types.JsonObject{"b": 1}},
to: types.JsonObject{"a": types.JsonObject{"b": 2}},
expectedDiffs: []JsonDiff{
{
Key: "$.\"a\".\"b\"",
From: &types.JSONDocument{Val: 1},
To: &types.JSONDocument{Val: 2},
Type: ModifiedDiff,
},
},
},
{
name: "insert object",
from: types.JsonObject{"a": types.JsonObject{}},
to: types.JsonObject{"a": types.JsonObject{"b": types.JsonObject{"c": 3}}},
expectedDiffs: []JsonDiff{
{
Key: "$.\"a\".\"b\"",
To: &types.JSONDocument{Val: types.JsonObject{"c": 3}},
Type: AddedDiff,
},
},
},
{
name: "modify to object",
from: types.JsonObject{"a": types.JsonObject{"b": 2}},
to: types.JsonObject{"a": types.JsonObject{"b": types.JsonObject{"c": 3}}},
expectedDiffs: []JsonDiff{
{
Key: "$.\"a\".\"b\"",
From: &types.JSONDocument{Val: 2},
To: &types.JSONDocument{Val: types.JsonObject{"c": 3}},
Type: ModifiedDiff,
},
},
},
{
name: "modify from object",
from: types.JsonObject{"a": types.JsonObject{"b": 2}},
to: types.JsonObject{"a": 1},
expectedDiffs: []JsonDiff{
{
Key: "$.\"a\"",
From: &types.JSONDocument{Val: types.JsonObject{"b": 2}},
To: &types.JSONDocument{Val: 1},
Type: ModifiedDiff,
},
},
},
{
name: "remove object",
from: types.JsonObject{"a": types.JsonObject{"b": types.JsonObject{"c": 3}}},
to: types.JsonObject{"a": types.JsonObject{}},
expectedDiffs: []JsonDiff{
{
Key: "$.\"a\".\"b\"",
From: &types.JSONDocument{Val: types.JsonObject{"c": 3}},
Type: RemovedDiff,
},
},
},
{
name: "insert escaped double quotes",
from: types.JsonObject{"\"a\"": "1"},
to: types.JsonObject{"b": "\"2\""},
expectedDiffs: []JsonDiff{
{
Key: "$.\"\\\"a\\\"\"",
From: &types.JSONDocument{Val: "1"},
To: nil,
Type: RemovedDiff,
},
{
Key: "$.\"b\"",
From: nil,
To: &types.JSONDocument{Val: "\"2\""},
Type: AddedDiff,
},
},
},
{
name: "modifications returned in lexographic order",
from: types.JsonObject{"a": types.JsonObject{"1": "i"}, "aa": 2, "b": 6},
to: types.JsonObject{"": 1, "a": types.JsonObject{}, "aa": 3, "bb": 5},
expectedDiffs: []JsonDiff{
{
Key: "$.\"\"",
To: &types.JSONDocument{Val: 1},
Type: AddedDiff,
},
{
Key: "$.\"a\".\"1\"",
From: &types.JSONDocument{Val: "i"},
Type: RemovedDiff,
},
{
Key: "$.\"aa\"",
From: &types.JSONDocument{Val: 2},
To: &types.JSONDocument{Val: 3},
Type: ModifiedDiff,
},
{
Key: "$.\"b\"",
From: &types.JSONDocument{Val: 6},
Type: RemovedDiff,
},
{
Key: "$.\"bb\"",
To: &types.JSONDocument{Val: 5},
Type: AddedDiff,
},
},
},
}
func TestJsonDiff(t *testing.T) {
t.Run("simple tests", func(t *testing.T) {
runTestBatch(t, simpleJsonDiffTests)
})
}
func runTestBatch(t *testing.T, tests []jsonDiffTest) {
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
runTest(t, test)
})
}
}
func runTest(t *testing.T, test jsonDiffTest) {
differ := NewJsonDiffer("$", test.from, test.to)
var actualDiffs []JsonDiff
for {
diff, err := differ.Next()
if err == io.EOF {
break
}
assert.NoError(t, err)
actualDiffs = append(actualDiffs, diff)
}
require.Equal(t, test.expectedDiffs, actualDiffs)
}