File: instances_test.go

package info (click to toggle)
golang-github-denverdino-aliyungo 0.0~git20180921.13fa8aa-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,824 kB
  • sloc: xml: 1,359; makefile: 3
file content (348 lines) | stat: -rw-r--r-- 9,344 bytes parent folder | download | duplicates (3)
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
package ecs

import (
	"encoding/json"
	"fmt"
	"testing"

	"github.com/denverdino/aliyungo/common"
)

func ExampleClient_DescribeInstanceStatus() {
	fmt.Printf("DescribeInstanceStatus Example\n")

	args := DescribeInstanceStatusArgs{
		RegionId: "cn-beijing",
		ZoneId:   "cn-beijing-b",
		Pagination: common.Pagination{
			PageNumber: 1,
			PageSize:   1,
		},
	}

	client := NewTestClient()
	instanceStatus, _, err := client.DescribeInstanceStatus(&args)

	if err != nil {
		fmt.Printf("Failed to describe Instance: %s status:%v \n", TestInstanceId, err)
	} else {
		for i := 0; i < len(instanceStatus); i++ {
			fmt.Printf("Instance %s Status: %s \n", instanceStatus[i].InstanceId, instanceStatus[i].Status)
		}
	}
}

func ExampleClient_DescribeInstanceAttribute() {
	fmt.Printf("DescribeInstanceAttribute Example\n")

	client := NewTestClient()

	instanceAttributeType, err := client.DescribeInstanceAttribute(TestInstanceId)

	if err != nil {
		fmt.Printf("Failed to describe Instance %s attribute: %v\n", TestInstanceId, err)
	} else {
		fmt.Printf("Instance Information\n")
		fmt.Printf("InstanceId = %s \n", instanceAttributeType.InstanceId)
		fmt.Printf("InstanceName = %s \n", instanceAttributeType.InstanceName)
		fmt.Printf("HostName = %s \n", instanceAttributeType.HostName)
		fmt.Printf("ZoneId = %s \n", instanceAttributeType.ZoneId)
		fmt.Printf("RegionId = %s \n", instanceAttributeType.RegionId)
	}
}

func ExampleClient_DescribeInstanceVncUrl() {
	fmt.Printf("DescribeInstanceVncUrl Example\n")

	args := DescribeInstanceVncUrlArgs{
		RegionId:   "cn-beijing",
		InstanceId: TestInstanceId,
	}

	client := NewTestClient()

	instanceVncUrl, err := client.DescribeInstanceVncUrl(&args)

	if err != nil {
		fmt.Printf("Failed to describe Instance %s vnc url: %v \n", TestInstanceId, err)
	} else {
		fmt.Printf("VNC URL = %s \n", instanceVncUrl)
	}
}

func ExampleClient_StopInstance() {
	fmt.Printf("Stop Instance Example\n")

	client := NewTestClient()

	err := client.StopInstance(TestInstanceId, true)

	if err != nil {
		fmt.Printf("Failed to stop Instance %s vnc url: %v \n", TestInstanceId, err)
	}
}

func ExampleClient_DeleteInstance() {
	fmt.Printf("Delete Instance Example")

	client := NewTestClient()

	err := client.DeleteInstance(TestInstanceId)

	if err != nil {
		fmt.Printf("Failed to delete Instance %s vnc url: %v \n", TestInstanceId, err)
	}
}

