mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
881 B
34 lines
881 B
2 years ago
|
// Copyright 2022 The Gitea 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 db_test
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
"code.gitea.io/gitea/models/db"
|
||
|
"code.gitea.io/gitea/models/unittest"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestInTransaction(t *testing.T) {
|
||
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
||
|
assert.False(t, db.InTransaction(db.DefaultContext))
|
||
|
assert.NoError(t, db.WithTx(db.DefaultContext, func(ctx context.Context) error {
|
||
|
assert.True(t, db.InTransaction(ctx))
|
||
|
return nil
|
||
|
}))
|
||
|
|
||
|
ctx, committer, err := db.TxContext(db.DefaultContext)
|
||
|
assert.NoError(t, err)
|
||
|
defer committer.Close()
|
||
|
assert.True(t, db.InTransaction(ctx))
|
||
|
assert.Error(t, db.WithTx(ctx, func(ctx context.Context) error {
|
||
|
assert.True(t, db.InTransaction(ctx))
|
||
|
return nil
|
||
|
}))
|
||
|
}
|