Commit d2023c69 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

packer/rpc: returning errors from builds works properly

parent db8aeaba
......@@ -57,12 +57,12 @@ func (b *build) Run(ui packer.Ui, cache packer.Cache) (packer.Artifact, error) {
var reply string
if err := b.client.Call("Build.Run", args, &reply); err != nil {
panic(err)
return nil, err
}
client, err := rpc.Dial("tcp", reply)
if err != nil {
panic(err)
return nil, err
}
return Artifact(client), nil
......@@ -97,7 +97,7 @@ func (b *BuildServer) Run(args *BuildRunArgs, reply *string) error {
artifact, err := b.build.Run(&Ui{client}, Cache(client))
if err != nil {
return err
return NewBasicError(err)
}
// Wrap the artifact
......
......@@ -2,6 +2,7 @@ package rpc
import (
"cgl.tideland.biz/asserts"
"errors"
"github.com/mitchellh/packer/packer"
"net/rpc"
"testing"
......@@ -17,6 +18,8 @@ type testBuild struct {
runCache packer.Cache
runUi packer.Ui
cancelCalled bool
errRunResult bool
}
func (b *testBuild) Name() string {
......@@ -34,7 +37,12 @@ func (b *testBuild) Run(ui packer.Ui, cache packer.Cache) (packer.Artifact, erro
b.runCalled = true
b.runCache = cache
b.runUi = ui
if b.errRunResult {
return nil, errors.New("foo")
} else {
return testBuildArtifact, nil
}
}
func (b *testBuild) Cancel() {
......@@ -69,8 +77,9 @@ func TestBuildRPC(t *testing.T) {
// Test Run
cache := new(testCache)
ui = new(testUi)
bClient.Run(ui, cache)
_, err = bClient.Run(ui, cache)
assert.True(b.runCalled, "run should be called")
assert.Nil(err, "should not error")
// Test the UI given to run, which should be fully functional
if b.runCalled {
......@@ -82,6 +91,11 @@ func TestBuildRPC(t *testing.T) {
assert.Equal(ui.sayMessage, "format", "message should be correct")
}
// Test run with an error
b.errRunResult = true
_, err = bClient.Run(ui, cache)
assert.NotNil(err, "should not nil")
// Test Cancel
bClient.Cancel()
assert.True(b.cancelCalled, "cancel should be called")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment