Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

propagating context to gorm transaction #207

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 12 additions & 4 deletions gorm/transaction.go
Expand Up @@ -69,7 +69,7 @@ func BeginFromContext(ctx context.Context) (*gorm.DB, error) {
if txn.parent == nil {
return nil, ErrCtxTxnNoDB
}
db := txn.Begin()
db := txn.beginWithContext(ctx)
if db.Error != nil {
return nil, db.Error
}
Expand All @@ -89,7 +89,7 @@ func BeginWithOptionsFromContext(ctx context.Context, opts *sql.TxOptions) (*gor
if txn.parent == nil {
return nil, ErrCtxTxnNoDB
}
db := txn.BeginWithOptions(opts)
db := txn.beginWithContextAndOptions(ctx, opts)
if db.Error != nil {
return nil, db.Error
}
Expand All @@ -99,11 +99,15 @@ func BeginWithOptionsFromContext(ctx context.Context, opts *sql.TxOptions) (*gor
// Begin starts new transaction by calling `*gorm.DB.Begin()`
// Returns new instance of `*gorm.DB` (error can be checked by `*gorm.DB.Error`)
func (t *Transaction) Begin() *gorm.DB {
return t.beginWithContext(context.Background())
}

func (t *Transaction) beginWithContext(ctx context.Context) *gorm.DB {
t.mu.Lock()
defer t.mu.Unlock()

if t.current == nil {
t.current = t.parent.Begin()
t.current = t.parent.BeginTx(ctx, nil)
}

return t.current
Expand All @@ -112,11 +116,15 @@ func (t *Transaction) Begin() *gorm.DB {
// BeginWithOptions starts new transaction by calling `*gorm.DB.BeginTx()`
// Returns new instance of `*gorm.DB` (error can be checked by `*gorm.DB.Error`)
func (t *Transaction) BeginWithOptions(opts *sql.TxOptions) *gorm.DB {
return t.beginWithContextAndOptions(context.Background(), opts)
}

func (t *Transaction) beginWithContextAndOptions(ctx context.Context, opts *sql.TxOptions) *gorm.DB {
t.mu.Lock()
defer t.mu.Unlock()

if t.current == nil {
t.current = t.parent.BeginTx(context.Background(), opts)
t.current = t.parent.BeginTx(ctx, opts)
}

return t.current
Expand Down
20 changes: 18 additions & 2 deletions gorm/transaction_test.go
Expand Up @@ -367,8 +367,9 @@ func TestBeginFromContext_Good(t *testing.T) {

func TestBeginFromContext_Bad(t *testing.T) {
tests := []struct {
desc string
withOpts bool
desc string
withOpts bool
contextCanceled bool
}{
{
desc: "begin without options",
Expand All @@ -378,11 +379,26 @@ func TestBeginFromContext_Bad(t *testing.T) {
desc: "begin with options",
withOpts: true,
},
{
desc: "canceled context without context",
withOpts: true,
contextCanceled: true,
},
{
desc: "canceled context with options",
withOpts: false,
contextCanceled: true,
},
}
for _, test := range tests {
test := test
t.Run(test.desc, func(t *testing.T) {
ctx := context.Background()
if test.contextCanceled {
var cancel context.CancelFunc
ctx, cancel = context.WithCancel(ctx)
cancel()
}

// Case: Transaction missing from context
txn1, err := beginFromContext(ctx, test.withOpts)
Expand Down