Documentation ¶
Overview ¶
Package testprovider contains a fully declarative provider for testing.
Index ¶
- type DataSource
- type DataSourceConfigValidator
- type DataSourceWithConfigValidators
- type DataSourceWithConfigure
- type DataSourceWithValidateConfig
- type Provider
- func (p *Provider) Configure(ctx context.Context, req provider.ConfigureRequest, ...)
- func (p *Provider) DataSources(ctx context.Context) []func() datasource.DataSource
- func (p *Provider) Metadata(ctx context.Context, req provider.MetadataRequest, ...)
- func (p *Provider) Resources(ctx context.Context) []func() resource.Resource
- func (p *Provider) Schema(ctx context.Context, req provider.SchemaRequest, resp *provider.SchemaResponse)
- type ProviderConfigValidator
- type ProviderWithConfigValidators
- type ProviderWithMetaSchema
- type ProviderWithValidateConfig
- type Resource
- func (r *Resource) Create(ctx context.Context, req resource.CreateRequest, resp *resource.CreateResponse)
- func (r *Resource) Delete(ctx context.Context, req resource.DeleteRequest, resp *resource.DeleteResponse)
- func (r *Resource) Metadata(ctx context.Context, req resource.MetadataRequest, ...)
- func (r *Resource) Read(ctx context.Context, req resource.ReadRequest, resp *resource.ReadResponse)
- func (r *Resource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse)
- func (r *Resource) Update(ctx context.Context, req resource.UpdateRequest, resp *resource.UpdateResponse)
- type ResourceConfigValidator
- type ResourceWithConfigValidators
- type ResourceWithConfigure
- type ResourceWithConfigureAndImportState
- type ResourceWithConfigureAndModifyPlan
- type ResourceWithConfigureAndUpgradeState
- type ResourceWithImportState
- type ResourceWithModifyPlan
- type ResourceWithUpgradeState
- type ResourceWithValidateConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DataSource ¶
type DataSource struct { // DataSource interface methods MetadataMethod func(context.Context, datasource.MetadataRequest, *datasource.MetadataResponse) ReadMethod func(context.Context, datasource.ReadRequest, *datasource.ReadResponse) SchemaMethod func(context.Context, datasource.SchemaRequest, *datasource.SchemaResponse) }
Declarative datasource.DataSource for unit testing.
func (*DataSource) Metadata ¶ added in v0.13.0
func (d *DataSource) Metadata(ctx context.Context, req datasource.MetadataRequest, resp *datasource.MetadataResponse)
Metadata satisfies the datasource.DataSource interface.
func (*DataSource) Read ¶
func (d *DataSource) Read(ctx context.Context, req datasource.ReadRequest, resp *datasource.ReadResponse)
Read satisfies the datasource.DataSource interface.
func (*DataSource) Schema ¶ added in v0.17.0
func (d *DataSource) Schema(ctx context.Context, req datasource.SchemaRequest, resp *datasource.SchemaResponse)
Schema satisfies the datasource.DataSource interface.
type DataSourceConfigValidator ¶
type DataSourceConfigValidator struct { // DataSourceConfigValidator interface methods DescriptionMethod func(context.Context) string MarkdownDescriptionMethod func(context.Context) string ValidateDataSourceMethod func(context.Context, datasource.ValidateConfigRequest, *datasource.ValidateConfigResponse) }
Declarative datasource.ConfigValidator for unit testing.
func (*DataSourceConfigValidator) Description ¶
func (v *DataSourceConfigValidator) Description(ctx context.Context) string
Description satisfies the datasource.ConfigValidator interface.
func (*DataSourceConfigValidator) MarkdownDescription ¶
func (v *DataSourceConfigValidator) MarkdownDescription(ctx context.Context) string
MarkdownDescription satisfies the datasource.ConfigValidator interface.
func (*DataSourceConfigValidator) ValidateDataSource ¶ added in v0.10.0
func (v *DataSourceConfigValidator) ValidateDataSource(ctx context.Context, req datasource.ValidateConfigRequest, resp *datasource.ValidateConfigResponse)
Validate satisfies the datasource.ConfigValidator interface.
type DataSourceWithConfigValidators ¶
type DataSourceWithConfigValidators struct { *DataSource // DataSourceWithConfigValidators interface methods ConfigValidatorsMethod func(context.Context) []datasource.ConfigValidator }
Declarative datasource.DataSourceWithConfigValidators for unit testing.
func (*DataSourceWithConfigValidators) ConfigValidators ¶
func (p *DataSourceWithConfigValidators) ConfigValidators(ctx context.Context) []datasource.ConfigValidator
ConfigValidators satisfies the datasource.DataSourceWithConfigValidators interface.
type DataSourceWithConfigure ¶ added in v0.12.0
type DataSourceWithConfigure struct { *DataSource // DataSourceWithConfigure interface methods ConfigureMethod func(context.Context, datasource.ConfigureRequest, *datasource.ConfigureResponse) }
Declarative datasource.DataSourceWithConfigure for unit testing.
func (*DataSourceWithConfigure) Configure ¶ added in v0.12.0
func (d *DataSourceWithConfigure) Configure(ctx context.Context, req datasource.ConfigureRequest, resp *datasource.ConfigureResponse)
Configure satisfies the datasource.DataSourceWithConfigure interface.
type DataSourceWithValidateConfig ¶
type DataSourceWithValidateConfig struct { *DataSource // DataSourceWithValidateConfig interface methods ValidateConfigMethod func(context.Context, datasource.ValidateConfigRequest, *datasource.ValidateConfigResponse) }
Declarative datasource.DataSourceWithValidateConfig for unit testing.
func (*DataSourceWithValidateConfig) ValidateConfig ¶
func (p *DataSourceWithValidateConfig) ValidateConfig(ctx context.Context, req datasource.ValidateConfigRequest, resp *datasource.ValidateConfigResponse)
ValidateConfig satisfies the datasource.DataSourceWithValidateConfig interface.
type Provider ¶
type Provider struct { // Provider interface methods MetadataMethod func(context.Context, provider.MetadataRequest, *provider.MetadataResponse) ConfigureMethod func(context.Context, provider.ConfigureRequest, *provider.ConfigureResponse) SchemaMethod func(context.Context, provider.SchemaRequest, *provider.SchemaResponse) DataSourcesMethod func(context.Context) []func() datasource.DataSource ResourcesMethod func(context.Context) []func() resource.Resource }
Declarative provider.Provider for unit testing.
func (*Provider) Configure ¶
func (p *Provider) Configure(ctx context.Context, req provider.ConfigureRequest, resp *provider.ConfigureResponse)
Configure satisfies the provider.Provider interface.
func (*Provider) DataSources ¶ added in v0.12.0
func (p *Provider) DataSources(ctx context.Context) []func() datasource.DataSource
DataSources satisfies the provider.Provider interface.
func (*Provider) Metadata ¶ added in v1.0.0
func (p *Provider) Metadata(ctx context.Context, req provider.MetadataRequest, resp *provider.MetadataResponse)
Metadata satisfies the provider.Provider interface.
func (*Provider) Schema ¶ added in v0.17.0
func (p *Provider) Schema(ctx context.Context, req provider.SchemaRequest, resp *provider.SchemaResponse)
Schema satisfies the provider.Provider interface.
type ProviderConfigValidator ¶
type ProviderConfigValidator struct { // ConfigValidator interface methods DescriptionMethod func(context.Context) string MarkdownDescriptionMethod func(context.Context) string ValidateProviderMethod func(context.Context, provider.ValidateConfigRequest, *provider.ValidateConfigResponse) }
Declarative provider.ConfigValidator for unit testing.
func (*ProviderConfigValidator) Description ¶
func (v *ProviderConfigValidator) Description(ctx context.Context) string
Description satisfies the provider.ConfigValidator interface.
func (*ProviderConfigValidator) MarkdownDescription ¶
func (v *ProviderConfigValidator) MarkdownDescription(ctx context.Context) string
MarkdownDescription satisfies the provider.ConfigValidator interface.
func (*ProviderConfigValidator) ValidateProvider ¶ added in v0.10.0
func (v *ProviderConfigValidator) ValidateProvider(ctx context.Context, req provider.ValidateConfigRequest, resp *provider.ValidateConfigResponse)
Validate satisfies the provider.ConfigValidator interface.
type ProviderWithConfigValidators ¶
type ProviderWithConfigValidators struct { *Provider // ProviderWithConfigValidators interface methods ConfigValidatorsMethod func(context.Context) []provider.ConfigValidator }
Declarative provider.ProviderWithConfigValidators for unit testing.
func (*ProviderWithConfigValidators) ConfigValidators ¶
func (p *ProviderWithConfigValidators) ConfigValidators(ctx context.Context) []provider.ConfigValidator
GetMetaSchema satisfies the provider.ProviderWithConfigValidators interface.
type ProviderWithMetaSchema ¶ added in v0.11.0
type ProviderWithMetaSchema struct { *Provider // ProviderWithMetaSchema interface methods MetaSchemaMethod func(context.Context, provider.MetaSchemaRequest, *provider.MetaSchemaResponse) }
Declarative provider.ProviderWithMetaSchema for unit testing.
func (*ProviderWithMetaSchema) MetaSchema ¶ added in v0.17.0
func (p *ProviderWithMetaSchema) MetaSchema(ctx context.Context, req provider.MetaSchemaRequest, resp *provider.MetaSchemaResponse)
MetaSchema satisfies the provider.ProviderWithMetaSchema interface.
type ProviderWithValidateConfig ¶
type ProviderWithValidateConfig struct { *Provider // ProviderWithValidateConfig interface methods ValidateConfigMethod func(context.Context, provider.ValidateConfigRequest, *provider.ValidateConfigResponse) }
Declarative provider.ProviderWithValidateConfig for unit testing.
func (*ProviderWithValidateConfig) ValidateConfig ¶
func (p *ProviderWithValidateConfig) ValidateConfig(ctx context.Context, req provider.ValidateConfigRequest, resp *provider.ValidateConfigResponse)
GetMetaSchema satisfies the provider.ProviderWithValidateConfig interface.
type Resource ¶
type Resource struct { // Resource interface methods MetadataMethod func(context.Context, resource.MetadataRequest, *resource.MetadataResponse) SchemaMethod func(context.Context, resource.SchemaRequest, *resource.SchemaResponse) CreateMethod func(context.Context, resource.CreateRequest, *resource.CreateResponse) DeleteMethod func(context.Context, resource.DeleteRequest, *resource.DeleteResponse) ReadMethod func(context.Context, resource.ReadRequest, *resource.ReadResponse) UpdateMethod func(context.Context, resource.UpdateRequest, *resource.UpdateResponse) }
Declarative resource.Resource for unit testing.
func (*Resource) Create ¶
func (r *Resource) Create(ctx context.Context, req resource.CreateRequest, resp *resource.CreateResponse)
Create satisfies the resource.Resource interface.
func (*Resource) Delete ¶
func (r *Resource) Delete(ctx context.Context, req resource.DeleteRequest, resp *resource.DeleteResponse)
Delete satisfies the resource.Resource interface.
func (*Resource) Metadata ¶ added in v0.13.0
func (r *Resource) Metadata(ctx context.Context, req resource.MetadataRequest, resp *resource.MetadataResponse)
Metadata satisfies the resource.Resource interface.
func (*Resource) Read ¶
func (r *Resource) Read(ctx context.Context, req resource.ReadRequest, resp *resource.ReadResponse)
Read satisfies the resource.Resource interface.
func (*Resource) Schema ¶ added in v0.17.0
func (r *Resource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse)
Schema satisfies the resource.Resource interface.
func (*Resource) Update ¶
func (r *Resource) Update(ctx context.Context, req resource.UpdateRequest, resp *resource.UpdateResponse)
Update satisfies the resource.Resource interface.
type ResourceConfigValidator ¶
type ResourceConfigValidator struct { // ResourceConfigValidator interface methods DescriptionMethod func(context.Context) string MarkdownDescriptionMethod func(context.Context) string ValidateResourceMethod func(context.Context, resource.ValidateConfigRequest, *resource.ValidateConfigResponse) }
Declarative resource.ConfigValidator for unit testing.
func (*ResourceConfigValidator) Description ¶
func (v *ResourceConfigValidator) Description(ctx context.Context) string
Description satisfies the resource.ConfigValidator interface.
func (*ResourceConfigValidator) MarkdownDescription ¶
func (v *ResourceConfigValidator) MarkdownDescription(ctx context.Context) string
MarkdownDescription satisfies the resource.ConfigValidator interface.
func (*ResourceConfigValidator) ValidateResource ¶ added in v0.10.0
func (v *ResourceConfigValidator) ValidateResource(ctx context.Context, req resource.ValidateConfigRequest, resp *resource.ValidateConfigResponse)
Validate satisfies the resource.ConfigValidator interface.
type ResourceWithConfigValidators ¶
type ResourceWithConfigValidators struct { *Resource // ResourceWithConfigValidators interface methods ConfigValidatorsMethod func(context.Context) []resource.ConfigValidator }
Declarative resource.ResourceWithConfigValidators for unit testing.
func (*ResourceWithConfigValidators) ConfigValidators ¶
func (p *ResourceWithConfigValidators) ConfigValidators(ctx context.Context) []resource.ConfigValidator
ConfigValidators satisfies the resource.ResourceWithConfigValidators interface.
type ResourceWithConfigure ¶ added in v0.12.0
type ResourceWithConfigure struct { *Resource // ResourceWithConfigure interface methods ConfigureMethod func(context.Context, resource.ConfigureRequest, *resource.ConfigureResponse) }
Declarative resource.ResourceWithConfigure for unit testing.
func (*ResourceWithConfigure) Configure ¶ added in v0.12.0
func (r *ResourceWithConfigure) Configure(ctx context.Context, req resource.ConfigureRequest, resp *resource.ConfigureResponse)
Configure satisfies the resource.ResourceWithConfigure interface.
type ResourceWithConfigureAndImportState ¶ added in v0.12.0
type ResourceWithConfigureAndImportState struct { *Resource // ResourceWithConfigureAndImportState interface methods ConfigureMethod func(context.Context, resource.ConfigureRequest, *resource.ConfigureResponse) // ResourceWithImportState interface methods ImportStateMethod func(context.Context, resource.ImportStateRequest, *resource.ImportStateResponse) }
Declarative resource.ResourceWithConfigureAndImportState for unit testing.
func (*ResourceWithConfigureAndImportState) Configure ¶ added in v0.12.0
func (r *ResourceWithConfigureAndImportState) Configure(ctx context.Context, req resource.ConfigureRequest, resp *resource.ConfigureResponse)
Configure satisfies the resource.ResourceWithConfigureAndImportState interface.
func (*ResourceWithConfigureAndImportState) ImportState ¶ added in v0.12.0
func (r *ResourceWithConfigureAndImportState) ImportState(ctx context.Context, req resource.ImportStateRequest, resp *resource.ImportStateResponse)
ImportState satisfies the resource.ResourceWithImportState interface.
type ResourceWithConfigureAndModifyPlan ¶ added in v0.12.0
type ResourceWithConfigureAndModifyPlan struct { *Resource // ResourceWithConfigureAndModifyPlan interface methods ConfigureMethod func(context.Context, resource.ConfigureRequest, *resource.ConfigureResponse) // ResourceWithModifyPlan interface methods ModifyPlanMethod func(context.Context, resource.ModifyPlanRequest, *resource.ModifyPlanResponse) }
Declarative resource.ResourceWithConfigureAndModifyPlan for unit testing.
func (*ResourceWithConfigureAndModifyPlan) Configure ¶ added in v0.12.0
func (r *ResourceWithConfigureAndModifyPlan) Configure(ctx context.Context, req resource.ConfigureRequest, resp *resource.ConfigureResponse)
Configure satisfies the resource.ResourceWithConfigureAndModifyPlan interface.
func (*ResourceWithConfigureAndModifyPlan) ModifyPlan ¶ added in v0.12.0
func (r *ResourceWithConfigureAndModifyPlan) ModifyPlan(ctx context.Context, req resource.ModifyPlanRequest, resp *resource.ModifyPlanResponse)
ModifyPlan satisfies the resource.ResourceWithModifyPlan interface.
type ResourceWithConfigureAndUpgradeState ¶ added in v0.12.0
type ResourceWithConfigureAndUpgradeState struct { *Resource // ResourceWithConfigureAndUpgradeState interface methods ConfigureMethod func(context.Context, resource.ConfigureRequest, *resource.ConfigureResponse) // ResourceWithUpgradeState interface methods UpgradeStateMethod func(context.Context) map[int64]resource.StateUpgrader }
Declarative resource.ResourceWithConfigureAndUpgradeState for unit testing.
func (*ResourceWithConfigureAndUpgradeState) Configure ¶ added in v0.12.0
func (r *ResourceWithConfigureAndUpgradeState) Configure(ctx context.Context, req resource.ConfigureRequest, resp *resource.ConfigureResponse)
Configure satisfies the resource.ResourceWithConfigureAndUpgradeState interface.
func (*ResourceWithConfigureAndUpgradeState) UpgradeState ¶ added in v0.12.0
func (r *ResourceWithConfigureAndUpgradeState) UpgradeState(ctx context.Context) map[int64]resource.StateUpgrader
UpgradeState satisfies the resource.ResourceWithUpgradeState interface.
type ResourceWithImportState ¶
type ResourceWithImportState struct { *Resource // ResourceWithImportState interface methods ImportStateMethod func(context.Context, resource.ImportStateRequest, *resource.ImportStateResponse) }
Declarative resource.ResourceWithImportState for unit testing.
func (*ResourceWithImportState) ImportState ¶
func (p *ResourceWithImportState) ImportState(ctx context.Context, req resource.ImportStateRequest, resp *resource.ImportStateResponse)
ImportState satisfies the resource.ResourceWithImportState interface.
type ResourceWithModifyPlan ¶
type ResourceWithModifyPlan struct { *Resource // ResourceWithModifyPlan interface methods ModifyPlanMethod func(context.Context, resource.ModifyPlanRequest, *resource.ModifyPlanResponse) }
Declarative resource.ResourceWithModifyPlan for unit testing.
func (*ResourceWithModifyPlan) ModifyPlan ¶
func (p *ResourceWithModifyPlan) ModifyPlan(ctx context.Context, req resource.ModifyPlanRequest, resp *resource.ModifyPlanResponse)
ModifyPlan satisfies the resource.ResourceWithModifyPlan interface.
type ResourceWithUpgradeState ¶
type ResourceWithUpgradeState struct { *Resource // ResourceWithUpgradeState interface methods UpgradeStateMethod func(context.Context) map[int64]resource.StateUpgrader }
Declarative resource.ResourceWithUpgradeState for unit testing.
func (*ResourceWithUpgradeState) UpgradeState ¶
func (p *ResourceWithUpgradeState) UpgradeState(ctx context.Context) map[int64]resource.StateUpgrader
UpgradeState satisfies the resource.ResourceWithUpgradeState interface.
type ResourceWithValidateConfig ¶
type ResourceWithValidateConfig struct { *Resource // ResourceWithValidateConfig interface methods ValidateConfigMethod func(context.Context, resource.ValidateConfigRequest, *resource.ValidateConfigResponse) }
Declarative resource.ResourceWithValidateConfig for unit testing.
func (*ResourceWithValidateConfig) ValidateConfig ¶
func (p *ResourceWithValidateConfig) ValidateConfig(ctx context.Context, req resource.ValidateConfigRequest, resp *resource.ValidateConfigResponse)
ValidateConfig satisfies the resource.ResourceWithValidateConfig interface.
Source Files ¶
- datasource.go
- datasourceconfigvalidator.go
- datasourcewithconfigure.go
- datasourcewithconfigvalidators.go
- datasourcewithvalidateconfig.go
- doc.go
- provider.go
- providerconfigvalidator.go
- providerwithconfigvalidators.go
- providerwithmetaschema.go
- providerwithvalidateconfig.go
- resource.go
- resourceconfigvalidator.go
- resourcewithconfigure.go
- resourcewithconfigureandimportstate.go
- resourcewithconfigureandmodifyplan.go
- resourcewithconfigureandupgradestate.go
- resourcewithconfigvalidators.go
- resourcewithimportstate.go
- resourcewithmodifyplan.go
- resourcewithupgradestate.go
- resourcewithvalidateconfig.go