packer-cn/fix/fixer_pp_vagrant_override_t...

77 lines
1.3 KiB
Go
Raw Normal View History

2013-12-19 17:54:00 -05:00
package fix
import (
"testing"
2018-09-06 14:55:11 -04:00
"github.com/stretchr/testify/assert"
2013-12-19 17:54:00 -05:00
)
func TestFixerVagrantPPOverride_Impl(t *testing.T) {
var _ Fixer = new(FixerVagrantPPOverride)
}
func TestFixerVagrantPPOverride_Fix(t *testing.T) {
var f FixerVagrantPPOverride
input := map[string]interface{}{
"post-processors": []interface{}{
"foo",
map[string]interface{}{
"type": "vagrant",
"aws": map[string]interface{}{
"foo": "bar",
},
},
map[string]interface{}{
"type": "vsphere",
},
[]interface{}{
map[string]interface{}{
"type": "vagrant",
"vmware": map[string]interface{}{
"foo": "bar",
},
},
},
},
}
expected := map[string]interface{}{
"post-processors": []interface{}{
"foo",
map[string]interface{}{
"type": "vagrant",
"override": map[string]interface{}{
"aws": map[string]interface{}{
"foo": "bar",
},
},
},
map[string]interface{}{
"type": "vsphere",
},
[]interface{}{
map[string]interface{}{
"type": "vagrant",
"override": map[string]interface{}{
"vmware": map[string]interface{}{
"foo": "bar",
},
},
},
},
},
}
output, err := f.Fix(input)
2018-09-06 14:55:11 -04:00
assert.NoError(t, err)
2013-12-19 17:54:00 -05:00
2018-09-06 14:55:11 -04:00
assert.Equal(t, expected, output)
2013-12-19 17:54:00 -05:00
}