pulumi/pkg/codegen/internal/test/host.go
2021-05-05 10:01:22 +02:00

27 lines
1,023 B
Go

package test
import (
"github.com/blang/semver"
"github.com/pulumi/pulumi/pkg/v3/resource/deploy/deploytest"
"github.com/pulumi/pulumi/sdk/v3/go/common/resource/plugin"
)
func NewHost(schemaDirectoryPath string) plugin.Host {
return deploytest.NewPluginHost(nil, nil, nil,
deploytest.NewProviderLoader("aws", semver.MustParse("1.0.0"), func() (plugin.Provider, error) {
return AWS(schemaDirectoryPath)
}),
deploytest.NewProviderLoader("azure", semver.MustParse("3.24.0"), func() (plugin.Provider, error) {
return Azure(schemaDirectoryPath)
}),
deploytest.NewProviderLoader("azure-native", semver.MustParse("1.0.0"), func() (plugin.Provider, error) {
return AzureNative(schemaDirectoryPath)
}),
deploytest.NewProviderLoader("random", semver.MustParse("1.0.0"), func() (plugin.Provider, error) {
return Random(schemaDirectoryPath)
}),
deploytest.NewProviderLoader("kubernetes", semver.MustParse("1.0.0"), func() (plugin.Provider, error) {
return Kubernetes(schemaDirectoryPath)
}))
}