Sha256: c2243773c350c20847b91f033263906c03cd6ab2826511700d376a20d1833b8d
Contents?: true
Size: 1.51 KB
Versions: 4
Compression:
Stored size: 1.51 KB
Contents
module Fitting class Statistics class List def initialize(coverage, max_response_path, depth) @coverage = coverage @max_response_path = max_response_path @depth = depth end def to_s list_sort.inject([]) do |res, request| res.push("#{request.method}\t#{request.path}#{responses_stat(request)}") end.join("\n") end def list_sort @coverage.sort do |first, second| first.path.to_s <=> second.path.to_s end end def responses_stat(request) tab = "\t" * ((@max_response_path - request.path.to_s.size / 8) + 3) tab + request.responses.to_a.each_with_object([]) do |response, res| response_stat(response, res) end.join(' ') end private def response_stat(response, res) response.json_schemas.map do |json_schema| json_schema_stat(res, json_schema, response) end end def json_schema_stat(res, json_schema, response) case @depth when 'valid' if json_schema.bodies == [] res.push("✖ #{response.status}") else res.push("✔ #{response.status}") end when 'cover' res.push("#{json_schema.cover}% #{response.status}") when 'cover_enum' res.push("#{json_schema.cover_enum}% #{response.status}") when 'cover_one_of' res.push("#{json_schema.cover_one_of}% #{response.status}") end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fitting-2.18.3 | lib/fitting/statistics/list.rb |
fitting-2.18.2 | lib/fitting/statistics/list.rb |
fitting-2.18.1 | lib/fitting/statistics/list.rb |
fitting-2.18.0 | lib/fitting/statistics/list.rb |