2014-05-28 17:07:47 -05:00
|
|
|
package terraform
|
|
|
|
|
|
|
|
// MockResourceProvider implements ResourceProvider but mocks out all the
|
|
|
|
// calls for testing purposes.
|
|
|
|
type MockResourceProvider struct {
|
2014-06-03 17:08:00 -05:00
|
|
|
// Anything you want, in case you need to store extra data with the mock.
|
|
|
|
Meta interface{}
|
|
|
|
|
2014-05-28 17:07:47 -05:00
|
|
|
ConfigureCalled bool
|
|
|
|
ConfigureConfig map[string]interface{}
|
|
|
|
ConfigureReturnWarnings []string
|
|
|
|
ConfigureReturnError error
|
2014-06-03 16:26:31 -05:00
|
|
|
ResourcesCalled bool
|
|
|
|
ResourcesReturn []ResourceType
|
2014-05-28 17:07:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *MockResourceProvider) Configure(c map[string]interface{}) ([]string, error) {
|
|
|
|
p.ConfigureCalled = true
|
|
|
|
p.ConfigureConfig = c
|
|
|
|
return p.ConfigureReturnWarnings, p.ConfigureReturnError
|
|
|
|
}
|
2014-06-03 16:26:31 -05:00
|
|
|
|
|
|
|
func (p *MockResourceProvider) Resources() []ResourceType {
|
|
|
|
p.ResourcesCalled = true
|
|
|
|
return p.ResourcesReturn
|
|
|
|
}
|