aboutsummaryrefslogtreecommitdiff
path: root/internal/gitutil/diff_test.go
blob: 65c5df65ee49e5b1a6ed22b104cec70886ac447c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright 2016 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package gitutil

import (
	"html/template"
	"testing"

	dmp "github.com/sergi/go-diff/diffmatchpatch"
	"github.com/stretchr/testify/assert"

	"github.com/gogs/git-module"
)

func Test_diffsToHTML(t *testing.T) {
	tests := []struct {
		diffs    []dmp.Diff
		lineType git.DiffLineType
		expHTML  template.HTML
	}{
		{
			diffs: []dmp.Diff{
				{Type: dmp.DiffEqual, Text: "foo "},
				{Type: dmp.DiffInsert, Text: "bar"},
				{Type: dmp.DiffDelete, Text: " baz"},
				{Type: dmp.DiffEqual, Text: " biz"},
			},
			lineType: git.DiffLineAdd,
			expHTML:  template.HTML(`+foo <span class="added-code">bar</span> biz`),
		},
		{
			diffs: []dmp.Diff{
				{Type: dmp.DiffEqual, Text: "foo "},
				{Type: dmp.DiffDelete, Text: "bar"},
				{Type: dmp.DiffInsert, Text: " baz"},
				{Type: dmp.DiffEqual, Text: " biz"},
			},
			lineType: git.DiffLineDelete,
			expHTML:  template.HTML(`-foo <span class="removed-code">bar</span> biz`),
		},
	}
	for _, test := range tests {
		t.Run("", func(t *testing.T) {
			assert.Equal(t, test.expHTML, diffsToHTML(test.diffs, test.lineType))
		})
	}
}