func TestECSInstance(t *testing.T) {
	if TestQuick {
		return
	}
	client := NewTestClient()
	instance, err := client.DescribeInstanceAttribute(TestInstanceId)
	if err != nil {
		t.Fatalf("Failed to describe instance %s: %v", TestInstanceId, err)
	}
	t.Logf("Instance: %++v  %v", instance, err)
	err = client.StopInstance(TestInstanceId, true)
	if err != nil {
		t.Errorf("Failed to stop instance %s: %v", TestInstanceId, err)
	}
	err = client.WaitForInstance(TestInstanceId, Stopped, 0)
	if err != nil {
		t.Errorf("Instance %s is failed to stop: %v", TestInstanceId, err)
	}
	t.Logf("Instance %s is stopped successfully.", TestInstanceId)
	err = client.StartInstance(TestInstanceId)
	if err != nil {
		t.Errorf("Failed to start instance %s: %v", TestInstanceId, err)
	}
	err = client.WaitForInstance(TestInstanceId, Running, 0)
	if err != nil {
		t.Errorf("Instance %s is failed to start: %v", TestInstanceId, err)
	}
	t.Logf("Instance %s is running successfully.", TestInstanceId)
	err = client.RebootInstance(TestInstanceId, true)
	if err != nil {
		t.Errorf("Failed to restart instance %s: %v", TestInstanceId, err)
	}
	err = client.WaitForInstance(TestInstanceId, Running, 0)
	if err != nil {
		t.Errorf("Instance %s is failed to restart: %v", TestInstanceId, err)
	}
	t.Logf("Instance %s is running successfully.", TestInstanceId)
}

func TestECSInstanceCreationAndDeletion(t *testing.T) {

	if TestIAmRich == false { // Avoid payment
		return
	}

	client := NewTestClient()
	instance, err := client.DescribeInstanceAttribute(TestInstanceId)
	t.Logf("Instance: %++v  %v", instance, err)

	args := CreateInstanceArgs{
		RegionId:        instance.RegionId,
		ImageId:         instance.ImageId,
		InstanceType:    "ecs.t1.small",
		SecurityGroupId: instance.SecurityGroupIds.SecurityGroupId[0],
	}

	instanceId, err := client.CreateInstance(&args)
	if err != nil {
		t.Errorf("Failed to create instance from Image %s: %v", args.ImageId, err)
	}
	t.Logf("Instance %s is created successfully.", instanceId)

	instance, err = client.DescribeInstanceAttribute(instanceId)
	t.Logf("Instance: %++v  %v", instance, err)

	err = client.WaitForInstance(instanceId, Stopped, 60)

	err = client.StartInstance(instanceId)
	if err != nil {
		t.Errorf("Failed to start instance %s: %v", instanceId, err)
	}
	err = client.WaitForInstance(instanceId, Running, 0)

	err = client.StopInstance(instanceId, true)
	if err != nil {
		t.Errorf("Failed to stop instance %s: %v", instanceId, err)
	}
	err = client.WaitForInstance(instanceId, Stopped, 0)
	if err != nil {
		t.Errorf("Instance %s is failed to stop: %v", instanceId, err)
	}
	t.Logf("Instance %s is stopped successfully.", instanceId)

	err = client.DeleteInstance(instanceId)

	if err != nil {
		t.Errorf("Failed to delete instance %s: %v", instanceId, err)
	}
	t.Logf("Instance %s is deleted successfully.", instanceId)
}

func TestModifyInstanceAttribute(t *testing.T) {
	client := NewTestClient()

	args := ModifyInstanceAttributeArgs{
		InstanceId: TestInstanceId,
		Password:   "Just$test",
	}

	err := client.ModifyInstanceAttribute(&args)
	if err != nil {
		t.Errorf("Failed to modify instance attribute %s: %v", TestInstanceId, err)
	}

	t.Logf("Modify instance attribute successfully")
}

func TestIoOptimized(t *testing.T) {

	type TestStruct struct {
		Str  string
		Flag StringOrBool
	}

	var test TestStruct

	txt := "{\"Str\":\"abc\", \"Flag\": true}"

	err := json.Unmarshal([]byte(txt), &test)
	if err != nil {
		t.Errorf("Failed to Unmarshal IoOptimized: %v", err)
	} else {
		if test.Flag.Value != true {
			t.Errorf("Failed to Unmarshal IoOptimized with expected value: %s", test.Flag)
		}
	}

	txt1 := "{\"Str\":\"abc\", \"Flag\": \"false\"}"

	err = json.Unmarshal([]byte(txt1), &test)
	if err != nil {
		t.Errorf("Failed to Unmarshal IoOptimized: %v", err)
	} else {
		if test.Flag.Value != false {
			t.Errorf("Failed to Unmarshal IoOptimized with expected value: %s", test.Flag)
		}
	}
}

