Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
690954cb
Commit
690954cb
authored
Jun 11, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
provisioner/shell: validation
parent
502a3f87
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
89 additions
and
3 deletions
+89
-3
provisioner/shell/provisioner.go
provisioner/shell/provisioner.go
+27
-0
provisioner/shell/provisioner_test.go
provisioner/shell/provisioner_test.go
+62
-3
No files found.
provisioner/shell/provisioner.go
View file @
690954cb
...
...
@@ -5,6 +5,7 @@ package shell
import
(
"bytes"
"fmt"
"errors"
"github.com/mitchellh/iochan"
"github.com/mitchellh/mapstructure"
"github.com/mitchellh/packer/packer"
...
...
@@ -18,6 +19,10 @@ import (
const
DefaultRemotePath
=
"/tmp/script.sh"
type
config
struct
{
// An inline script to execute. Multiple strings are all executed
// in the context of a single shell.
Inline
[]
string
// The local path of the shell script to upload and execute.
Path
string
...
...
@@ -49,10 +54,32 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
p
.
config
.
ExecuteCommand
=
"chmod +x {{.Path}} && {{.Path}}"
}
if
p
.
config
.
Inline
!=
nil
&&
len
(
p
.
config
.
Inline
)
==
0
{
p
.
config
.
Inline
=
nil
}
if
p
.
config
.
RemotePath
==
""
{
p
.
config
.
RemotePath
=
DefaultRemotePath
}
errs
:=
make
([]
error
,
0
)
if
p
.
config
.
Path
==
""
&&
p
.
config
.
Inline
==
nil
{
errs
=
append
(
errs
,
errors
.
New
(
"Either a path or inline script must be specified."
))
}
else
if
p
.
config
.
Path
!=
""
&&
p
.
config
.
Inline
!=
nil
{
errs
=
append
(
errs
,
errors
.
New
(
"Only a path or an inline script can be specified, not both."
))
}
if
p
.
config
.
Path
!=
""
{
if
_
,
err
:=
os
.
Stat
(
p
.
config
.
Path
);
err
!=
nil
{
errs
=
append
(
errs
,
fmt
.
Errorf
(
"Bad script path: %s"
,
err
))
}
}
if
len
(
errs
)
>
0
{
return
&
packer
.
MultiError
{
errs
}
}
return
nil
}
...
...
provisioner/shell/provisioner_test.go
View file @
690954cb
...
...
@@ -2,9 +2,17 @@ package shell
import
(
"github.com/mitchellh/packer/packer"
"io/ioutil"
"os"
"testing"
)
func
testConfig
()
map
[
string
]
interface
{}
{
return
map
[
string
]
interface
{}{
"inline"
:
[]
interface
{}{
"foo"
,
"bar"
},
}
}
func
TestProvisioner_Impl
(
t
*
testing
.
T
)
{
var
raw
interface
{}
raw
=
&
Provisioner
{}
...
...
@@ -14,10 +22,10 @@ func TestProvisioner_Impl(t *testing.T) {
}
func
TestProvisionerPrepare_Defaults
(
t
*
testing
.
T
)
{
raw
:=
map
[
string
]
interface
{}{}
var
p
Provisioner
config
:=
testConfig
()
p
:=
&
Provisioner
{}
err
:=
p
.
Prepare
(
raw
)
err
:=
p
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Fatalf
(
"err: %s"
,
err
)
}
...
...
@@ -26,3 +34,54 @@ func TestProvisionerPrepare_Defaults(t *testing.T) {
t
.
Errorf
(
"unexpected remote path: %s"
,
p
.
config
.
RemotePath
)
}
}
func
TestProvisionerPrepare_Path
(
t
*
testing
.
T
)
{
var
p
Provisioner
config
:=
testConfig
()
delete
(
config
,
"inline"
)
config
[
"path"
]
=
"/this/should/not/exist"
err
:=
p
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatal
(
"should have error"
)
}
// Test with a good one
tf
,
err
:=
ioutil
.
TempFile
(
""
,
"packer"
)
if
err
!=
nil
{
t
.
Fatalf
(
"error tempfile: %s"
,
err
)
}
defer
os
.
Remove
(
tf
.
Name
())
config
[
"path"
]
=
tf
.
Name
()
err
=
p
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Fatalf
(
"should not have error: %s"
,
err
)
}
}
func
TestProvisionerPrepare_PathAndInline
(
t
*
testing
.
T
)
{
var
p
Provisioner
config
:=
testConfig
()
delete
(
config
,
"inline"
)
delete
(
config
,
"path"
)
err
:=
p
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatal
(
"should have error"
)
}
// Test with both
tf
,
err
:=
ioutil
.
TempFile
(
""
,
"packer"
)
if
err
!=
nil
{
t
.
Fatalf
(
"error tempfile: %s"
,
err
)
}
defer
os
.
Remove
(
tf
.
Name
())
config
[
"inline"
]
=
[]
interface
{}{
"foo"
}
config
[
"path"
]
=
tf
.
Name
()
err
=
p
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatal
(
"should have error"
)
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment