Skip to content
This repository was archived by the owner on Jul 3, 2023. It is now read-only.

Add and force unit tests in packer build process (with simple examples) #68

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packer/base/tests/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "https://rubygems.org"

gem "rake"
gem "serverspec", ">= 2.37.2"
47 changes: 47 additions & 0 deletions packer/base/tests/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.2.5)
multi_json (1.12.1)
net-scp (1.2.1)
net-ssh (>= 2.6.5)
net-ssh (3.2.0)
net-telnet (0.1.1)
rake (10.1.1)
rspec (3.5.0)
rspec-core (~> 3.5.0)
rspec-expectations (~> 3.5.0)
rspec-mocks (~> 3.5.0)
rspec-core (3.5.4)
rspec-support (~> 3.5.0)
rspec-expectations (3.5.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.5.0)
rspec-its (1.2.0)
rspec-core (>= 3.0.0)
rspec-expectations (>= 3.0.0)
rspec-mocks (3.5.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.5.0)
rspec-support (3.5.0)
serverspec (2.37.2)
multi_json
rspec (~> 3.0)
rspec-its
specinfra (~> 2.53)
sfl (2.3)
specinfra (2.66.0)
net-scp
net-ssh (>= 2.7, < 4.0)
net-telnet
sfl

PLATFORMS
ruby

DEPENDENCIES
rake
serverspec (>= 2.37.2)

BUNDLED WITH
1.13.3
6 changes: 6 additions & 0 deletions packer/base/tests/Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
require 'rake'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |t|
t.pattern = 'spec/*_spec.rb'
end
10 changes: 10 additions & 0 deletions packer/base/tests/spec/ntp_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
require 'spec_helper'

describe package('ntp') do
it { should be_installed }
end

describe service('ntp') do
it { should be_enabled }
it { should be_running }
end
3 changes: 3 additions & 0 deletions packer/base/tests/spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
require 'serverspec'

set :backend, :exec
4 changes: 4 additions & 0 deletions packer/ecs/tests/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "https://rubygems.org"

gem "rake"
gem "serverspec", ">= 2.37.2"
47 changes: 47 additions & 0 deletions packer/ecs/tests/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.2.5)
multi_json (1.12.1)
net-scp (1.2.1)
net-ssh (>= 2.6.5)
net-ssh (3.2.0)
net-telnet (0.1.1)
rake (10.1.1)
rspec (3.5.0)
rspec-core (~> 3.5.0)
rspec-expectations (~> 3.5.0)
rspec-mocks (~> 3.5.0)
rspec-core (3.5.4)
rspec-support (~> 3.5.0)
rspec-expectations (3.5.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.5.0)
rspec-its (1.2.0)
rspec-core (>= 3.0.0)
rspec-expectations (>= 3.0.0)
rspec-mocks (3.5.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.5.0)
rspec-support (3.5.0)
serverspec (2.37.2)
multi_json
rspec (~> 3.0)
rspec-its
specinfra (~> 2.53)
sfl (2.3)
specinfra (2.66.0)
net-scp
net-ssh (>= 2.7, < 4.0)
net-telnet
sfl

PLATFORMS
ruby

DEPENDENCIES
rake
serverspec (>= 2.37.2)

BUNDLED WITH
1.13.3
6 changes: 6 additions & 0 deletions packer/ecs/tests/Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
require 'rake'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |t|
t.pattern = 'spec/*_spec.rb'
end
5 changes: 5 additions & 0 deletions packer/ecs/tests/spec/ecs_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
require 'spec_helper'

describe service('ecs-agent') do
it { should be_enabled }
end
3 changes: 3 additions & 0 deletions packer/ecs/tests/spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
require 'serverspec'

set :backend, :exec
26 changes: 23 additions & 3 deletions tools/pack-ami
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,11 @@ class Template(object):
content = BEGIN_SCRIPT,
)

self.test = Script(
name = 'pack-test.sh',
content = TEST_SCRIPT,
)

self.end = Script(
name = 'pack-end.sh',
content = END_SCRIPT,
Expand Down Expand Up @@ -314,16 +319,23 @@ class Template(object):
p1 = { 'type': 'shell', 'scripts': self.scripts() }
ex = self.execute_command()

p2 = {
'type' : 'file',
'source' : 'tests',
'destination' : '/tmp',
}

if ex is not None:
p1['execute_command'] = ex

return [p0, p1]
return [p0, p1, p2]

def scripts(self):
scripts = [ ]
scripts.append(self.begin.name)
for s in self._scripts:
scripts.append('scripts/' + s)
scripts.append(self.test.name)
scripts.append(self.end.name)
return scripts

Expand Down Expand Up @@ -369,10 +381,10 @@ class Template(object):
open(os.path.join(pwd, 'stdout.log'), 'wb') as stdout, \
open(os.path.join(pwd, 'stderr.log'), 'wb') as stderr:

for d in ('root', 'scripts'):
for d in ('root', 'scripts', 'tests'):
shutil.copytree(os.path.join(templates_dir, self.name, d), os.path.join(pwd, d))

for s in (self.begin, self.end):
for s in (self.begin, self.test, self.end):
with open(os.path.join(pwd, s.name), 'w') as f:
f.write(s.content)

Expand Down Expand Up @@ -443,6 +455,14 @@ fi
systemctl daemon-reload
"""

TEST_SCRIPT = """#!/bin/bash

sudo gem install bundler --no-ri --no-rdoc
cd /tmp/tests
bundle install --path=vendor
bundle exec rake spec
"""

END_SCRIPT = """#!/bin/bash
set -e

Expand Down