summaryrefslogtreecommitdiff
path: root/sampleData.go
blob: b75970b81802de6fcd9a5d803b7ce44cf4a28fb2 (plain)
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
package virtbuf

import "log"

//
// This generates some sample data. It *should* match the .proto file
//

func CreateSampleDroplet() *Droplet {
	// TODO: flush this out to do all the fields
	log.Println("CreateSampleDroplet() is generating a new droplet")

	e := &Droplet{
		Uuid:     "6a1c571b-1d02-462b-9288-63d205306d76",
		Hostname: "bmath.wit.com",
		Comment:  "this is a droplet for testing",
	}
	return e
}

func CreateSampleDroplets(total int) []Droplet {

	var all []Droplet

	for i := 0; i < total; i++ {
		d := CreateSampleDroplet()

		// e.Id += 1000 + int32(i)
		d.Comment = "Sample Droplet " + string(i)

		all = append(all, *d)
	}

	return all
}