This repository was archived by the owner on Jan 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 265
/
Copy pathplugin_test.go
106 lines (86 loc) · 2.43 KB
/
plugin_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
package file // import "github.com/docker/infrakit/pkg/plugin/instance/file"
import (
"io/ioutil"
"os"
"path/filepath"
"testing"
"github.com/docker/infrakit/pkg/spi/instance"
"github.com/docker/infrakit/pkg/types"
"github.com/stretchr/testify/require"
)
func TestUsage(t *testing.T) {
run(t, `
{
"ami" : "${lookup(var.aws_amis, var.aws_region)}",
"instance_type" : "m1.small",
"key_name": "PUBKEY",
"vpc_security_group_ids" : ["${aws_security_group.default.id}"],
"subnet_id": "${aws_subnet.default.id}"
}`)
}
func run(t *testing.T, properties string) {
dir, err := ioutil.TempDir("", "infrakit-instance-file")
require.NoError(t, err)
defer os.RemoveAll(dir)
fileinst := NewPlugin(dir)
config := types.AnyString(properties)
err = fileinst.Validate(config)
require.NoError(t, err)
instanceSpec := instance.Spec{
Properties: config,
Tags: map[string]string{
"label1": "value1",
"label2": "value2",
},
Init: "apt-get update -y\n\napt-get install -y software",
Attachments: []instance.Attachment{
{
ID: "ebs1",
Type: "ebs",
},
},
}
id, err := fileinst.Provision(instanceSpec)
require.NoError(t, err)
tfPath := filepath.Join(dir, string(*id))
buff, err := ioutil.ReadFile(tfPath)
require.NoError(t, err)
any := types.AnyBytes(buff)
parsed := fileInstance{}
err = any.Decode(&parsed)
require.NoError(t, err)
require.Equal(t, map[string]string{
"label1": "value1",
"label2": "value2",
}, parsed.Description.Tags)
require.Equal(t, instanceSpec.Init, parsed.Spec.Init)
// label resources
err = fileinst.Label(*id, map[string]string{
"label1": "changed1",
"label3": "value3",
})
buff, err = ioutil.ReadFile(tfPath)
require.NoError(t, err)
any = types.AnyBytes(buff)
parsed = fileInstance{}
err = any.Decode(&parsed)
require.NoError(t, err)
require.Equal(t, map[string]string{
"label1": "changed1",
"label2": "value2",
"label3": "value3",
}, parsed.Description.Tags)
list, err := fileinst.DescribeInstances(map[string]string{"label1": "changed1"}, false)
require.NoError(t, err)
require.Equal(t, []instance.Description{
{
ID: *id,
Tags: parsed.Description.Tags,
},
}, list)
err = fileinst.Destroy(*id, instance.Termination)
require.NoError(t, err)
list, err = fileinst.DescribeInstances(map[string]string{"label1": "changed1"}, false)
require.NoError(t, err)
require.Equal(t, []instance.Description{}, list)
}