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
|
package tfe
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestPlanExportsCreate(t *testing.T) {
client := testClient(t)
ctx := context.Background()
rTest, rTestCleanup := createPlannedRun(t, client, nil)
defer rTestCleanup()
pTest, err := client.Plans.Read(ctx, rTest.Plan.ID)
assert.NoError(t, err)
t.Run("with valid options", func(t *testing.T) {
options := PlanExportCreateOptions{
Plan: pTest,
DataType: PlanExportType(PlanExportSentinelMockBundleV0),
}
pe, err := client.PlanExports.Create(ctx, options)
require.NoError(t, err)
assert.NotEmpty(t, pe.ID)
assert.Equal(t, PlanExportSentinelMockBundleV0, pe.DataType)
})
t.Run("without a plan", func(t *testing.T) {
options := PlanExportCreateOptions{
Plan: nil,
DataType: PlanExportType(PlanExportSentinelMockBundleV0),
}
pe, err := client.PlanExports.Create(ctx, options)
assert.Nil(t, pe)
assert.EqualError(t, err, "plan is required")
})
t.Run("without a data type", func(t *testing.T) {
options := PlanExportCreateOptions{
Plan: pTest,
DataType: nil,
}
pe, err := client.PlanExports.Create(ctx, options)
assert.Nil(t, pe)
assert.EqualError(t, err, "data type is required")
})
}
func TestPlanExportsRead(t *testing.T) {
client := testClient(t)
ctx := context.Background()
peTest, peTestCleanup := createPlanExport(t, client, nil)
defer peTestCleanup()
t.Run("with a valid ID", func(t *testing.T) {
pe, err := client.PlanExports.Read(ctx, peTest.ID)
require.NoError(t, err)
assert.Equal(t, peTest.ID, pe.ID)
assert.Equal(t, peTest.DataType, pe.DataType)
})
t.Run("without a valid ID", func(t *testing.T) {
pe, err := client.PlanExports.Read(ctx, badIdentifier)
assert.Nil(t, pe)
assert.EqualError(t, err, "invalid value for plan export ID")
})
}
func TestPlanExportsDelete(t *testing.T) {
client := testClient(t)
ctx := context.Background()
peTest, peTestCleanup := createPlanExport(t, client, nil)
defer peTestCleanup()
t.Run("with a valid ID", func(t *testing.T) {
err := client.PlanExports.Delete(ctx, peTest.ID)
assert.NoError(t, err)
})
t.Run("when the export does not exist", func(t *testing.T) {
err := client.Policies.Delete(ctx, "pe-doesntexist")
assert.Equal(t, err, ErrResourceNotFound)
})
t.Run("without a valid ID", func(t *testing.T) {
err := client.PlanExports.Delete(ctx, badIdentifier)
assert.EqualError(t, err, "invalid value for plan export ID")
})
}
func TestPlanExportsDownload(t *testing.T) {
client := testClient(t)
ctx := context.Background()
peTest, peCleanup := createPlanExport(t, client, nil)
defer peCleanup()
t.Run("with a valid ID", func(t *testing.T) {
pe, err := client.PlanExports.Download(ctx, peTest.ID)
assert.NotNil(t, pe)
assert.NoError(t, err)
})
t.Run("without a valid ID", func(t *testing.T) {
pe, err := client.PlanExports.Download(ctx, badIdentifier)
assert.Nil(t, pe)
assert.EqualError(t, err, "invalid value for plan export ID")
})
}
|