mirror of
https://github.com/inspec/inspec
synced 2024-11-15 09:27:20 +00:00
populate lazy instance fields
Signed-off-by: Sathish <sbabu@progress.com>
This commit is contained in:
parent
047d54994a
commit
33d54348dc
1 changed files with 21 additions and 0 deletions
|
@ -210,6 +210,27 @@ module FilterTable
|
|||
mark_lazy_field_populated(field_name)
|
||||
end
|
||||
|
||||
def populate_lazy_instance_field(field_name, criterion)
|
||||
return unless is_field_lazy_instance?(field_name)
|
||||
return if field_populated?(field_name)
|
||||
|
||||
raw_data.each do |row|
|
||||
next if row.key?(field_name) # skip row if pre-existing data is present
|
||||
|
||||
lazy_caller = back_for_lazy_instance_field(field_name)
|
||||
if lazy_caller.is_a?(Proc)
|
||||
lazy_caller.call(row, criterion, self)
|
||||
elsif lazy_caller.is_a?(Symbol)
|
||||
if resource_instance.respond_to?(lazy_caller)
|
||||
resource_instance.send(lazy_caller, row, criterion, self)
|
||||
else
|
||||
send(lazy_caller, row, criterion, self)
|
||||
end
|
||||
end
|
||||
end
|
||||
mark_lazy_field_populated(field_name)
|
||||
end
|
||||
|
||||
def is_field_lazy?(sought_field_name)
|
||||
custom_properties_schema.values.any? do |property_struct|
|
||||
sought_field_name == property_struct.field_name && \
|
||||
|
|
Loading…
Reference in a new issue