nakischema 0.0.3 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/nakischema.rb +61 -3
- data/nakischema.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f12dd71c0e349bb4c32d404317b64e8f4bfe2d4c
|
4
|
+
data.tar.gz: 56ade8e30f239f41d315b6aefa2bef82e434a605
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b32ad0bd582d777c3a8cf03878b359d95278e0690625a4c6184bf26fff4050e60e972539270799a6927f6dc609d18c3edd63cbf92653b01f4f2f387dff973951
|
7
|
+
data.tar.gz: a014ed22afe9721d23b70eefe0a012188d001db8f8fe179be2c9b0d5557a3e3aa15d5d813ebe78e603cefeb72787c5efb9baf1b17dfc2bd916d6cf7d8c4c95c4
|
data/lib/nakischema.rb
CHANGED
@@ -1,11 +1,17 @@
|
|
1
1
|
module Nakischema
|
2
2
|
Error = Class.new RuntimeError
|
3
|
+
|
3
4
|
def self.validate object, schema, path = []
|
4
5
|
raise_with_path = lambda do |msg, _path = path|
|
5
6
|
raise Error.new "#{msg}#{" (at #{_path})" unless _path.empty?}"
|
6
7
|
end
|
7
8
|
# TODO: maybe move '(at ...)' to the beginning
|
8
9
|
case schema
|
10
|
+
when NilClass, TrueClass, FalseClass, String, Symbol ; raise_with_path.call "expected #{schema.inspect} != #{object.inspect}" unless schema == object
|
11
|
+
# TODO: maybe deprecate the NilClass, TrueClass, FalseClass since they can be asserted via the next case branch
|
12
|
+
when Class ; raise_with_path.call "expected #{schema } != #{object.class }" unless schema === object
|
13
|
+
when Regexp ; raise_with_path.call "expected #{schema } != #{object.inspect}" unless schema === object
|
14
|
+
when Range ; raise_with_path.call "expected #{schema } != #{object }" unless schema.include? object
|
9
15
|
when Hash
|
10
16
|
raise_with_path.call "expected Hash != #{object.class}" unless object.is_a? Hash unless (schema.keys & %i{ keys each_key each_value }).empty?
|
11
17
|
raise_with_path.call "expected Array != #{object.class}" unless object.is_a? Array unless (schema.keys & %i{ size }).empty?
|
@@ -51,9 +57,6 @@ module Nakischema
|
|
51
57
|
raise_with_path.call "unsupported rule #{k.inspect}"
|
52
58
|
end
|
53
59
|
end
|
54
|
-
when NilClass, TrueClass, FalseClass, String, Symbol ; raise_with_path.call "expected #{schema.inspect} != #{object.inspect}" unless schema == object
|
55
|
-
when Regexp ; raise_with_path.call "expected #{schema } != #{object.inspect}" unless schema === object
|
56
|
-
when Range ; raise_with_path.call "expected #{schema } != #{object }" unless schema.include? object
|
57
60
|
when Array
|
58
61
|
if schema.map(&:class) == [Array]
|
59
62
|
raise_with_path.call "expected Array != #{object.class}" unless object.is_a? Array
|
@@ -76,4 +79,59 @@ module Nakischema
|
|
76
79
|
raise_with_path.call "unsupported rule class #{schema.class}"
|
77
80
|
end
|
78
81
|
end
|
82
|
+
|
83
|
+
def self.validate_oga_xml object, schema, path = []
|
84
|
+
raise_with_path = lambda do |msg, _path = path|
|
85
|
+
raise Error.new "#{msg}#{" (at #{_path})" unless _path.empty?}"
|
86
|
+
end
|
87
|
+
case schema
|
88
|
+
when String, Regexp ; raise_with_path.call "expected #{schema.inspect} != #{object.inspect}" unless schema === object
|
89
|
+
when Hash
|
90
|
+
schema.each do |k, v|
|
91
|
+
case k
|
92
|
+
when :size ; raise_with_path.call "expected explicit size #{v} != #{object.size}" unless v.include? object.size
|
93
|
+
when :text ; raise_with_path.call "expected text #{v.inspect} != #{object.text.inspect}" unless v == object.text
|
94
|
+
when :each ; raise_with_path.call "expected iterable != #{object.class}" unless object.respond_to? :each_with_index
|
95
|
+
object.each_with_index{ |e, i| validate_oga_xml e, v, [*path, :"##{i}"] }
|
96
|
+
when :exact ; children = object.xpath "./*"
|
97
|
+
names = children.map(&:name).uniq
|
98
|
+
raise_with_path.call "expected implicit children #{v.keys} != #{names}" unless v.keys == names
|
99
|
+
v.each do |k, v|
|
100
|
+
selected = children.select{ |_| _.name == k }
|
101
|
+
validate_oga_xml selected, v, [*path, k]
|
102
|
+
end
|
103
|
+
when :children ; v.each{ |k, v| validate_oga_xml object.xpath(k.start_with?("./") ? k : "./#{k}"), v, [*path, k] }
|
104
|
+
when :attr_req ; v.each{ |k, v| validate_oga_xml object[k], v, [*path, k] }
|
105
|
+
when :assertions
|
106
|
+
v.each_with_index do |assertion, i|
|
107
|
+
begin
|
108
|
+
raise Error.new "custom assertion failed" unless assertion.call object, [*path, :"assertion##{i}"]
|
109
|
+
rescue Error => e
|
110
|
+
raise_with_path.call e, [*path, :"assertion##{i}"]
|
111
|
+
end
|
112
|
+
end
|
113
|
+
else
|
114
|
+
raise_with_path.call "unsupported rule #{k.inspect}"
|
115
|
+
end
|
116
|
+
end
|
117
|
+
when Array
|
118
|
+
if schema.map(&:class) == [Array]
|
119
|
+
raise_with_path.call "expected implicit size #{schema[0].size} != #{object.size} for #{object.inspect}" unless schema[0].size == object.size
|
120
|
+
object.zip(schema[0]).each_with_index{ |(o, v), i| validate_oga_xml o, v, [*path, :"##{i}"] }
|
121
|
+
else
|
122
|
+
results = schema.lazy.with_index.map do |v, i|
|
123
|
+
begin
|
124
|
+
validate_oga_xml object, v, [*path, :"variant##{i}"]
|
125
|
+
nil
|
126
|
+
rescue Error => e
|
127
|
+
e
|
128
|
+
end
|
129
|
+
end
|
130
|
+
raise Error.new "expected at least one of #{schema.size} rules to match the #{object.inspect}, errors:\n" +
|
131
|
+
results.force.compact.map{ |_| _.to_s.gsub(/^/, " ") }.join("\n") if results.all?
|
132
|
+
end
|
133
|
+
else
|
134
|
+
raise_with_path.call "unsupported rule class #{schema.class}"
|
135
|
+
end
|
136
|
+
end
|
79
137
|
end
|
data/nakischema.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "nakischema"
|
3
|
-
spec.version = "0.
|
3
|
+
spec.version = "0.1.3"
|
4
4
|
spec.summary = "compact yet powerful arbitrary nested objects validator"
|
5
5
|
spec.description = "The most compact yet powerful arbitrary nested objects validator. Especially handy to validate JSONs."
|
6
6
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nakischema
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Victor Maslov aka Nakilon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: The most compact yet powerful arbitrary nested objects validator. Especially
|
14
14
|
handy to validate JSONs.
|