mirror of https://github.com/perkeep/perkeep.git
66 lines
1.7 KiB
Go
66 lines
1.7 KiB
Go
/*
|
|
Copyright 2014 The Perkeep Authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package postgres
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"go4.org/jsonconfig"
|
|
"perkeep.org/internal/osutil"
|
|
"perkeep.org/pkg/sorted"
|
|
"perkeep.org/pkg/sorted/kvtest"
|
|
"perkeep.org/pkg/test/dockertest"
|
|
)
|
|
|
|
// TestPostgreSQLKV tests against a real PostgreSQL instance, using a Docker container.
|
|
func TestPostgreSQLKV(t *testing.T) {
|
|
dbname := "camlitest_" + osutil.Username()
|
|
containerID, ip := dockertest.SetupPostgreSQLContainer(t, dbname)
|
|
defer containerID.KillRemove(t)
|
|
|
|
kv, err := sorted.NewKeyValue(jsonconfig.Obj{
|
|
"type": "postgres",
|
|
"host": ip,
|
|
"database": dbname,
|
|
"user": dockertest.PostgresUsername,
|
|
"password": dockertest.PostgresPassword,
|
|
"sslmode": "disable",
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("postgres.NewKeyValue = %v", err)
|
|
}
|
|
kvtest.TestSorted(t, kv)
|
|
}
|
|
|
|
func TestPostgresDBNaming(t *testing.T) {
|
|
cases := []struct {
|
|
name string
|
|
valid bool
|
|
}{
|
|
{"perkeep", true},
|
|
{"perkeep_2", true},
|
|
{"perkeep-2", true},
|
|
{"'; drop tables;", false}, // validDatabaseName doesn't actually check for sql injection
|
|
}
|
|
for i := range cases {
|
|
res := validDatabaseName(cases[i].name)
|
|
if res != cases[i].valid {
|
|
t.Errorf("%q got %v expected %v", cases[i].name, res, cases[i].valid)
|
|
}
|
|
}
|
|
}
|