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
3957d3da
Commit
3957d3da
authored
Jul 02, 2013
by
Eric Lathrop
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement file upload provisioner per #118.
parent
6591f8e9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
192 additions
and
0 deletions
+192
-0
config.go
config.go
+1
-0
plugin/provisioner-file/main.go
plugin/provisioner-file/main.go
+10
-0
provisioner/file/provisioner.go
provisioner/file/provisioner.go
+53
-0
provisioner/file/provisioner_test.go
provisioner/file/provisioner_test.go
+128
-0
No files found.
config.go
View file @
3957d3da
...
...
@@ -35,6 +35,7 @@ const defaultConfig = `
},
"provisioners": {
"file": "packer-provisioner-file",
"shell": "packer-provisioner-shell"
}
}
...
...
plugin/provisioner-file/main.go
0 → 100644
View file @
3957d3da
package
main
import
(
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/packer/provisioner/file"
)
func
main
()
{
plugin
.
ServeProvisioner
(
new
(
file
.
Provisioner
))
}
provisioner/file/provisioner.go
0 → 100644
View file @
3957d3da
package
file
import
(
"errors"
"fmt"
"github.com/mitchellh/mapstructure"
"github.com/mitchellh/packer/packer"
"os"
)
type
config
struct
{
// The local path of the file to upload.
Source
string
// The remote path where the local file will be uploaded to.
Destination
string
}
type
Provisioner
struct
{
config
config
}
func
(
p
*
Provisioner
)
Prepare
(
raws
...
interface
{})
error
{
for
_
,
raw
:=
range
raws
{
if
err
:=
mapstructure
.
Decode
(
raw
,
&
p
.
config
);
err
!=
nil
{
return
err
}
}
errs
:=
[]
error
{}
if
_
,
err
:=
os
.
Stat
(
p
.
config
.
Source
);
err
!=
nil
{
errs
=
append
(
errs
,
fmt
.
Errorf
(
"Bad source file '%s': %s"
,
p
.
config
.
Source
,
err
))
}
if
len
(
p
.
config
.
Destination
)
==
0
{
errs
=
append
(
errs
,
errors
.
New
(
"Destination must be specified."
))
}
if
len
(
errs
)
>
0
{
return
&
packer
.
MultiError
{
errs
}
}
return
nil
}
func
(
p
*
Provisioner
)
Provision
(
ui
packer
.
Ui
,
comm
packer
.
Communicator
)
error
{
ui
.
Say
(
fmt
.
Sprintf
(
"Uploading %s => %s"
,
p
.
config
.
Source
,
p
.
config
.
Destination
))
f
,
err
:=
os
.
Open
(
p
.
config
.
Source
)
if
err
!=
nil
{
return
err
}
return
comm
.
Upload
(
p
.
config
.
Destination
,
f
)
}
provisioner/file/provisioner_test.go
0 → 100644
View file @
3957d3da
package
file
import
(
"github.com/mitchellh/packer/packer"
"io"
"io/ioutil"
"os"
"strings"
"testing"
)
func
TestProvisioner_Impl
(
t
*
testing
.
T
)
{
var
raw
interface
{}
raw
=
&
Provisioner
{}
if
_
,
ok
:=
raw
.
(
packer
.
Provisioner
);
!
ok
{
t
.
Fatalf
(
"must be a provisioner"
)
}
}
func
TestProvisionerPrepare_InvalidSource
(
t
*
testing
.
T
)
{
var
p
Provisioner
config
:=
map
[
string
]
interface
{}{
"source"
:
"/this/should/not/exist"
,
"destination"
:
"something"
}
err
:=
p
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatalf
(
"should require existing file"
)
}
}
func
TestProvisionerPrepare_ValidSource
(
t
*
testing
.
T
)
{
var
p
Provisioner
tf
,
err
:=
ioutil
.
TempFile
(
""
,
"packer"
)
if
err
!=
nil
{
t
.
Fatalf
(
"error tempfile: %s"
,
err
)
}
defer
os
.
Remove
(
tf
.
Name
())
config
:=
map
[
string
]
interface
{}{
"source"
:
tf
.
Name
(),
"destination"
:
"something"
}
err
=
p
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Fatalf
(
"should allow valid file: %s"
,
err
)
}
}
func
TestProvisionerPrepare_EmptyDestination
(
t
*
testing
.
T
)
{
var
p
Provisioner
config
:=
map
[
string
]
interface
{}{
"source"
:
"/this/exists"
}
err
:=
p
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatalf
(
"should require destination path"
)
}
}
type
stubUploadCommunicator
struct
{
dest
string
data
io
.
Reader
}
func
(
suc
*
stubUploadCommunicator
)
Download
(
src
string
,
data
io
.
Writer
)
error
{
return
nil
}
func
(
suc
*
stubUploadCommunicator
)
Upload
(
dest
string
,
data
io
.
Reader
)
error
{
suc
.
dest
=
dest
suc
.
data
=
data
return
nil
}
func
(
suc
*
stubUploadCommunicator
)
Start
(
cmd
*
packer
.
RemoteCmd
)
error
{
return
nil
}
type
stubUi
struct
{
sayMessages
string
}
func
(
su
*
stubUi
)
Ask
(
string
)
(
string
,
error
)
{
return
""
,
nil
}
func
(
su
*
stubUi
)
Error
(
string
)
{
}
func
(
su
*
stubUi
)
Message
(
string
)
{
}
func
(
su
*
stubUi
)
Say
(
msg
string
)
{
su
.
sayMessages
+=
msg
}
func
TestProvisionerProvision_SendsFile
(
t
*
testing
.
T
)
{
var
p
Provisioner
tf
,
err
:=
ioutil
.
TempFile
(
""
,
"packer"
)
if
err
!=
nil
{
t
.
Fatalf
(
"error tempfile: %s"
,
err
)
}
defer
os
.
Remove
(
tf
.
Name
())
if
_
,
err
=
tf
.
Write
([]
byte
(
"hello"
));
err
!=
nil
{
t
.
Fatalf
(
"error writing tempfile: %s"
,
err
)
}
config
:=
map
[
string
]
interface
{}{
"source"
:
tf
.
Name
(),
"destination"
:
"something"
}
p
.
Prepare
(
config
)
ui
:=
&
stubUi
{}
comm
:=
&
stubUploadCommunicator
{}
err
=
p
.
Provision
(
ui
,
comm
)
if
err
!=
nil
{
t
.
Fatalf
(
"should successfully provision: %s"
,
err
)
}
if
!
strings
.
Contains
(
ui
.
sayMessages
,
tf
.
Name
())
{
t
.
Fatalf
(
"should print source filename"
)
}
if
!
strings
.
Contains
(
ui
.
sayMessages
,
"something"
)
{
t
.
Fatalf
(
"should print destination filename"
)
}
if
comm
.
dest
!=
"something"
{
t
.
Fatalf
(
"should upload to configured destination"
)
}
read
,
err
:=
ioutil
.
ReadAll
(
comm
.
data
)
if
err
!=
nil
||
string
(
read
)
!=
"hello"
{
t
.
Fatalf
(
"should upload with source file's data"
)
}
}
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