forked from habx/pg-commands
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pg_dump_test.go
126 lines (119 loc) · 3.91 KB
/
pg_dump_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
package pgcommands_test
import (
"fmt"
"os"
"runtime"
"testing"
. "github.com/smartystreets/goconvey/convey"
pg "github.com/habx/pg-commands"
"github.com/habx/pg-commands/tests/fixtures"
initdatabase "github.com/habx/pg-commands/tests/fixtures/scripts/init-database"
deps "github.com/habx/pg-commands/tests/fixtures/scripts/install-deps"
)
// nolint: gochecknoinits
func init() {
initdatabase.Init()
if runtime.GOOS == "linux" {
deps.InstallCommands()
}
}
func TestNewDumpWrongCommand(t *testing.T) {
savePGDumpCmd := pg.PGDumpCmd
pg.PGDumpCmd = "xxxx"
Convey("Create new dump with wrong command", t, func() {
dump, err := pg.NewDump(fixtures.Setup())
So(err, ShouldNotBeNil)
So(dump, ShouldBeNil)
})
pg.PGDumpCmd = savePGDumpCmd
}
func TestNewDump(t *testing.T) {
dump, err := pg.NewDump(fixtures.Setup())
Convey("Create new dump", t, func() {
So(err, ShouldBeNil)
So(dump.Options, ShouldNotBeEmpty)
So(dump.Verbose, ShouldBeFalse)
Convey("Public funcs", func() {
dump.ResetOptions()
So(dump.Options, ShouldBeEmpty)
dump.EnableVerbose()
So(dump.Verbose, ShouldBeTrue)
})
})
Convey("Create without binary", t, func() {
savePGDumpCmd := pg.PGDumpCmd
pg.PGDumpCmd = ""
dump.ResetOptions()
dumpBad := dump.Exec(pg.ExecOptions{StreamPrint: false})
So(dumpBad.Error, ShouldNotBeNil)
pg.PGDumpCmd = savePGDumpCmd
})
}
func TestDump(t *testing.T) {
Convey("Create standard dump", t, func() {
pgSetup := fixtures.Setup()
dump, err := pg.NewDump(pgSetup)
So(err, ShouldBeNil)
dump.SetFileName("test-dump.sql.tar.gz")
result := dump.Exec(pg.ExecOptions{StreamPrint: false})
So(result.Error, ShouldBeNil)
So(result.FullCommand, ShouldNotBeEmpty)
So(result.File, ShouldNotBeEmpty)
So(result.Mine, ShouldEqual, "application/x-tar")
So(result.FullCommand, ShouldEqual, fmt.Sprintf(
"--no-owner --no-acl --clean --blob --dbname=%s --host=%s --port=%d --username=%s -Fc -f%s",
pgSetup.DB,
pgSetup.Host,
pgSetup.Port,
pgSetup.Username,
result.File))
})
Convey("Create dump with ignore table", t, func() {
pgSetup := fixtures.Setup()
dump, err := pg.NewDump(pgSetup)
So(err, ShouldBeNil)
So(dump.IgnoreTableDataToString(), ShouldBeEmpty)
dump.IgnoreTableData = append(dump.IgnoreTableData, "public.test_1")
So(dump.IgnoreTableDataToString(), ShouldNotBeEmpty)
dump.IgnoreTableData = append(dump.IgnoreTableData, "public.test_1")
result := dump.Exec(pg.ExecOptions{StreamPrint: false})
So(result.Error, ShouldBeNil)
So(result.FullCommand, ShouldNotBeEmpty)
So(result.File, ShouldNotBeEmpty)
So(result.Mine, ShouldEqual, "application/x-tar")
So(result.FullCommand, ShouldEqual, fmt.Sprintf(
"--no-owner --no-acl --clean --blob --dbname=%s --host=%s --port=%d --username=%s -Fc --exclude-table-data=public.test_1 --exclude-table-data=public.test_1 -f%s",
pgSetup.DB,
pgSetup.Host,
pgSetup.Port,
pgSetup.Username,
result.File))
})
Convey("Create dump with log and custom format", t, func() {
pgSetup := fixtures.Setup()
dump, err := pg.NewDump(pgSetup)
So(err, ShouldBeNil)
dump.EnableVerbose()
dump.SetupFormat("t")
dump.SetPath("./")
result := dump.Exec(pg.ExecOptions{StreamPrint: true, StreamDestination: os.Stdout})
So(result.Error, ShouldBeNil)
So(result.FullCommand, ShouldNotBeEmpty)
So(result.File, ShouldNotBeEmpty)
So(result.Mine, ShouldEqual, "application/x-tar")
So(result.FullCommand, ShouldEqual, fmt.Sprintf(
"--no-owner --no-acl --clean --blob --dbname=%s --host=%s --port=%d --username=%s -Ft -v -f%s",
pgSetup.DB,
pgSetup.Host,
pgSetup.Port,
pgSetup.Username,
dump.Path+result.File))
})
Convey("Create failed dump", t, func() {
dump, err := pg.NewDump(&pg.Postgres{})
So(err, ShouldBeNil)
result := dump.Exec(pg.ExecOptions{StreamPrint: false})
So(result.Error, ShouldNotBeNil)
So(result.FullCommand, ShouldEqual, fmt.Sprintf("--no-owner --no-acl --clean --blob -Fc -f%s", result.File))
})
}