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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
#!/usr/bin/env ruby
require 'bundler'
require 'bundler/setup'
require 'chef_zero/server'
require 'rspec/core'
tmpdir = nil
def start_local_server(chef_repo_path)
Dir.mkdir(chef_repo_path) if !File.exists?(chef_repo_path)
# 11.6 and below had a bug where it couldn't create the repo children automatically
if Chef::VERSION.to_f < 11.8
%w(clients cookbooks data_bags environments nodes roles users).each do |child|
Dir.mkdir("#{chef_repo_path}/#{child}") if !File.exists?("#{chef_repo_path}/#{child}")
end
end
# Start the new server
Chef::Config.repo_mode = 'everything'
Chef::Config.chef_repo_path = chef_repo_path
Chef::Config.versioned_cookbooks = true
chef_fs = Chef::ChefFS::Config.new.local_fs
data_store = Chef::ChefFS::ChefFSDataStore.new(chef_fs)
data_store = ChefZero::DataStore::V1ToV2Adapter.new(data_store, 'chef', :org_defaults => ChefZero::DataStore::V1ToV2Adapter::ORG_DEFAULTS)
server = ChefZero::Server.new(:port => 8889, :data_store => data_store)#, :log_level => :debug)
server.start_background
server
end
begin
if ENV['CHEF_FS']
require 'chef/chef_fs/chef_fs_data_store'
require 'chef/chef_fs/config'
require 'tmpdir'
require 'fileutils'
require 'chef/version'
require 'chef_zero/data_store/v1_to_v2_adapter'
# Create chef repository
tmpdir = Dir.mktmpdir
chef_repo_path = "#{tmpdir}/repo"
# Capture setup data into master_chef_repo_path
server = start_local_server(chef_repo_path)
elsif ENV['SINGLE_ORG']
server = ChefZero::Server.new(:port => 8889, :single_org => 'singleorg')
server.start_background
else
server = ChefZero::Server.new(:port => 8889, :single_org => false)
server.data_store.create_dir([ 'organizations' ], 'pedant')
server.start_background
end
unless ENV['SKIP_PEDANT']
require 'pedant'
require 'pedant/opensource'
#Pedant::Config.rerun = true
Pedant.config.suite = 'api'
Pedant.config[:config_file] = 'spec/support/pedant.rb'
Pedant.setup([
'--skip-knife',
'--skip-validation',
'--skip-authentication',
'--skip-authorization',
'--skip-omnibus'
])
result = RSpec::Core::Runner.run(Pedant.config.rspec_args)
else
require 'net/http'
response = Net::HTTP.new('127.0.0.1', 8889).get("/environments", { 'Accept' => 'application/json'}).body
if response =~ /_default/
result = 0
else
puts "GET /environments returned #{response}. Expected _default!"
result = 1
end
end
server.stop if server.running?
ensure
FileUtils.remove_entry_secure(tmpdir) if tmpdir
end
exit(result)
|