2016-11-21 18:34:50 -05:00
|
|
|
package fix
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestFixerManifestPPFilename_Impl(t *testing.T) {
|
|
|
|
var _ Fixer = new(FixerVagrantPPOverride)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFixerManifestPPFilename_Fix(t *testing.T) {
|
|
|
|
var f FixerManifestFilename
|
|
|
|
|
|
|
|
input := map[string]interface{}{
|
2016-11-21 18:35:57 -05:00
|
|
|
"post-processors": []interface{}{
|
|
|
|
map[string]interface{}{
|
2016-11-21 18:34:50 -05:00
|
|
|
"type": "manifest",
|
|
|
|
"filename": "foo",
|
|
|
|
},
|
2016-11-21 18:35:57 -05:00
|
|
|
[]interface{}{
|
|
|
|
map[string]interface{}{
|
|
|
|
"type": "manifest",
|
|
|
|
"filename": "foo",
|
|
|
|
},
|
|
|
|
},
|
2016-11-21 18:34:50 -05:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := map[string]interface{}{
|
2016-11-21 18:35:57 -05:00
|
|
|
"post-processors": []interface{}{
|
|
|
|
map[string]interface{}{
|
2016-11-21 18:34:50 -05:00
|
|
|
"type": "manifest",
|
|
|
|
"output": "foo",
|
|
|
|
},
|
2016-11-21 18:35:57 -05:00
|
|
|
[]interface{}{
|
|
|
|
map[string]interface{}{
|
|
|
|
"type": "manifest",
|
|
|
|
"output": "foo",
|
|
|
|
},
|
|
|
|
},
|
2016-11-21 18:34:50 -05:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
output, err := f.Fix(input)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(output, expected) {
|
|
|
|
t.Fatalf("unexpected: %#v\nexpected: %#v\n", output, expected)
|
|
|
|
}
|
|
|
|
}
|