forked from upserve/docker-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
58 lines (50 loc) · 1.44 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib'))
require 'rake'
require 'docker'
require 'rspec/core/rake_task'
require 'cane/rake_task'
task :default => [:spec, :quality]
RSpec::Core::RakeTask.new do |t|
t.pattern = 'spec/**/*_spec.rb'
end
Cane::RakeTask.new(:quality) do |cane|
cane.canefile = '.cane'
end
dir = File.expand_path(File.dirname(__FILE__))
namespace :vcr do
desc 'Run the full test suite from scratch'
task :spec => [:unpack, :record]
desc 'Download the necessary base images'
task :unpack do
%w( registry busybox tianon/true scratch debian:wheezy ).each do |image|
system "docker pull #{image}"
end
end
desc 'Run spec tests and record VCR cassettes'
task :record do
begin
FileUtils.remove_dir("#{dir}/spec/vcr", true)
registry = Docker::Container.create(
'name' => 'registry',
'Image' => 'registry',
'Env' => ["GUNICORN_OPTS=[--preload]"],
'ExposedPorts' => {
'5000/tcp' => {}
},
'HostConfig' => {
'PortBindings' => { '5000/tcp' => [{ 'HostPort' => '5000' }] }
}
)
registry.start
Rake::Task["spec"].invoke
ensure
registry.kill!.remove unless registry.nil?
end
end
end
desc 'Pull an Ubuntu image'
image 'ubuntu:13.10' do
puts "Pulling ubuntu:13.10"
image = Docker::Image.create('fromImage' => 'ubuntu', 'tag' => '13.10')
puts "Pulled ubuntu:13.10, image id: #{image.id}"
end