aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/blame_test.go
blob: a2c8fe8e7565cfb527b255ce7b70b9214899d677 (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
// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package git

import (
	"context"
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestReadingBlameOutput(t *testing.T) {
	ctx, cancel := context.WithCancel(context.Background())
	defer cancel()

	blameReader, err := CreateBlameReader(ctx, "./tests/repos/repo5_pulls", "f32b0a9dfd09a60f616f29158f772cedd89942d2", "README.md")
	assert.NoError(t, err)
	defer blameReader.Close()

	parts := []*BlamePart{
		{
			"72866af952e98d02a73003501836074b286a78f6",
			[]string{
				"# test_repo",
				"Test repository for testing migration from github to gitea",
			},
		},
		{
			"f32b0a9dfd09a60f616f29158f772cedd89942d2",
			[]string{},
		},
	}

	for _, part := range parts {
		actualPart, err := blameReader.NextPart()
		assert.NoError(t, err)
		assert.Equal(t, part, actualPart)
	}
}