Release / update-version (push) Has been cancelled
Release / build-frontend (push) Has been cancelled
Release / release (push) Has been cancelled
Release / sync-version-file (push) Has been cancelled
CI / shell (push) Canceled after 0s
CI / test (push) Canceled after 0s
CI / frontend (push) Canceled after 0s
CI / golangci-lint (push) Canceled after 0s
Security Scan / backend-security (push) Canceled after 0s
Security Scan / frontend-security (push) Canceled after 0s
44 lines
1.3 KiB
Go
44 lines
1.3 KiB
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/DATA-DOG/go-sqlmock"
|
|
dbent "github.com/Wei-Shaw/sub2api/ent"
|
|
_ "github.com/Wei-Shaw/sub2api/ent/runtime"
|
|
"github.com/Wei-Shaw/sub2api/ent/usersubscription"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"entgo.io/ent/dialect"
|
|
entsql "entgo.io/ent/dialect/sql"
|
|
)
|
|
|
|
func TestUserSubscriptionGetByIDForUpdateLocksRow(t *testing.T) {
|
|
var capturedSQL string
|
|
db, mock, err := sqlmock.New(sqlmock.QueryMatcherOption(captureEntQueryMatcher{actual: &capturedSQL}))
|
|
require.NoError(t, err)
|
|
t.Cleanup(func() { _ = db.Close() })
|
|
|
|
driver := entsql.OpenDB(dialect.Postgres, db)
|
|
client := dbent.NewClient(dbent.Driver(driver))
|
|
t.Cleanup(func() { _ = client.Close() })
|
|
repo := NewUserSubscriptionRepository(client)
|
|
now := time.Date(2026, 8, 2, 12, 0, 0, 0, time.UTC)
|
|
|
|
mock.ExpectQuery("locked subscription").WillReturnRows(
|
|
sqlmock.NewRows(usersubscription.Columns).AddRow(
|
|
int64(7), now, now, nil, int64(11), int64(13), now, now.AddDate(0, 0, 30), "active",
|
|
nil, nil, nil, 0.0, 0.0, 0.0, nil, now, "renewal",
|
|
),
|
|
)
|
|
|
|
sub, err := repo.GetByIDForUpdate(context.Background(), 7)
|
|
require.NoError(t, err)
|
|
require.Equal(t, int64(7), sub.ID)
|
|
require.NoError(t, mock.ExpectationsWereMet())
|
|
require.Contains(t, strings.ToUpper(normalizeSQLWhitespace(capturedSQL)), "FOR UPDATE")
|
|
}
|