Merge pull request #8336 from hashicorp/simplify_vb_parse_snapshot_data

virtualbox: simplify ParseSnapshotData
This commit is contained in:
Adrien Delorme 2019-11-06 11:03:34 +01:00 committed by GitHub
commit 3117d4f0a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 33 deletions

View File

@ -29,13 +29,23 @@ func ParseSnapshotData(snapshotData string) (*VBoxSnapshot, error) {
for scanner.Scan() {
txt := scanner.Text()
idx := strings.Index(txt, "=")
if idx > 0 {
if !strings.Contains(txt, "=") {
log.Printf("Invalid key,value pair [%s]", txt)
continue
}
if strings.HasPrefix(txt, "Current") {
node.IsCurrent = true
} else {
continue
}
matches := SnapshotNamePartsRe.FindStringSubmatch(txt)
if len(matches) >= 2 && matches[1] == "Name" {
if len(matches) < 2 {
continue
}
switch matches[1] {
case "UUID":
node.UUID = matches[4]
case "Name":
if nil == rootNode {
node = new(VBoxSnapshot)
rootNode = node
@ -60,12 +70,6 @@ func ParseSnapshotData(snapshotData string) (*VBoxSnapshot, error) {
}
}
node.Name = matches[4]
} else if matches[1] == "UUID" {
node.UUID = matches[4]
}
}
} else {
log.Printf("Invalid key,value pair [%s]", txt)
}
}
return rootNode, nil

View File

@ -134,3 +134,10 @@ func TestSnapshot_EnsureParents(t *testing.T) {
}
}
}
func TestSnapshot_WrongSnapshot(t *testing.T) {
rootNode, err := ParseSnapshotData(`Potato=
`)
assert.Nil(t, err)
assert.Nil(t, rootNode)
}