This file is indexed.

/usr/share/gocode/src/github.com/erikstmartin/go-testdb/tx_test.go is in golang-github-erikstmartin-go-testdb-dev 0.0~git20160219.0.8d10e4a-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
package testdb

import (
	"errors"
	"testing"
)

func TestTxSetCommitFunc(t *testing.T) {
	tx := &Tx{}

	tx.SetCommitFunc(func() error {
		return errors.New("commit failed")
	})

	err := tx.Commit()

	if err == nil || err.Error() != "commit failed" {
		t.Fatal("stubbed commit did not return expected error")
	}
}

func TestTxStubCommitError(t *testing.T) {
	tx := &Tx{}

	tx.StubCommitError(errors.New("commit failed"))

	err := tx.Commit()

	if err == nil || err.Error() != "commit failed" {
		t.Fatal("stubbed commit did not return expected error")
	}
}

func TestTxSetRollbackFunc(t *testing.T) {
	tx := &Tx{}

	tx.SetRollbackFunc(func() error {
		return errors.New("rollback failed")
	})

	err := tx.Rollback()

	if err == nil || err.Error() != "rollback failed" {
		t.Fatal("stubbed rollback did not return expected error")
	}
}

func TestTxStubRollbackError(t *testing.T) {
	tx := &Tx{}

	tx.StubRollbackError(errors.New("rollback failed"))

	err := tx.Rollback()

	if err == nil || err.Error() != "rollback failed" {
		t.Fatal("stubbed rollback did not return expected error")
	}
}