aboutsummaryrefslogtreecommitdiff
path: root/internal/dbutil/string_test.go
blob: ec01f5808f16ccc14d62f3e6ccc144a9520a152b (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
// Copyright 2022 The Gogs 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 dbutil

import (
	"testing"

	"github.com/stretchr/testify/assert"

	"gogs.io/gogs/internal/conf"
)

func TestQuote(t *testing.T) {
	conf.UsePostgreSQL = true
	got := Quote("SELECT * FROM %s", "user")
	want := `SELECT * FROM "user"`
	assert.Equal(t, want, got)
	conf.UsePostgreSQL = false

	got = Quote("SELECT * FROM %s", "user")
	want = `SELECT * FROM user`
	assert.Equal(t, want, got)
}