-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfixture.go
236 lines (205 loc) · 5.01 KB
/
fixture.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
package fixture
import (
"context"
"encoding/binary"
"io/ioutil"
"math"
"path/filepath"
"time"
"cloud.google.com/go/bigtable"
"github.com/pkg/errors"
"gopkg.in/yaml.v2"
)
// error variables
var (
ErrFailReadFile = errors.New("failed to read file")
ErrInvalidFixture = errors.New("invalid fixture file format")
ErrUnknownFileExt = errors.New("unknown file ext")
)
// Fixture provide fixture methods
type Fixture struct {
client *bigtable.Client
adminClient *bigtable.AdminClient
marshaler Marshaler
}
// QueryModelWithYaml represent fixture yaml file mapper
type QueryModelWithYaml struct {
Table string `yaml:"table"`
ColumnFamilies []ColumnFamilies `yaml:"column_families"`
}
// ColumnFamilies represent mapping ColumnFamilies with the fixture
type ColumnFamilies struct {
Family string `yaml:"family"`
Columns []Columns `yaml:"columns"`
}
// Columns represent mapping Columns with the fixture
type Columns struct {
Key string `yaml:"key"`
Rows map[string]interface{} `yaml:"rows"`
Version Version `yaml:"version"`
}
// Version represent specific timestamp
type Version struct {
time.Time
}
var versionFormat = "2006-01-02 15:04:05 -07:00"
// UnmarshalYAML implemented Unmarshaler of the Version
func (v *Version) UnmarshalYAML(unmarshal func(interface{}) error) error {
var s string
err := unmarshal(&s)
if err != nil {
return err
}
t, err := time.Parse(versionFormat, s)
if err != nil {
return err
}
v.Time = t
return nil
}
// New returns initialized Fixture
func New(project, instance string, opts ...Option) (*Fixture, error) {
ctx := context.Background()
client, err := bigtable.NewClient(ctx, project, instance)
if err != nil {
return nil, err
}
adminClient, err := bigtable.NewAdminClient(ctx, project, instance)
if err != nil {
return nil, err
}
f := &Fixture{
client: client,
adminClient: adminClient,
marshaler: MarshalBigEndian,
}
for _, opt := range opts {
opt(f)
}
return f, nil
}
// Option represents functionl-option-pattern
type Option func(*Fixture)
// WithMarshaler setting the Marshaler
func WithMarshaler(m Marshaler) Option {
return func(f *Fixture) {
f.marshaler = m
}
}
// Load load .yml script
func (f *Fixture) Load(path string) error {
data, err := getFileData(path)
if err != nil {
return err
}
ext := filepath.Ext(path)
switch ext {
case ".yml", ".yaml":
return f.loadYaml(data)
default:
return errors.Wrapf(ErrUnknownFileExt, "ext:%s, ", ext)
}
}
func (f *Fixture) loadYaml(file []byte) error {
model := QueryModelWithYaml{}
err := yaml.Unmarshal(file, &model)
if err != nil {
return errors.Wrapf(ErrInvalidFixture, "%v:, ", err)
}
err = f.clearTable(model.Table)
if err != nil {
return err
}
return f.exec(model)
}
func (f *Fixture) clearTable(table string) error {
ctx := context.Background()
tables, err := f.adminClient.Tables(ctx)
if err != nil {
return err
}
for _, t := range tables {
if t == table {
return f.adminClient.DeleteTable(ctx, table)
}
}
return nil
}
func (f *Fixture) exec(model QueryModelWithYaml) error {
now := time.Now()
ctx := context.Background()
if err := f.adminClient.CreateTable(ctx, model.Table); err != nil {
return err
}
table := f.client.Open(model.Table)
for _, cf := range model.ColumnFamilies {
fam := cf.Family
if err := f.adminClient.CreateColumnFamily(ctx, model.Table, fam); err != nil {
return err
}
for _, cs := range cf.Columns {
var (
muts = make([]*bigtable.Mutation, 0, len(cs.Rows))
keys = make([]string, 0, len(cs.Rows))
)
for q, v := range cs.Rows {
var t time.Time
if cs.Version.IsZero() {
t = now
} else {
t = cs.Version.Time
}
b, err := f.marshaler(v)
if err != nil {
return err
}
mut := bigtable.NewMutation()
mut.Set(fam, q, bigtable.Time(t), b)
muts = append(muts, mut)
keys = append(keys, cs.Key)
}
rowErrs, err := table.ApplyBulk(ctx, keys, muts)
if err != nil {
return err
}
for _, err := range rowErrs {
if err != nil {
return err
}
}
}
}
return nil
}
func getFileData(path string) ([]byte, error) {
data, err := ioutil.ReadFile(path)
if err != nil {
return nil, errors.Wrap(ErrFailReadFile, err.Error())
}
return data, nil
}
// Marshaler provides endocing value
type Marshaler func(v interface{}) ([]byte, error)
// MarshalBigEndian returns the BigEndian byte encoding of v
func MarshalBigEndian(v interface{}) ([]byte, error) {
b := make([]byte, 8)
switch t := v.(type) {
case int:
binary.BigEndian.PutUint64(b, uint64(int64(t)))
case int8:
binary.BigEndian.PutUint64(b, uint64(int64(t)))
case int16:
binary.BigEndian.PutUint64(b, uint64(int64(t)))
case int32:
binary.BigEndian.PutUint64(b, uint64(int64(t)))
case int64:
binary.BigEndian.PutUint64(b, uint64(t))
case float32:
binary.BigEndian.PutUint64(b, math.Float64bits(float64(t)))
case float64:
binary.BigEndian.PutUint64(b, math.Float64bits(t))
default:
return []byte(t.(string)), nil
}
return b, nil
}