-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogramtest.go
91 lines (78 loc) · 2.67 KB
/
programtest.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Copyright 2016-2023, Pulumi Corporation.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package providertest
import (
"fmt"
"path/filepath"
"testing"
"github.com/stretchr/testify/assert"
"github.com/pulumi/pulumi/pkg/v3/engine"
"github.com/pulumi/pulumi/pkg/v3/testing/integration"
"github.com/pulumi/pulumi/sdk/v3/go/common/workspace"
)
// Code in this file is copied from the ProgramTest framework and modified to introduce
// extensibility points. It should eventually be upstreamed ideally so this is not needed here.
type programTestWrapper struct {
pt *integration.ProgramTester
}
// Behaves just like ProgramTester.TestLifeCycleInitAndDestroy() but with custom inner test logic.
// This function was obtained by inlining TestLifeCycleInitAndDestroy implementation and
// generalizing it.
func (wrapper *programTestWrapper) lifecycleInitAndDestroy(
t *testing.T,
opts integration.ProgramTestOptions,
customTest func() error,
) error {
pt := wrapper.pt
assert.Falsef(t, opts.RunUpdateTest, "RunUpdateTest is not supported")
err := pt.TestLifeCyclePrepare()
if err != nil {
return fmt.Errorf("copying test to temp dir %s: %w", "<tmpdir>", err)
}
pt.TestFinished = false
if opts.DestroyOnCleanup {
t.Cleanup(pt.TestCleanUp)
} else {
defer pt.TestCleanUp()
}
err = pt.TestLifeCycleInitialize()
if err != nil {
return fmt.Errorf("initializing test project: %w", err)
}
destroyStack := func() {
destroyErr := pt.TestLifeCycleDestroy()
assert.NoError(t, destroyErr)
}
if opts.DestroyOnCleanup {
// Allow other tests to refer to this stack until the test is complete.
t.Cleanup(destroyStack)
} else {
// Ensure that before we exit, we attempt to destroy and remove the stack.
defer destroyStack()
}
if err = customTest(); err != nil {
return err
}
pt.TestFinished = true
return nil
}
// Utility to load up Pulumi.yaml so we know things like what language the project is.
func getProjInfo(projectDir string) (*engine.Projinfo, error) {
projFile := filepath.Join(projectDir, workspace.ProjectFile+".yaml")
proj, err := workspace.LoadProject(projFile)
if err != nil {
return nil, err
}
return &engine.Projinfo{Proj: proj, Root: projectDir}, nil
}