mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-15 11:13:09 -06:00
479c6b2466
The "config" package is no longer used and will be removed as part of the 0.12 release cleanup. Since configschema is part of the "new world" of configuration modelling, it makes more sense for it to live as a subdirectory of the newer "configs" package.
80 lines
2.2 KiB
Go
80 lines
2.2 KiB
Go
package terraform
|
|
|
|
import (
|
|
"github.com/zclconf/go-cty/cty"
|
|
|
|
"github.com/hashicorp/terraform/configs/configschema"
|
|
)
|
|
|
|
// simpleMockComponentFactory returns a component factory pre-configured with
|
|
// one provider and one provisioner, both called "test".
|
|
//
|
|
// The provider is built with simpleMockProvider and the provisioner with
|
|
// simpleMockProvisioner, and all schemas used in both are as built by
|
|
// function simpleTestSchema.
|
|
//
|
|
// Each call to this function produces an entirely-separate set of objects,
|
|
// so the caller can feel free to modify the returned value to further
|
|
// customize the mocks contained within.
|
|
func simpleMockComponentFactory() *basicComponentFactory {
|
|
// We create these out here, rather than in the factory functions below,
|
|
// because we want each call to the factory to return the _same_ instance,
|
|
// so that test code can customize it before passing this component
|
|
// factory into real code under test.
|
|
provider := simpleMockProvider()
|
|
provisioner := simpleMockProvisioner()
|
|
return &basicComponentFactory{
|
|
providers: map[string]ResourceProviderFactory{
|
|
"test": func() (ResourceProvider, error) {
|
|
return provider, nil
|
|
},
|
|
},
|
|
provisioners: map[string]ResourceProvisionerFactory{
|
|
"test": func() (ResourceProvisioner, error) {
|
|
return provisioner, nil
|
|
},
|
|
},
|
|
}
|
|
|
|
}
|
|
|
|
// simpleTestSchema returns a block schema that contains a few optional
|
|
// attributes for use in tests.
|
|
//
|
|
// The returned schema contains the following optional attributes:
|
|
//
|
|
// test_string, of type string
|
|
// test_number, of type number
|
|
// test_bool, of type bool
|
|
// test_list, of type list(string)
|
|
// test_map, of type map(string)
|
|
//
|
|
// Each call to this function produces an entirely new schema instance, so
|
|
// callers can feel free to modify it once returned.
|
|
func simpleTestSchema() *configschema.Block {
|
|
return &configschema.Block{
|
|
Attributes: map[string]*configschema.Attribute{
|
|
"test_string": {
|
|
Type: cty.String,
|
|
Optional: true,
|
|
},
|
|
"test_number": {
|
|
Type: cty.String,
|
|
Optional: true,
|
|
},
|
|
"test_bool": {
|
|
Type: cty.String,
|
|
Optional: true,
|
|
},
|
|
"test_list": {
|
|
Type: cty.String,
|
|
Optional: true,
|
|
},
|
|
"test_map": {
|
|
Type: cty.String,
|
|
Optional: true,
|
|
},
|
|
},
|
|
}
|
|
}
|