-
Notifications
You must be signed in to change notification settings - Fork 25
/
example_test.go
112 lines (95 loc) · 2.7 KB
/
example_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
// Copyright 2019 Masahiro Sano
//
// 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
//
// https://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 fake_test
import (
"context"
"log"
"strings"
"cloud.google.com/go/spanner"
admindatabasev1 "cloud.google.com/go/spanner/admin/database/apiv1"
databasepb "cloud.google.com/go/spanner/admin/database/apiv1/databasepb"
"github.com/gcpug/handy-spanner/fake"
"google.golang.org/api/option"
)
func ExampleSpannerClient() {
ctx := context.Background()
dbName := "projects/fake/instances/fake/databases/fake"
// Run fake server
srv, conn, err := fake.Run()
if err != nil {
log.Fatal(err)
}
defer srv.Stop()
defer conn.Close()
// Prepare spanner client
client, err := spanner.NewClient(ctx, dbName, option.WithGRPCConn(conn))
if err != nil {
log.Fatalf("failed to connect fake spanner server: %v", err)
}
// Use the client
_, _ = client.Apply(ctx, []*spanner.Mutation{
spanner.Insert("Test",
[]string{"ColA", "ColB"},
[]interface{}{"foo", 100},
),
})
// output:
}
func ExampleAdminClient() {
ctx := context.Background()
dbName := "projects/fake/instances/fake/databases/fake"
stmts := []string{
`CREATE TABLE Table1 ( Id STRING(MAX) NOT NULL ) PRIMARY KEY (Id)`,
`CREATE TABLE Table2 ( Id TIMESTAMP NOT NULL ) PRIMARY KEY (Id)`,
}
// Run fake server
srv, conn, err := fake.Run()
if err != nil {
log.Fatal(err)
}
defer srv.Stop()
// Prepare spanner client
adminclient, err := admindatabasev1.NewDatabaseAdminClient(ctx, option.WithGRPCConn(conn))
if err != nil {
log.Fatalf("failed to connect fake spanner server: %v", err)
}
// Use the client
_, err = adminclient.UpdateDatabaseDdl(ctx, &databasepb.UpdateDatabaseDdlRequest{
Database: dbName,
Statements: stmts,
})
if err != nil {
log.Fatal(err)
}
// output:
}
func ExampleApplyDDL() {
ctx := context.Background()
dbName := "projects/fake/instances/fake/databases/fake"
schema := `
CREATE TABLE Table1 ( Id STRING(MAX) NOT NULL ) PRIMARY KEY (Id);
CREATE TABLE Table2 ( Id TIMESTAMP NOT NULL ) PRIMARY KEY (Id);
`
// Run fake server
srv, _, err := fake.Run()
if err != nil {
log.Fatal(err)
}
defer srv.Stop()
err = srv.ParseAndApplyDDL(ctx, dbName, strings.NewReader(schema))
if err != nil {
log.Fatal(err)
}
// output:
}