forked from Nerds/NerdPursuit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
validate_all.rb
29 lines (24 loc) · 1.03 KB
/
validate_all.rb
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
#encoding: UTF-8
require 'minitest/autorun'
require 'json-schema'
require 'json'
SCHEMA_FILE = File.join(File.dirname(File.expand_path(__FILE__)) , 'schema', 'question.json')
QUESTIONS_PATH = File.join(File.dirname(File.expand_path(__FILE__)) , 'questions')
schema = File.open(SCHEMA_FILE) { |f| JSON.parse(f.read) }
describe 'question' do
Dir["#{QUESTIONS_PATH}/**/*\.*"].each do |file|
it "#{file.sub(/(\..*$)/,'').sub(/^#{QUESTIONS_PATH}/,'')} contains valid json" do
begin
question = File.open(file) { |f| JSON.parse(f.read.force_encoding('UTF-8')) }['question']
JSON::Validator.validate!(schema, question, :version=> :draft3 )
rescue JSON::Schema::ValidationError => schema_error
assertion = false, schema_error.message + "\nIn: #{file}\n[#{question['created_by']}, please fix this and send another pull request!]"
rescue JSON::ParserError => parser_error
assertion = false, parser_error.message
else
assertion = true
end
assert *assertion
end
end
end