func TestJoinSecurityGroup(t *testing.T) {
	client := NewTestClient()

	err := client.JoinSecurityGroup(TestInstanceId, TestSecurityGroupId)
	if err != nil {
		t.Errorf("Failed to joinSecurityGroup: %v", err)
	}
}

func TestLeaveSecurityGroup(t *testing.T) {
	client := NewTestClient()

	err := client.LeaveSecurityGroup(TestInstanceId, TestSecurityGroupId)
	if err != nil {
		t.Errorf("Failed to LeaveSecurityGroup: %v", err)
	}
}

func TestLocationECSClient(t *testing.T) {
	client := NetTestLocationClientForDebug()

	//CreateInstance
	args := CreateInstanceArgs{
		RegionId:           TestRegionID,
		ImageId:            TestImageId,
		InstanceType:       TestInstanceType,
		SecurityGroupId:    TestSecurityGroupId,
		VSwitchId:          TestVSwitchID,
		InstanceChargeType: common.PrePaid,
		Period:             1,
	}

	instanceId, err := client.CreateInstance(&args)
	if err != nil {
		t.Fatalf("Failed to create instance from Image %s: %++v", TestImageId, err)
	}
	t.Logf("Instance %s is created successfully.", instanceId)

	//DescribeInstance Attribute
	attr, err := client.DescribeInstanceAttribute(instanceId)
	if err != nil {
		t.Fatalf("Failed to DescribeInstanceAttribute %++v", err)
	}

	t.Logf("InstanceAttribute is %++v", attr)

	//DeleteInstance
	err = client.DeleteInstance(instanceId)
	if err != nil {
		t.Fatalf("Failed to delete instance %++v", err)
	}

	t.Logf("Instance %s is deleted successfully", instanceId)
}

func TestAttachInstanceRamRole(t *testing.T) {
	client := NewTestClient()

	//AttachInstanceRamRole
	InstanceIds := []string{"i-6wegya1zr8ysx8adyrt3", "i-6wee4x5wzct8x8pr6sar", "i-6we3c5f1nqem3t9bxgot"}
	b, _ := json.Marshal(InstanceIds)
	args := &AttachInstancesArgs{
		RegionId:    TestRegionID,
		InstanceIds: string(b),
		RamRoleName: "roletest",
	}

	// AttachInstanceRamRole
	err := client.AttachInstanceRamRole(args)
	if err != nil {
		t.Fatalf("Failed to attach instances to ram role %s: %++v", args.RamRoleName, err)
	}
	t.Logf("Attach successfully.")

	// DescribeInstanceRamRole
	resp, err := client.DescribeInstanceRamRole(&AttachInstancesArgs{RegionId: TestRegionID, InstanceIds: args.InstanceIds})
	if err != nil {
		t.Fatalf("Failed to DescribeInstanceRamRole %++v", err)
	}

	t.Logf("Attach is %++v", resp.InstanceRamRoleSets.InstanceRamRoleSet)

	// DetachInstanceRamRole
	err = client.DetachInstanceRamRole(args)
	if err != nil {
		t.Fatalf("Failed to DetachInstanceRamRole %++v", err)
	}

	t.Logf("Detach successfully")
}

func TestClient_DescribeInstances(t *testing.T) {
	client := NetTestLocationClientForDebug()
	client.SetSecurityToken(TestSecurityToken)

	args := &DescribeInstancesArgs{
		RegionId: TestRegionID,
		Pagination: common.Pagination{
			PageNumber: 1,
			PageSize:   100,
		},
		//SecurityToken: TestSecurityToken,
	}

	response, _, err := client.DescribeInstances(args)
	if err != nil {
		t.Fatalf("Error %++v", err)
	} else {
		for index, instance := range response {
			t.Logf("response[%d] = %++v", index, instance)
		}
	}
}