This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
sheets.json
executable file
·264 lines (264 loc) · 9.62 KB
/
sheets.json
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
{
"setup":{
"license":"Licensed under the Apache License, Version 2.0",
"copyright":"Copyright 2020 Google LLC"
},
"tasks":[
{ "test": {
"__comment__":"Check if template accessible, in case version changes. Access by membership: starthinker-assets@googlegroups.com",
"auth":"user",
"sheets": {
"sheet":"https://docs.google.com/spreadsheets/d/1DhOoCOC7hf3lUckXWG4ELfZhH28Rsxr74sfhc713T3A/",
"tab":"Sheet_Template",
"range":"A1:C",
"values":[
["Animal", "Age", "Weight ( lbs )"],
["dog", 7, 67],
["cat", 5, 1.5],
["bird", 12, 0.44],
["lizard", 22, 1],
["dinosaur", 1600, 273.97]
]
}
}},
{ "sheets":{
"__comment__":"Copy the template sheet to the users test sheet. The tab is deleted if exists and re-created.",
"auth":"user",
"template":{
"sheet":"https://docs.google.com/spreadsheets/d/1DhOoCOC7hf3lUckXWG4ELfZhH28Rsxr74sfhc713T3A/",
"tab":"Sheet_Template"
},
"sheet":{"field":{ "name":"test_run_id", "kind":"string", "description":"The sheet to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}},
"tab":"Sheet_Test",
"range":"A1:C",
"delete":true
}},
{ "test": {
"__comment__":"Verify that the copy worked by checking values in the users sheet.",
"auth":"user",
"sheets": {
"sheet":{"field":{ "name":"test_run_id", "kind":"string", "description":"The sheet to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}},
"tab":"Sheet_Test",
"range":"A1:C",
"values":[
["Animal", "Age", "Weight ( lbs )"],
["dog", 7, 67],
["cat", 5, 1.5],
["bird", 12, 0.44],
["lizard", 22, 1],
["dinosaur", 1600, 273.97]
]
}
}},
{ "sheets":{
"__comment__":"Clear a section of the users sheet.",
"auth":"user",
"sheet":{"field":{ "name":"test_run_id", "kind":"string", "description":"The sheet to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}},
"tab":"Sheet_Test",
"range":"A2:B",
"clear":true
}},
{ "test": {
"__comment__":"Verify users sheet was cleared.",
"auth":"user",
"sheets": {
"sheet":{"field":{ "name":"test_run_id", "kind":"string", "description":"The sheet to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}},
"tab":"Sheet_Test",
"range":"A1:C",
"values":[
["Animal", "Age", "Weight ( lbs )"],
[null, null, 67],
[null, null, 1.5],
[null, null, 0.44],
[null, null, 1],
[null, null, 273.97]
]
}
}},
{ "sheets":{
"__comment__":"Write new values to the sheet.",
"auth":"user",
"sheet":{"field":{ "name":"test_run_id", "kind":"string", "description":"The sheet to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}},
"tab":"Sheet_Test",
"range":"A2:B",
"write": {
"values": [
["whale", 1],
["zebra", 2],
["fish", 3],
["crab", 4],
["lion", 5]
]
}
}},
{ "test": {
"__comment__":"Verify that the write worked by checking values in the users sheet.",
"auth":"user",
"sheets": {
"sheet":{"field":{ "name":"test_run_id", "kind":"string", "description":"The sheet to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}},
"tab":"Sheet_Test",
"range":"A1:C",
"values":[
["Animal", "Age", "Weight ( lbs )"],
["whale", 1, 67],
["zebra", 2, 1.5],
["fish", 3, 0.44],
["crab", 4, 1],
["lion", 5, 273.97]
]
}
}},
{ "sheets":{
"__comment__":"Write over values in the sheet.",
"auth":"user",
"sheet":{"field":{ "name":"test_run_id", "kind":"string", "description":"The sheet to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}},
"tab":"Sheet_Test",
"range":"A2:C",
"write": {
"values": [
["horse", 6, 22],
["monkey", 7, 55.5]
]
}
}},
{ "test": {
"__comment__":"Verify that the write worked by checking values in the users sheet.",
"auth":"user",
"sheets": {
"sheet":{"field":{ "name":"test_run_id", "kind":"string", "description":"The sheet to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}},
"tab":"Sheet_Test",
"range":"A1:C",
"values":[
["Animal", "Age", "Weight ( lbs )"],
["horse", 6, 22],
["monkey", 7, 55.5],
["fish", 3, 0.44],
["crab", 4, 1],
["lion", 5, 273.97]
]
}
}},
{ "sheets":{
"__comment__":"Append values to the sheet.",
"auth":"user",
"sheet":{"field":{ "name":"test_run_id", "kind":"string", "description":"The sheet to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}},
"tab":"Sheet_Test",
"range":"A2:C",
"append": {
"values": [
["mouse", 1, 1],
["bat", 2, 2.5]
]
}
}},
{ "test": {
"__comment__":"Verify that the append worked by checking values in the users sheet.",
"auth":"user",
"sheets": {
"sheet":{"field":{ "name":"test_run_id", "kind":"string", "description":"The sheet to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}},
"tab":"Sheet_Test",
"range":"A1:C",
"values":[
["Animal", "Age", "Weight ( lbs )"],
["horse", 6, 22],
["monkey", 7, 55.5],
["fish", 3, 0.44],
["crab", 4, 1],
["lion", 5, 273.97],
["mouse", 1, 1],
["bat", 2, 2.5]
]
}
}},
{ "dataset":{
"__comment__":"Create a dataset for testing.",
"auth":"service",
"dataset":{"field":{ "name":"test_run_id", "kind":"string", "description":"The dataset to use for the test.", "prefix":"StarThinker_Test_Sheets_", "default": "Manual"}},
"clear":true
}},
{ "sheets":{
"__comment__":"Move sheet data to bigquery table.",
"auth":"user",
"sheet":"https://docs.google.com/spreadsheets/d/1DhOoCOC7hf3lUckXWG4ELfZhH28Rsxr74sfhc713T3A/",
"tab":"Sheet_Template",
"range":"A1:C",
"header":true,
"out":{
"auth": "service",
"bigquery":{
"dataset":{"field":{ "name":"test_run_id", "kind":"string", "description":"The dataset to use for the test.", "prefix":"StarThinker_Test_Sheets_", "default": "Manual"}},
"table":"Sheet_To_BigQuery",
"schema":[
{ "name":"Animal", "type":"STRING" },
{ "name":"Age", "type":"INTEGER" },
{ "name":"Weight_lbs", "type":"FLOAT" }
]
}
}
}},
{ "test": {
"__comment__":"Verify that the data was moved with the proper schema and values.",
"auth":"service",
"bigquery":{
"dataset":{"field":{ "name":"test_run_id", "kind":"string", "description":"The dataset to use for the test.", "prefix":"StarThinker_Test_Sheets_", "default": "Manual"}},
"table":"Sheet_To_BigQuery",
"schema":[
{"name": "Animal", "type": "STRING"},
{"name": "Age", "type": "INTEGER"},
{"name": "Weight_lbs", "type": "FLOAT"}
],
"values":[
["dog", 7, 67.0],
["cat", 5, 1.5],
["bird", 12, 0.44],
["lizard", 22, 1.0],
["dinosaur", 1600, 273.97]
]
}
}},
{ "sheets":{
"auth":"user",
"sheet":{"field":{ "name":"test_run_id", "kind":"string", "description":"The sheet to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}},
"tab":"BigQuery_Test",
"delete":true,
"template":{}
}},
{ "bigquery": {
"auth":"service",
"from":{
"dataset":{"field":{ "name":"test_run_id", "kind":"string", "description":"The dataset to use for the test.", "prefix":"StarThinker_Test_Sheets_", "default": "Manual"}},
"query":"SELECT * FROM {test_dataset}.Sheet_To_BigQuery WHERE Animal IN ('dog', 'cat') ORDER BY Animal;",
"parameters": {
"test_dataset": {"field":{ "name":"test_run_id", "kind":"string", "description":"The dataset to use for the test.", "prefix":"StarThinker_Test_Sheets_", "default": "Manual"}}
}
},
"to":{
"auth": "user",
"sheet":{"field":{ "name":"test_run_id", "kind":"string", "description":"The sheet to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}},
"tab":"BigQuery_Test",
"range":"A1:C"
}
}},
{ "test": {
"auth":"user",
"sheets": {
"sheet":{"field":{ "name":"test_run_id", "kind":"string", "description":"The sheet to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}},
"tab":"BigQuery_Test",
"range":"A1:C",
"values":[
["cat", 5, 1.5],
["dog", 7, 67]
]
}
}},
{ "drive":{
"auth":"user",
"delete":{"field":{ "name":"test_run_id", "kind":"string", "description":"The filename to use for the test.", "prefix":"StarThinker Test Sheets ", "default": "Manual"}}
}},
{ "dataset":{
"auth":"service",
"dataset":{"field":{ "name":"test_run_id", "kind":"string", "description":"The dataset to use for the test.", "prefix":"StarThinker_Test_Sheets_", "default": "Manual"}},
"delete":true
}}
]
}