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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
package object
import (
"github.com/go-git/go-git/v5/plumbing"
"github.com/go-git/go-git/v5/plumbing/cache"
"github.com/go-git/go-git/v5/storage/filesystem"
fixtures "github.com/go-git/go-git-fixtures/v4"
. "gopkg.in/check.v1"
)
type PatchSuite struct {
BaseObjectsSuite
}
var _ = Suite(&PatchSuite{})
func (s *PatchSuite) TestStatsWithSubmodules(c *C) {
storer := filesystem.NewStorage(
fixtures.ByURL("https://github.com/git-fixtures/submodule.git").One().DotGit(), cache.NewObjectLRUDefault())
commit, err := GetCommit(storer, plumbing.NewHash("b685400c1f9316f350965a5993d350bc746b0bf4"))
c.Assert(err, IsNil)
tree, err := commit.Tree()
c.Assert(err, IsNil)
e, err := tree.entry("basic")
c.Assert(err, IsNil)
ch := &Change{
From: ChangeEntry{
Name: "basic",
Tree: tree,
TreeEntry: *e,
},
To: ChangeEntry{
Name: "basic",
Tree: tree,
TreeEntry: *e,
},
}
p, err := getPatch("", ch)
c.Assert(err, IsNil)
c.Assert(p, NotNil)
}
func (s *PatchSuite) TestFileStatsString(c *C) {
testCases := []struct {
description string
input FileStats
expected string
}{
{
description: "no files changed",
input: []FileStat{},
expected: "",
},
{
description: "one file touched - no changes",
input: []FileStat{
{
Name: "file1",
},
},
expected: " file1 | 0 \n",
},
{
description: "one file changed",
input: []FileStat{
{
Name: "file1",
Addition: 1,
},
},
expected: " file1 | 1 +\n",
},
{
description: "one file changed with one addition and one deletion",
input: []FileStat{
{
Name: ".github/workflows/git.yml",
Addition: 1,
Deletion: 1,
},
},
expected: " .github/workflows/git.yml | 2 +-\n",
},
{
description: "two files changed",
input: []FileStat{
{
Name: ".github/workflows/git.yml",
Addition: 1,
Deletion: 1,
},
{
Name: "cli/go-git/go.mod",
Addition: 4,
Deletion: 4,
},
},
expected: " .github/workflows/git.yml | 2 +-\n cli/go-git/go.mod | 8 ++++----\n",
},
{
description: "three files changed",
input: []FileStat{
{
Name: ".github/workflows/git.yml",
Addition: 3,
Deletion: 3,
},
{
Name: "worktree.go",
Addition: 107,
},
{
Name: "worktree_test.go",
Addition: 75,
},
},
expected: " .github/workflows/git.yml | 6 +++---\n" +
" worktree.go | 107 +++++++++++++++++++++++++++++++++++++++++++++++++++++\n" +
" worktree_test.go | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++++\n",
},
{
description: "three files changed with deletions and additions",
input: []FileStat{
{
Name: ".github/workflows/git.yml",
Addition: 3,
Deletion: 3,
},
{
Name: "worktree.go",
Addition: 107,
Deletion: 217,
},
{
Name: "worktree_test.go",
Addition: 75,
Deletion: 275,
},
},
expected: " .github/workflows/git.yml | 6 +++---\n" +
" worktree.go | 324 ++++++++++++++++++-----------------------------------\n" +
" worktree_test.go | 350 ++++++++++++-----------------------------------------\n",
},
}
for _, tc := range testCases {
c.Log("Executing test cases:", tc.description)
c.Assert(printStat(tc.input), Equals, tc.expected)
}
}
|