Browse Source

Add HTTPS Support check for Yes or No

pull/385/head
Dave Machado 6 years ago
parent
commit
34b8ba3164
1 changed files with 13 additions and 7 deletions
  1. +13
    -7
      build/validate.rb

+ 13
- 7
build/validate.rb View File

@@ -1,11 +1,11 @@
#!/usr/bin/env ruby
auth_keys = ['apiKey', 'OAuth', 'X-Mashape-Key', 'No']
https_keys = ['Yes', 'No']

args = ARGV
filename = args[0]

fail_flag = false
fail_count = 0
File.foreach(filename).with_index do |line, line_num|
line_num += 1
# puts "#{line_num}: #{line}"
@@ -14,14 +14,20 @@ File.foreach(filename).with_index do |line, line_num|
if line.eql? "|---|---|---|---|---|\n"
next
end

values = line.split("|")
# Check Auth Values to conform to valid options only

# Check Auth values to conform to valid options only
auth_val = values[3].lstrip.chop.tr('``', '')
if !auth_keys.include? auth_val
puts "(#{line_num}) Invalid Auth (#{auth_val}): #{line}"
fail_flag = false
fail_count += 1
if !auth_keys.include?(auth_val)
puts "(#{line_num}) Invalid Auth (not a valid option): #{auth_val}"
fail_flag = true
end

# Check HTTPS Support values to be either "Yes" or "No"
https_val = values[4].lstrip.chop
if !https_keys.include?(https_val)
puts "(#{line_num}) Invalid HTTPS: (must use \"Yes\" or \"No\"): #{https_val}"
fail_flag = true
end
end
end

Loading…
Cancel
Save