-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdriver_options_test.go
73 lines (56 loc) · 2.16 KB
/
driver_options_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
package fireboltgosdk
import (
"testing"
"github.com/firebolt-db/firebolt-go-sdk/client"
"github.com/firebolt-db/firebolt-go-sdk/utils"
)
func TestDriverOptions(t *testing.T) {
engineUrl := "https://engine.url"
databaseName := "database_name"
accountID := "account-id"
token := "1234567890"
userAgent := "UA Test"
conn := FireboltConnectorWithOptions(
WithEngineUrl(engineUrl),
WithDatabaseName(databaseName),
WithClientParams(accountID, token, userAgent),
)
utils.AssertEqual(conn.engineUrl, engineUrl, t, "engineUrl is invalid")
utils.AssertEqual(conn.cachedParameters["database"], databaseName, t, "databaseName is invalid")
cl, ok := conn.client.(*client.ClientImpl)
utils.AssertEqual(ok, true, t, "client is not *ClientImpl")
connectionAccountID := conn.cachedParameters["account_id"]
utils.AssertEqual(connectionAccountID, accountID, t, "accountID is invalid")
utils.AssertEqual(cl.UserAgent, userAgent, t, "userAgent is invalid")
tok, err := cl.AccessTokenGetter()
if err != nil {
t.Errorf("token getter returned an error: %v", err)
}
utils.AssertEqual(tok, token, t, "token getter returned wrong token")
}
func TestDriverOptionsSeparateClientParams(t *testing.T) {
engineUrl := "https://engine.url"
databaseName := "database_name"
accountID := "account-id"
token := "1234567890"
userAgent := "UA Test"
conn := FireboltConnectorWithOptions(
WithEngineUrl(engineUrl),
WithDatabaseName(databaseName),
WithAccountID(accountID),
WithToken(token),
WithUserAgent(userAgent),
)
utils.AssertEqual(conn.engineUrl, engineUrl, t, "engineUrl is invalid")
utils.AssertEqual(conn.cachedParameters["database"], databaseName, t, "databaseName is invalid")
cl, ok := conn.client.(*client.ClientImpl)
utils.AssertEqual(ok, true, t, "client is not *ClientImpl")
connectionAccountID := conn.cachedParameters["account_id"]
utils.AssertEqual(connectionAccountID, accountID, t, "accountID is invalid")
utils.AssertEqual(cl.UserAgent, userAgent, t, "userAgent is invalid")
tok, err := cl.AccessTokenGetter()
if err != nil {
t.Errorf("token getter returned an error: %v", err)
}
utils.AssertEqual(tok, token, t, "token getter returned wrong token")
}