-
Notifications
You must be signed in to change notification settings - Fork 198
/
Copy pathe2e_cases_test.go
139 lines (122 loc) · 3.62 KB
/
e2e_cases_test.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package resource
import (
"context"
"fmt"
"os"
"path/filepath"
"testing"
"time"
"github.com/Azure/aztfexport/internal/client"
internalconfig "github.com/Azure/aztfexport/internal/config"
"github.com/Azure/aztfexport/pkg/config"
"github.com/Azure/aztfexport/internal"
"github.com/Azure/aztfexport/internal/test"
"github.com/Azure/aztfexport/internal/test/cases"
"github.com/Azure/aztfexport/internal/utils"
"github.com/hashicorp/terraform-exec/tfexec"
)
func runCase(t *testing.T, d test.Data, c cases.Case) {
tfexecPath := test.EnsureTF(t)
provisionDir := t.TempDir()
if test.Keep() {
provisionDir, _ = os.MkdirTemp("", "")
t.Log(provisionDir)
}
if err := os.WriteFile(filepath.Join(provisionDir, "main.tf"), []byte(c.Tpl(d)), 0644); err != nil {
t.Fatalf("created to create the TF config file: %v", err)
}
tf, err := tfexec.NewTerraform(provisionDir, tfexecPath)
if err != nil {
t.Fatalf("failed to new terraform: %v", err)
}
ctx := context.Background()
t.Log("Running: terraform init")
if err := tf.Init(ctx); err != nil {
t.Fatalf("terraform init failed: %v", err)
}
t.Log("Running: terraform apply")
if err := tf.Apply(ctx); err != nil {
t.Fatalf("terraform apply failed: %v", err)
}
if !test.Keep() {
defer func() {
t.Log("Running: terraform destroy")
if err := tf.Destroy(ctx); err != nil {
t.Logf("terraform destroy failed: %v", err)
}
}()
}
const delay = time.Minute
t.Logf("Sleep for %v to wait for the just created resources be recorded in ARG\n", delay)
time.Sleep(delay)
aztfexportDir := t.TempDir()
l, err := c.SingleResourceContext(d)
if err != nil {
t.Fatalf("failed to get resource ids: %v", err)
}
cred, clientOpt := test.BuildCredAndClientOpt(t)
for idx, rctx := range l {
cfg := internalconfig.NonInteractiveModeConfig{
Config: config.Config{
CommonConfig: config.CommonConfig{
SubscriptionId: os.Getenv("ARM_SUBSCRIPTION_ID"),
AzureSDKCredential: cred,
AzureSDKClientOption: *clientOpt,
OutputDir: aztfexportDir,
BackendType: "local",
DevProvider: true,
Parallelism: 1,
ProviderName: "azurerm",
},
ResourceId: rctx.AzureId,
TFResourceName: fmt.Sprintf("res-%d", idx),
},
PlainUI: true,
}
t.Logf("Resource importing %s\n", rctx.AzureId)
if err := utils.RemoveEverythingUnder(cfg.OutputDir); err != nil {
t.Fatalf("failed to clean up the output directory: %v", err)
}
if err := internal.BatchImport(ctx, cfg); err != nil {
t.Fatalf("failed to run resource import: %v", err)
}
test.Verify(t, ctx, aztfexportDir, tfexecPath, rctx.ExpectResourceCount)
}
}
func TestComputeVMDisk(t *testing.T) {
t.Parallel()
test.Precheck(t)
c, d := cases.CaseComputeVMDisk{}, test.NewData()
runCase(t, d, c)
}
func TestSignalRService(t *testing.T) {
t.Parallel()
test.Precheck(t)
c, d := cases.CaseSignalRService{}, test.NewData()
runCase(t, d, c)
}
func TestApplicationInsightWebTest(t *testing.T) {
t.Parallel()
test.Precheck(t)
c, d := cases.CaseApplicationInsightWebTest{}, test.NewData()
runCase(t, d, c)
}
func TestKeyVaultNestedItems(t *testing.T) {
t.Parallel()
test.Precheck(t)
cred, opt := test.BuildCredAndClientOpt(t)
c, d := cases.CaseKeyVaultNestedItems{B: client.ClientBuilder{Credential: cred, Opt: *opt}}, test.NewData()
runCase(t, d, c)
}
func TestFunctionAppSlot(t *testing.T) {
t.Parallel()
test.Precheck(t)
c, d := cases.CaseFunctionAppSlot{}, test.NewData()
runCase(t, d, c)
}
func TestStorageFileShare(t *testing.T) {
t.Parallel()
test.Precheck(t)
c, d := cases.CaseStorageFileShare{}, test.NewData()
runCase(t, d, c)
}