-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbase_test.go
144 lines (138 loc) · 3.02 KB
/
base_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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package v8
import (
"reflect"
"testing"
)
func TestParseConnectionString(t *testing.T) {
type args struct {
connectingString string
}
tests := []struct {
name string
args args
wantIb *Infobase
wantErr bool
}{
{
"file",
args{"File=./file_ib;Locale=ru_RU"},
&Infobase{
Connect: FilePath{File: "./file_ib"},
Locale: "ru_RU",
},
false,
},
{
"server",
args{"Srvr=test_server;Ref=test_ib;"},
&Infobase{
Connect: ServerPath{
Server: "test_server",
Ref: "test_ib",
},
},
false,
},
{
"no file or server",
args{"FFF=./file_ib;Locale=ru_RU"},
nil,
true,
},
{
"ignore other values",
args{"/UC 112;/UseTemplate;File=./file_ib;Locale=ru_RU"},
&Infobase{
Connect: FilePath{File: "./file_ib"},
Locale: "ru_RU",
},
false,
},
{
"full server",
args{"Srvr=test_server;Ref=test_ib;Usr=User;Pwd=Password;Prmod=1;LicDstr=Y"},
&Infobase{
Connect: ServerPath{
Server: "test_server",
Ref: "test_ib",
},
User: "User",
Password: "Password",
AllowServerLicenses: true,
UsePrivilegedMode: true,
},
false,
},
{
"full file",
args{"File=./file_ib;Locale=ru_RU;Usr=User;Pwd=Password;Prmod=1;LicDstr=Y"},
&Infobase{
Connect: FilePath{
File: "./file_ib",
},
User: "User",
Password: "Password",
AllowServerLicenses: true,
UsePrivilegedMode: true,
Locale: "ru_RU",
},
false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
gotIb, err := ParseConnectionString(tt.args.connectingString)
if (err != nil) != tt.wantErr {
t.Errorf("ParseConnectionString() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(gotIb, tt.wantIb) {
t.Errorf("ParseConnectionString() gotIb = %v, want %v", gotIb, tt.wantIb)
}
})
}
}
func TestInfobase_ConnectionString(t *testing.T) {
type fields struct {
Connect ConnectPath
User string
Password string
AllowServerLicenses bool
SeparatorList DatabaseSeparatorList
UsePrivilegedMode bool
Locale string
}
tests := []struct {
name string
fields fields
want string
}{
{
"simple file",
fields{
Connect: FilePath{
File: "./test_ib",
},
User: "user",
Password: "password",
},
"/IBConnectionString File='./test_ib';Usr=user;Pwd=password",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
ib := Infobase{
Connect: tt.fields.Connect,
User: tt.fields.User,
Password: tt.fields.Password,
AllowServerLicenses: tt.fields.AllowServerLicenses,
SeparatorList: tt.fields.SeparatorList,
UsePrivilegedMode: tt.fields.UsePrivilegedMode,
Locale: tt.fields.Locale,
}
if got := ib.ConnectionString(); got != tt.want {
t.Errorf("ConnectionString() = %v, want %v", got, tt.want)
}
})
}
}