mirror of https://github.com/databricks/cli.git
acc: Add a couple of error tests for 'bundle init' (#2233)
This captures how we log errors related to subprocess run and what does the output look like.
This commit is contained in:
parent
6e8f0ea8af
commit
b7dd70b8b3
|
@ -0,0 +1,3 @@
|
||||||
|
Error: not a bundle template: expected to find a template schema file at databricks_template_schema.json
|
||||||
|
|
||||||
|
Exit code: 1
|
|
@ -0,0 +1,2 @@
|
||||||
|
export NO_COLOR=1
|
||||||
|
$CLI bundle init /DOES/NOT/EXIST
|
|
@ -0,0 +1 @@
|
||||||
|
Badness = 'The error message should include full path: "expected to find a template schema file at databricks_template_schema.json"'
|
|
@ -0,0 +1,5 @@
|
||||||
|
Error: git clone failed: git clone https://invalid-domain-123.databricks.com/hello/world $TMPDIR_GPARENT/world-123456 --no-tags --depth=1: exit status 128. Cloning into '$TMPDIR_GPARENT/world-123456'...
|
||||||
|
fatal: unable to access 'https://invalid-domain-123.databricks.com/hello/world/': Could not resolve host: invalid-domain-123.databricks.com
|
||||||
|
|
||||||
|
|
||||||
|
Exit code: 1
|
|
@ -0,0 +1,2 @@
|
||||||
|
export NO_COLOR=1
|
||||||
|
$CLI bundle init https://invalid-domain-123.databricks.com/hello/world
|
|
@ -0,0 +1,7 @@
|
||||||
|
[[Repls]]
|
||||||
|
Old = '\\'
|
||||||
|
New = '/'
|
||||||
|
|
||||||
|
[[Repls]]
|
||||||
|
Old = '/world-[0-9]+'
|
||||||
|
New = '/world-123456'
|
Loading…
Reference in New Issue