Sha256: e0e9cbbcc4377e7aeba174871b56c481ebbd4c98a10edc3113206a1631931387
Contents?: true
Size: 1.46 KB
Versions: 2
Compression:
Stored size: 1.46 KB
Contents
module Fakeit module Openapi module Example def array_example(options) example_options = add_depth(options) if example_options[:use_static][type: 'array', property: example_options[:property]] generate_array_example(example_options, -> { min_array }) else generate_array_example(example_options, -> { random_array_size(example_options) }) end end private def generate_array_example(example_options, get_size) size = retries = get_size[] [].tap { |result| generate_items(size, retries, example_options, result) } end def random_array_size(example_options) uniqueItems ? min_array : Faker::Number.between(from: min_array, to: max_array(example_options[:depth])) end def generate_items(size, retries, example_options, result) loop do item = items.to_example(example_options) if need_retry?(item, result, retries) retries -= 1 elsif (result << item).size >= size break end end end def add_depth(example_options) { **example_options, depth: example_options[:depth] + 1 } end def need_retry?(item, result, retries) uniqueItems && result.include?(item) && retries.positive? end def min_array minItems || 1 end def max_array(depth) maxItems || min_array + (depth > 1 ? 2 : 9) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fakeit-0.4.2 | lib/fakeit/openapi/example/array_example.rb |
fakeit-0.4.1 | lib/fakeit/openapi/example/array_example.rb |