blob: 7238f84d437d54f7a9091d9849647fd53e0dbfc6 (
plain)
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
|
#
# kwalify.rb
#
require 'kwalify'
module Puppet::Parser::Functions
newfunction(:kwalify, :type => :statement, :doc => <<-EOS
This function uses kwalify to validate Puppet data structures against Kwalify
schemas.
EOS
) do |args|
raise(Puppet::ParseError, "kwalify(): Wrong number of arguments " +
"given (#{args.size} for 2)") if args.size != 2
schema = args[0]
document = args[1]
validator = Kwalify::Validator.new(schema)
errors = validator.validate(document)
if errors && !errors.empty?
error_out = []
for e in errors
error_out << "[#{e.path}] #{e.message}"
end
raise(Puppet::ParseError, "Failed kwalify schema validation:\n" + error_out.join("\n"))
end
end
end
# vim: set ts=2 sw=2 et :
|