pulumi/pkg/codegen/report/report_test.go

90 lines
2.6 KiB
Go
Raw Normal View History

package report_test
import (
"bytes"
"path/filepath"
"testing"
"github.com/pulumi/pulumi/pkg/v3/codegen/dotnet"
"github.com/pulumi/pulumi/pkg/v3/codegen/hcl2/syntax"
"github.com/pulumi/pulumi/pkg/v3/codegen/nodejs"
"github.com/pulumi/pulumi/pkg/v3/codegen/pcl"
"github.com/pulumi/pulumi/pkg/v3/codegen/report"
"github.com/pulumi/pulumi/pkg/v3/codegen/testing/utils"
"github.com/pulumi/pulumi/pkg/v3/version"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
var testdataPath = filepath.Join("..", "testing", "test", "testdata")
func TestReportExample(t *testing.T) {
t.Parallel()
reporter := report.New("example", version.Version)
defer reporter.Close()
examples := []struct {
title string
body string
}{
{"Our basic bucket", `resource bucket "aws:s3:BucketV2" { }`},
{"A resource group", `resource group "azure:core:ResourceGroup" { location: "westus2" }`},
{"Might not bind", `resource foo "not:a:Resource" { foo: "bar" }`},
}
for _, example := range examples {
parser := syntax.NewParser()
err := parser.ParseFile(bytes.NewReader([]byte(example.body)), example.title)
require.NoError(t, err, "parse failed")
program, diags, err := pcl.BindProgram(parser.Files, pcl.PluginHost(utils.NewHost(testdataPath)))
if err != nil || diags.HasErrors() {
reporter.Report(example.title, "", parser.Files, diags, err)
continue
}
langs := []string{"dotnet", "nodejs"}
for i, genFn := range []report.GenerateProgramFn{dotnet.GenerateProgram, nodejs.GenerateProgram} {
program, diags, err := report.WrapGen(reporter, example.title, langs[i], parser.Files, genFn)(program)
handleAsNormal(program, diags, err)
}
}
assert.Equal(t, report.Summary{
Name: "example",
Stats: report.Stats{
NumConversions: 5,
Successes: 4,
},
Languages: map[string]*report.Language{
"": {
Stats: report.Stats{
NumConversions: 1,
Successes: 0,
},
GoErrors: map[string]string{
"Might not bind": "error: could not locate a compatible plugin in " +
"deploytest, the makefile and & constructor of the plugin host " +
Prefer stable plugin release to pre-releases (#14700) <!--- Thanks so much for your contribution! If this is your first time contributing, please ensure that you have read the [CONTRIBUTING](https://github.com/pulumi/pulumi/blob/master/CONTRIBUTING.md) documentation. --> # Description <!--- Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. --> Fixes https://github.com/pulumi/pulumi/issues/14680. Updated the plugin logic (which we still use when no explict version is given) to prefer selecting a stable version over a pre-release version when no explict requested version is given. ## Checklist - [x] I have run `make tidy` to update any new dependencies - [x] I have run `make lint` to verify my code passes the lint check - [ ] I have formatted my code using `gofumpt` <!--- Please provide details if the checkbox below is to be left unchecked. --> - [x] I have added tests that prove my fix is effective or that my feature works <!--- User-facing changes require a CHANGELOG entry. --> - [x] I have run `make changelog` and committed the `changelog/pending/<file>` documenting my change <!-- If the change(s) in this PR is a modification of an existing call to the Pulumi Cloud, then the service should honor older versions of the CLI where this change would not exist. You must then bump the API version in /pkg/backend/httpstate/client/api.go, as well as add it to the service. --> - [ ] Yes, there are changes in this PR that warrants bumping the Pulumi Cloud API version <!-- @Pulumi employees: If yes, you must submit corresponding changes in the service repo. -->
2023-12-03 09:15:07 +00:00
"must define the location of the schema",
},
Files: map[string][]report.File{
"Might not bind": {{Name: "Might not bind", Body: "resource foo \"not:a:Resource\" { foo: \"bar\" }"}},
},
},
"dotnet": {
Stats: report.Stats{
NumConversions: 2,
Successes: 2,
},
},
"nodejs": {
Stats: report.Stats{
NumConversions: 2,
Successes: 2,
},
},
},
}, reporter.Summary())
}
func handleAsNormal(args ...interface{}) {}