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
1750b34f
Commit
1750b34f
authored
Jul 16, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
builder/amazon/*: clean up tests
parent
60ed71b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
160 deletions
+10
-160
builder/amazon/common/run_config_test.go
builder/amazon/common/run_config_test.go
+10
-0
builder/amazon/ebs/builder_test.go
builder/amazon/ebs/builder_test.go
+0
-160
No files found.
builder/amazon/common/run_config_test.go
View file @
1750b34f
package
common
import
(
"os"
"testing"
)
func
init
()
{
// Clear out the AWS access key env vars so they don't
// affect our tests.
os
.
Setenv
(
"AWS_ACCESS_KEY_ID"
,
""
)
os
.
Setenv
(
"AWS_ACCESS_KEY"
,
""
)
os
.
Setenv
(
"AWS_SECRET_ACCESS_KEY"
,
""
)
os
.
Setenv
(
"AWS_SECRET_KEY"
,
""
)
}
func
testConfig
()
*
RunConfig
{
return
&
RunConfig
{
Region
:
"us-east-1"
,
...
...
builder/amazon/ebs/builder_test.go
View file @
1750b34f
...
...
@@ -2,19 +2,9 @@ package ebs
import
(
"github.com/mitchellh/packer/packer"
"os"
"testing"
)
func
init
()
{
// Clear out the AWS access key env vars so they don't
// affect our tests.
os
.
Setenv
(
"AWS_ACCESS_KEY_ID"
,
""
)
os
.
Setenv
(
"AWS_ACCESS_KEY"
,
""
)
os
.
Setenv
(
"AWS_SECRET_ACCESS_KEY"
,
""
)
os
.
Setenv
(
"AWS_SECRET_KEY"
,
""
)
}
func
testConfig
()
map
[
string
]
interface
{}
{
return
map
[
string
]
interface
{}{
"access_key"
:
"foo"
,
...
...
@@ -75,30 +65,6 @@ func TestBuilderPrepare_AMIName(t *testing.T) {
}
}
func
TestBuilderPrepare_InstanceType
(
t
*
testing
.
T
)
{
var
b
Builder
config
:=
testConfig
()
// Test good
config
[
"instance_type"
]
=
"foo"
err
:=
b
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Fatalf
(
"should not have error: %s"
,
err
)
}
if
b
.
config
.
InstanceType
!=
"foo"
{
t
.
Errorf
(
"invalid: %s"
,
b
.
config
.
InstanceType
)
}
// Test bad
delete
(
config
,
"instance_type"
)
b
=
Builder
{}
err
=
b
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatal
(
"should have error"
)
}
}
func
TestBuilderPrepare_InvalidKey
(
t
*
testing
.
T
)
{
var
b
Builder
config
:=
testConfig
()
...
...
@@ -110,129 +76,3 @@ func TestBuilderPrepare_InvalidKey(t *testing.T) {
t
.
Fatal
(
"should have error"
)
}
}
func
TestBuilderPrepare_Region
(
t
*
testing
.
T
)
{
var
b
Builder
config
:=
testConfig
()
// Test good
config
[
"region"
]
=
"us-east-1"
err
:=
b
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Fatalf
(
"should not have error: %s"
,
err
)
}
if
b
.
config
.
Region
!=
"us-east-1"
{
t
.
Errorf
(
"invalid: %s"
,
b
.
config
.
Region
)
}
// Test bad
delete
(
config
,
"region"
)
b
=
Builder
{}
err
=
b
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatal
(
"should have error"
)
}
// Test invalid
config
[
"region"
]
=
"i-am-not-real"
b
=
Builder
{}
err
=
b
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatal
(
"should have error"
)
}
}
func
TestBuilderPrepare_SourceAmi
(
t
*
testing
.
T
)
{
var
b
Builder
config
:=
testConfig
()
// Test good
config
[
"source_ami"
]
=
"foo"
err
:=
b
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Fatalf
(
"should not have error: %s"
,
err
)
}
if
b
.
config
.
SourceAmi
!=
"foo"
{
t
.
Errorf
(
"invalid: %s"
,
b
.
config
.
SourceAmi
)
}
// Test bad
delete
(
config
,
"source_ami"
)
b
=
Builder
{}
err
=
b
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatal
(
"should have error"
)
}
}
func
TestBuilderPrepare_SSHPort
(
t
*
testing
.
T
)
{
var
b
Builder
config
:=
testConfig
()
// Test default
err
:=
b
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Fatalf
(
"should not have error: %s"
,
err
)
}
if
b
.
config
.
SSHPort
!=
22
{
t
.
Errorf
(
"invalid: %d"
,
b
.
config
.
SSHPort
)
}
// Test set
config
[
"ssh_port"
]
=
35
b
=
Builder
{}
err
=
b
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Fatalf
(
"should not have error: %s"
,
err
)
}
if
b
.
config
.
SSHPort
!=
35
{
t
.
Errorf
(
"invalid: %d"
,
b
.
config
.
SSHPort
)
}
}
func
TestBuilderPrepare_SSHTimeout
(
t
*
testing
.
T
)
{
var
b
Builder
config
:=
testConfig
()
// Test with a bad value
config
[
"ssh_timeout"
]
=
"this is not good"
err
:=
b
.
Prepare
(
config
)
if
err
==
nil
{
t
.
Fatal
(
"should have error"
)
}
// Test with a good one
config
[
"ssh_timeout"
]
=
"5s"
err
=
b
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Fatalf
(
"should not have error: %s"
,
err
)
}
}
func
TestBuilderPrepare_SSHUsername
(
t
*
testing
.
T
)
{
var
b
Builder
config
:=
testConfig
()
// Test good
config
[
"ssh_username"
]
=
"foo"
err
:=
b
.
Prepare
(
config
)
if
err
!=
nil
{
t
.
Fatalf
(
"should not have error: %s"
,
err
)
}
if
b
.
config
.
SSHUsername
!=
"foo"
{
t
.
Errorf
(
"invalid: %s"
,
b
.
config
.
SSHUsername
)
}
// Test bad
delete
(
config
,
"ssh_username"
)
b
=
Builder
{}
err
=
b
.
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