Class: Chef::Knife::CookbookTest
Instance Attribute Summary
Attributes inherited from Chef::Knife
#name_args, #ui
Instance Method Summary
collapse
Methods inherited from Chef::Knife
#api_key, category, common_name, #configure_chef, #create_object, #delete_object, deps, #format_rest_error, guess_category, #highlight_config_error, #humanize_exception, #humanize_http_exception, inherited, #initialize, list_commands, load_commands, load_deps, msg, #noauth_rest, #parse_options, #read_config_file, reset_subcommands!, #rest, run, #run_with_pretty_exceptions, #server_url, #show_usage, snake_case_name, subcommand_category, subcommand_class_from, subcommand_loader, subcommands, subcommands_by_category, ui, unnamed?, #username
#convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string, #snake_case_basename
Constructor Details
This class inherits a constructor from Chef::Knife
Instance Method Details
#cookbook_loader ⇒ Object
87
88
89
|
# File 'lib/chef/knife/cookbook_test.rb', line 87
def cookbook_loader
@cookbook_loader ||= Chef::CookbookLoader.new(config[:cookbook_path])
end
|
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# File 'lib/chef/knife/cookbook_test.rb', line 45
def run
config[:cookbook_path] ||= Chef::Config[:cookbook_path]
checked_a_cookbook = false
if config[:all]
cookbook_loader.each do |key, cookbook|
checked_a_cookbook = true
test_cookbook(key)
end
else
@name_args.each do |cb|
ui.info "checking #{cb}"
next unless cookbook_loader.cookbook_exists?(cb)
checked_a_cookbook = true
test_cookbook(cb)
end
end
unless checked_a_cookbook
ui.warn("No cookbooks to test in #{Array(config[:cookbook_path]).join(',')} - is your cookbook path misconfigured?")
end
end
|
#test_cookbook(cookbook) ⇒ Object
67
68
69
70
71
72
73
74
|
# File 'lib/chef/knife/cookbook_test.rb', line 67
def test_cookbook(cookbook)
ui.info("Running syntax check on #{cookbook}")
Array(config[:cookbook_path]).reverse.each do |path|
syntax_checker = Chef::Cookbook::SyntaxCheck.for_cookbook(cookbook, path)
test_ruby(syntax_checker)
test_templates(syntax_checker)
end
end
|
#test_ruby(syntax_checker) ⇒ Object
77
78
79
80
|
# File 'lib/chef/knife/cookbook_test.rb', line 77
def test_ruby(syntax_checker)
ui.info("Validating ruby files")
exit(1) unless syntax_checker.validate_ruby_files
end
|
#test_templates(syntax_checker) ⇒ Object
82
83
84
85
|
# File 'lib/chef/knife/cookbook_test.rb', line 82
def test_templates(syntax_checker)
ui.info("Validating templates")
exit(1) unless syntax_checker.validate_templates
end
|