2023-08-07 13:14:25 +00:00
package template
import (
2023-09-07 14:36:06 +00:00
"context"
2023-08-07 13:14:25 +00:00
"testing"
"github.com/databricks/cli/libs/jsonschema"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
2023-09-07 14:36:06 +00:00
func testConfig ( t * testing . T ) * config {
c , err := newConfig ( context . Background ( ) , "./testdata/config-test-schema/test-schema.json" )
2023-08-07 13:14:25 +00:00
require . NoError ( t , err )
2023-09-07 14:36:06 +00:00
return c
2023-08-07 13:14:25 +00:00
}
func TestTemplateConfigAssignValuesFromFile ( t * testing . T ) {
2023-09-07 14:36:06 +00:00
c := testConfig ( t )
2023-08-07 13:14:25 +00:00
err := c . assignValuesFromFile ( "./testdata/config-assign-from-file/config.json" )
assert . NoError ( t , err )
assert . Equal ( t , int64 ( 1 ) , c . values [ "int_val" ] )
assert . Equal ( t , float64 ( 2 ) , c . values [ "float_val" ] )
assert . Equal ( t , true , c . values [ "bool_val" ] )
assert . Equal ( t , "hello" , c . values [ "string_val" ] )
}
func TestTemplateConfigAssignValuesFromFileForInvalidIntegerValue ( t * testing . T ) {
2023-09-07 14:36:06 +00:00
c := testConfig ( t )
2023-08-07 13:14:25 +00:00
err := c . assignValuesFromFile ( "./testdata/config-assign-from-file-invalid-int/config.json" )
2023-09-07 14:36:06 +00:00
assert . EqualError ( t , err , "failed to load config from file ./testdata/config-assign-from-file-invalid-int/config.json: failed to parse property int_val: cannot convert \"abc\" to an integer" )
2023-08-07 13:14:25 +00:00
}
func TestTemplateConfigAssignValuesFromFileDoesNotOverwriteExistingConfigs ( t * testing . T ) {
2023-09-07 14:36:06 +00:00
c := testConfig ( t )
c . values = map [ string ] any {
"string_val" : "this-is-not-overwritten" ,
2023-08-07 13:14:25 +00:00
}
err := c . assignValuesFromFile ( "./testdata/config-assign-from-file/config.json" )
assert . NoError ( t , err )
assert . Equal ( t , int64 ( 1 ) , c . values [ "int_val" ] )
assert . Equal ( t , float64 ( 2 ) , c . values [ "float_val" ] )
assert . Equal ( t , true , c . values [ "bool_val" ] )
assert . Equal ( t , "this-is-not-overwritten" , c . values [ "string_val" ] )
}
func TestTemplateConfigAssignDefaultValues ( t * testing . T ) {
2023-09-07 14:36:06 +00:00
c := testConfig ( t )
2023-08-07 13:14:25 +00:00
err := c . assignDefaultValues ( )
assert . NoError ( t , err )
assert . Len ( t , c . values , 2 )
assert . Equal ( t , "abc" , c . values [ "string_val" ] )
assert . Equal ( t , int64 ( 123 ) , c . values [ "int_val" ] )
}
func TestTemplateConfigValidateValuesDefined ( t * testing . T ) {
2023-09-07 14:36:06 +00:00
c := testConfig ( t )
c . values = map [ string ] any {
"int_val" : 1 ,
"float_val" : 1.0 ,
"bool_val" : false ,
2023-08-07 13:14:25 +00:00
}
2023-09-07 14:36:06 +00:00
err := c . validate ( )
assert . EqualError ( t , err , "validation for template input parameters failed. no value provided for required property string_val" )
2023-08-07 13:14:25 +00:00
}
func TestTemplateConfigValidateTypeForValidConfig ( t * testing . T ) {
2023-09-07 14:36:06 +00:00
c := testConfig ( t )
c . values = map [ string ] any {
"int_val" : 1 ,
"float_val" : 1.1 ,
"bool_val" : true ,
"string_val" : "abcd" ,
2023-08-07 13:14:25 +00:00
}
2023-09-07 14:36:06 +00:00
err := c . validate ( )
2023-08-07 13:14:25 +00:00
assert . NoError ( t , err )
}
func TestTemplateConfigValidateTypeForUnknownField ( t * testing . T ) {
2023-09-07 14:36:06 +00:00
c := testConfig ( t )
c . values = map [ string ] any {
"unknown_prop" : 1 ,
"int_val" : 1 ,
"float_val" : 1.1 ,
"bool_val" : true ,
"string_val" : "abcd" ,
2023-08-07 13:14:25 +00:00
}
2023-09-07 14:36:06 +00:00
err := c . validate ( )
assert . EqualError ( t , err , "validation for template input parameters failed. property unknown_prop is not defined in the schema" )
2023-08-07 13:14:25 +00:00
}
func TestTemplateConfigValidateTypeForInvalidType ( t * testing . T ) {
2023-09-07 14:36:06 +00:00
c := testConfig ( t )
c . values = map [ string ] any {
"int_val" : "this-should-be-an-int" ,
"float_val" : 1.1 ,
"bool_val" : true ,
"string_val" : "abcd" ,
2023-08-07 13:14:25 +00:00
}
2023-09-07 14:36:06 +00:00
err := c . validate ( )
assert . EqualError ( t , err , "validation for template input parameters failed. incorrect type for property int_val: expected type integer, but value is \"this-should-be-an-int\"" )
2023-08-07 13:14:25 +00:00
}
2023-08-15 14:28:04 +00:00
func TestTemplateValidateSchema ( t * testing . T ) {
var err error
toSchema := func ( s string ) * jsonschema . Schema {
return & jsonschema . Schema {
Properties : map [ string ] * jsonschema . Schema {
"foo" : {
Type : jsonschema . Type ( s ) ,
} ,
} ,
}
}
err = validateSchema ( toSchema ( "string" ) )
assert . NoError ( t , err )
err = validateSchema ( toSchema ( "boolean" ) )
assert . NoError ( t , err )
err = validateSchema ( toSchema ( "number" ) )
assert . NoError ( t , err )
err = validateSchema ( toSchema ( "integer" ) )
assert . NoError ( t , err )
err = validateSchema ( toSchema ( "object" ) )
assert . EqualError ( t , err , "property type object is not supported by bundle templates" )
err = validateSchema ( toSchema ( "array" ) )
assert . EqualError ( t , err , "property type array is not supported by bundle templates" )
}
2023-09-08 12:07:22 +00:00
func TestTemplateEnumValidation ( t * testing . T ) {
schema := jsonschema . Schema {
Properties : map [ string ] * jsonschema . Schema {
"abc" : {
Type : "integer" ,
Enum : [ ] any { 1 , 2 , 3 , 4 } ,
} ,
} ,
}
c := & config {
schema : & schema ,
values : map [ string ] any {
"abc" : 5 ,
} ,
}
assert . EqualError ( t , c . validate ( ) , "validation for template input parameters failed. expected value of property abc to be one of [1 2 3 4]. Found: 5" )
c = & config {
schema : & schema ,
values : map [ string ] any {
"abc" : 4 ,
} ,
}
assert . NoError ( t , c . validate ( ) )
}