File: virtualnetworks_test.go

package info (click to toggle)
golang-github-packethost-packngo 0.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 440 kB
  • sloc: makefile: 2
file content (78 lines) | stat: -rw-r--r-- 1,834 bytes parent folder | download | duplicates (2)
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
package packngo

import (
	"testing"
)

func TestAccVirtualNetworks(t *testing.T) {

	skipUnlessAcceptanceTestsAllowed(t)
	c, projectID, teardown := setupWithProject(t)
	defer teardown()

	l, _, err := c.ProjectVirtualNetworks.List(projectID, nil)
	if err != nil {
		t.Fatal(err)
	}
	if len(l.VirtualNetworks) != 0 {
		t.Fatal("Newly created project should not have any vlans")

	}

	testDesc := "test_desc_" + randString8()

	cr := VirtualNetworkCreateRequest{
		ProjectID:   projectID,
		Description: testDesc,
		Facility:    testFacility(),
	}

	vlan, _, err := c.ProjectVirtualNetworks.Create(&cr)
	if err != nil {
		t.Fatal(err)
	}

	vlan, _, err = c.ProjectVirtualNetworks.Get(vlan.ID,
		&GetOptions{Includes: []string{"assigned_to"}})

	if vlan.Project.ID != projectID {
		t.Fatalf("VLAN's project ID should be %s, was %s", projectID,
			vlan.Project.ID)
	}

	if vlan.Description != testDesc {
		t.Fatal("Wrong description string in created VLAN")
	}

	l, _, err = c.ProjectVirtualNetworks.List(projectID,
		&ListOptions{Includes: []string{"assigned_to"}})
	if err != nil {
		t.Fatal(err)
	}

	if len(l.VirtualNetworks) != 1 {
		t.Fatal("At this point, there should be exactly 1 VLAN in the project")
	}

	if l.VirtualNetworks[0].Project.ID != projectID {
		t.Fatalf("VLAN's project ID from list should be %s, was %s", projectID,
			l.VirtualNetworks[0].Project.ID)
	}

	_, err = c.ProjectVirtualNetworks.Delete(l.VirtualNetworks[0].ID)
	if err != nil {
		t.Fatal(err)
	}

	l, _, err = c.ProjectVirtualNetworks.List(projectID, nil)
	if err != nil {
		t.Fatal(err)
	}
	if len(l.VirtualNetworks) != 0 {
		t.Fatal("The test project should not have any VLANs now")
	}

	// TODO: Test several bad inputs to ensure rejection without adverse affects
	// Create virtual network with bad POST body parameters
	// Ensure create failed
}