mirror of https://github.com/databricks/cli.git
85 lines
1.5 KiB
Go
85 lines
1.5 KiB
Go
package run
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/databricks/cli/bundle"
|
|
"github.com/databricks/cli/bundle/config"
|
|
"github.com/databricks/cli/bundle/config/resources"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestFindNoResources(t *testing.T) {
|
|
b := &bundle.Bundle{
|
|
Config: config.Root{
|
|
Resources: config.Resources{},
|
|
},
|
|
}
|
|
|
|
_, err := Find(b, "foo")
|
|
assert.ErrorContains(t, err, "bundle defines no resources")
|
|
}
|
|
|
|
func TestFindSingleArg(t *testing.T) {
|
|
b := &bundle.Bundle{
|
|
Config: config.Root{
|
|
Resources: config.Resources{
|
|
Jobs: map[string]*resources.Job{
|
|
"foo": {},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
_, err := Find(b, "foo")
|
|
assert.NoError(t, err)
|
|
}
|
|
|
|
func TestFindSingleArgNotFound(t *testing.T) {
|
|
b := &bundle.Bundle{
|
|
Config: config.Root{
|
|
Resources: config.Resources{
|
|
Jobs: map[string]*resources.Job{
|
|
"foo": {},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
_, err := Find(b, "bar")
|
|
assert.ErrorContains(t, err, "no such resource: bar")
|
|
}
|
|
|
|
func TestFindSingleArgAmbiguous(t *testing.T) {
|
|
b := &bundle.Bundle{
|
|
Config: config.Root{
|
|
Resources: config.Resources{
|
|
Jobs: map[string]*resources.Job{
|
|
"key": {},
|
|
},
|
|
Pipelines: map[string]*resources.Pipeline{
|
|
"key": {},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
_, err := Find(b, "key")
|
|
assert.ErrorContains(t, err, "ambiguous: ")
|
|
}
|
|
|
|
func TestFindSingleArgWithType(t *testing.T) {
|
|
b := &bundle.Bundle{
|
|
Config: config.Root{
|
|
Resources: config.Resources{
|
|
Jobs: map[string]*resources.Job{
|
|
"key": {},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
_, err := Find(b, "jobs.key")
|
|
assert.NoError(t, err)
|
|
}
|