forked from fergusstrange/embedded-postgres
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprepare_database_test.go
127 lines (99 loc) · 3.42 KB
/
prepare_database_test.go
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package embeddedpostgres
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"testing"
"github.com/stretchr/testify/assert"
)
func Test_defaultInitDatabase_ErrorWhenCannotCreatePasswordFile(t *testing.T) {
err := defaultInitDatabase("path_not_exists", "path_not_exists", "path_not_exists", "Tom", "Beer", "", os.Stderr)
assert.EqualError(t, err, "unable to write password file to path_not_exists/pwfile")
}
func Test_defaultInitDatabase_ErrorWhenCannotStartInitDBProcess(t *testing.T) {
binTempDir, err := ioutil.TempDir("", "prepare_database_test_bin")
if err != nil {
panic(err)
}
runtimeTempDir, err := ioutil.TempDir("", "prepare_database_test_runtime")
if err != nil {
panic(err)
}
defer func() {
if err := os.RemoveAll(binTempDir); err != nil {
panic(err)
}
if err := os.RemoveAll(runtimeTempDir); err != nil {
panic(err)
}
}()
err = defaultInitDatabase(binTempDir, runtimeTempDir, filepath.Join(runtimeTempDir, "data"), "Tom", "Beer", "", os.Stderr)
assert.EqualError(t, err, fmt.Sprintf("unable to init database using: %s/bin/initdb -A password -U Tom -D %s/data --pwfile=%s/pwfile",
binTempDir,
runtimeTempDir,
runtimeTempDir))
assert.FileExists(t, filepath.Join(runtimeTempDir, "pwfile"))
}
func Test_defaultInitDatabase_ErrorInvalidLocaleSetting(t *testing.T) {
tempDir, err := ioutil.TempDir("", "prepare_database_test")
if err != nil {
panic(err)
}
defer func() {
if err := os.RemoveAll(tempDir); err != nil {
panic(err)
}
}()
err = defaultInitDatabase(tempDir, tempDir, filepath.Join(tempDir, "data"), "postgres", "postgres", "en_XY", os.Stderr)
assert.EqualError(t, err, fmt.Sprintf("unable to init database using: %s/bin/initdb -A password -U postgres -D %s/data --pwfile=%s/pwfile --locale=en_XY",
tempDir,
tempDir,
tempDir))
}
func Test_defaultInitDatabase_PwFileRemoved(t *testing.T) {
tempDir, err := ioutil.TempDir("", "prepare_database_test")
if err != nil {
panic(err)
}
defer func() {
if err := os.RemoveAll(tempDir); err != nil {
panic(err)
}
}()
database := NewDatabase(DefaultConfig().RuntimePath(tempDir))
if err := database.Start(); err != nil {
t.Fatal(err)
}
defer func() {
if err := database.Stop(); err != nil {
t.Fatal(err)
}
}()
pwFile := filepath.Join(tempDir, "pwfile")
_, err = os.Stat(pwFile)
assert.True(t, os.IsNotExist(err), "pwfile (%v) still exists after starting the db", pwFile)
}
func Test_defaultCreateDatabase_ErrorWhenSQLOpenError(t *testing.T) {
err := defaultCreateDatabase(1234, "user client_encoding=lol", "password", "database")
assert.EqualError(t, err, "unable to connect to create database with custom name database with the following error: client_encoding must be absent or 'UTF8'")
}
func Test_defaultCreateDatabase_ErrorWhenQueryError(t *testing.T) {
database := NewDatabase(DefaultConfig().
Port(9831).
Database("b33r"))
if err := database.Start(); err != nil {
t.Fatal(err)
}
defer func() {
if err := database.Stop(); err != nil {
t.Fatal(err)
}
}()
err := defaultCreateDatabase(9831, "postgres", "postgres", "b33r")
assert.EqualError(t, err, `unable to connect to create database with custom name b33r with the following error: pq: database "b33r" already exists`)
}
func Test_healthCheckDatabase_ErrorWhenSQLConnectingError(t *testing.T) {
err := healthCheckDatabase(1234, "tom client_encoding=lol", "more", "b33r")
assert.EqualError(t, err, "client_encoding must be absent or 'UTF8'")
}