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
/
drive.json
executable file
·62 lines (62 loc) · 2.83 KB
/
drive.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
{
"setup":{
"license":"Licensed under the Apache License, Version 2.0",
"copyright":"Copyright 2020 Google LLC"
},
"tasks":[
{ "drive":{
"comment":"Copy a drive file by URL. Contents are not important for this test.",
"auth":"user",
"copy":{
"source":"https://docs.google.com/spreadsheets/d/1DhOoCOC7hf3lUckXWG4ELfZhH28Rsxr74sfhc713T3A/",
"destination":{"field":{ "name":"test_run_id", "kind":"string", "description":"The filename to use for the test.", "prefix":"StarThinker Template: Sheets Test ", "default": "Manual"}}
}
}},
{ "test":{
"comment":"Check if by URL copy exists.",
"auth":"user",
"drive":{
"file":{"field":{ "name":"test_run_id", "kind":"string", "description":"The filename to use for the test.", "prefix":"StarThinker Template: Sheets Test ", "default": "Manual"}}
}
}},
{ "drive":{
"auth":"user",
"comment":"Copy a drive file by name. Contents are not important for this test.",
"copy":{
"source":{"field":{ "name":"test_run_id", "kind":"string", "description":"The filename to use for the test.", "prefix":"StarThinker Template: Sheets Test ", "default": "Manual"}},
"destination":{"field":{ "name":"test_run_id", "kind":"string", "description":"The filename to use for the test.", "prefix":"StarThinker Test Drive ", "default": "Manual"}}
}
}},
{ "test":{
"comment":"Check if by name copy exists.",
"auth":"user",
"drive":{
"file":{"field":{ "name":"test_run_id", "kind":"string", "description":"The filename to use for the test.", "prefix":"StarThinker Test Drive ", "default": "Manual"}}
}
}},
{ "drive":{
"comment":"Delete drive file artifact from URL test by name.",
"auth":"user",
"delete":{"field":{ "name":"test_run_id", "kind":"string", "description":"The filename to use for the test.", "prefix":"StarThinker Template: Sheets Test ", "default": "Manual"}}
}},
{ "test":{
"comment":"Check if file was deleted.",
"auth":"user",
"drive":{
"not_file":{"field":{ "name":"test_run_id", "kind":"string", "description":"The filename to use for the test.", "prefix":"StarThinker Template: Sheets Test ", "default": "Manual"}}
}
}},
{ "drive":{
"comment":"Delete drive file artifact from name test by name.",
"auth":"user",
"delete":{"field":{ "name":"test_run_id", "kind":"string", "description":"The filename to use for the test.", "prefix":"StarThinker Test Drive ", "default": "Manual"}}
}},
{ "test":{
"comment":"Check if file was deleted.",
"auth":"user",
"drive":{
"not_file":{"field":{ "name":"test_run_id", "kind":"string", "description":"The filename to use for the test.", "prefix":"StarThinker Test Drive ", "default": "Manual"}}
}
}}
]
}