forked from juju/description
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blockdevice_test.go
110 lines (94 loc) · 3.16 KB
/
blockdevice_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
107
108
109
110
// Copyright 2016 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package description
import (
jc "github.com/juju/testing/checkers"
gc "gopkg.in/check.v1"
"gopkg.in/yaml.v2"
)
type BlockDeviceSerializationSuite struct {
SliceSerializationSuite
}
var _ = gc.Suite(&BlockDeviceSerializationSuite{})
func (s *BlockDeviceSerializationSuite) SetUpTest(c *gc.C) {
s.SliceSerializationSuite.SetUpTest(c)
s.importName = "block devices"
s.sliceName = "block-devices"
s.importFunc = func(m map[string]interface{}) (interface{}, error) {
return importBlockDevices(m)
}
s.testFields = func(m map[string]interface{}) {
m["block-devices"] = []interface{}{}
}
}
func allBlockDeviceArgs() BlockDeviceArgs {
return BlockDeviceArgs{
Name: "/dev/sda",
Links: []string{"some", "data"},
Label: "sda",
UUID: "some-uuid",
HardwareID: "magic",
SerialID: "coco-pops",
WWN: "drbr",
BusAddress: "bus stop",
Size: 16 * 1024 * 1024 * 1024,
FilesystemType: "ext4",
InUse: true,
MountPoint: "/",
}
}
func (s *BlockDeviceSerializationSuite) TestNewBlockDevice(c *gc.C) {
d := newBlockDevice(allBlockDeviceArgs())
c.Check(d.Name(), gc.Equals, "/dev/sda")
c.Check(d.Links(), jc.DeepEquals, []string{"some", "data"})
c.Check(d.Label(), gc.Equals, "sda")
c.Check(d.UUID(), gc.Equals, "some-uuid")
c.Check(d.HardwareID(), gc.Equals, "magic")
c.Check(d.SerialID(), gc.Equals, "coco-pops")
c.Check(d.WWN(), gc.Equals, "drbr")
c.Check(d.BusAddress(), gc.Equals, "bus stop")
c.Check(d.Size(), gc.Equals, uint64(16*1024*1024*1024))
c.Check(d.FilesystemType(), gc.Equals, "ext4")
c.Check(d.InUse(), jc.IsTrue)
c.Check(d.MountPoint(), gc.Equals, "/")
}
func (s *BlockDeviceSerializationSuite) exportImport(c *gc.C, dev *blockdevice, version int) *blockdevice {
initial := blockdevices{
Version: version,
BlockDevices_: []*blockdevice{dev},
}
bytes, err := yaml.Marshal(initial)
c.Assert(err, jc.ErrorIsNil)
var source map[string]interface{}
err = yaml.Unmarshal(bytes, &source)
c.Assert(err, jc.ErrorIsNil)
devices, err := importBlockDevices(source)
c.Assert(err, jc.ErrorIsNil)
c.Assert(devices, gc.HasLen, 1)
return devices[0]
}
func (s *BlockDeviceSerializationSuite) exportImportLatest(c *gc.C, dev *blockdevice) *blockdevice {
return s.exportImport(c, dev, 2)
}
func (s *BlockDeviceSerializationSuite) TestParsingSerializedData(c *gc.C) {
initial := newBlockDevice(allBlockDeviceArgs())
imported := s.exportImportLatest(c, initial)
c.Assert(imported, jc.DeepEquals, initial)
}
func (s *BlockDeviceSerializationSuite) TestV1ParsingReturnsLatest(c *gc.C) {
initial := newBlockDevice(allBlockDeviceArgs())
imported := s.exportImport(c, initial, 1)
initial.SerialID_ = ""
c.Assert(imported, jc.DeepEquals, initial)
}
func (s *BlockDeviceSerializationSuite) TestImportEmpty(c *gc.C) {
devices, err := importBlockDevices(emptyBlockDeviceMap())
c.Assert(err, jc.ErrorIsNil)
c.Assert(devices, gc.HasLen, 0)
}
func emptyBlockDeviceMap() map[interface{}]interface{} {
return map[interface{}]interface{}{
"version": 2,
"block-devices": []interface{}{},
}
}