mirror of
https://github.com/public-apis/public-apis.git
synced 2025-05-24 22:46:19 +02:00
integrate link validation into CI
This commit is contained in:
parent
5fbf817c1c
commit
708f4b7fa9
3 changed files with 8 additions and 56 deletions
|
@ -4,7 +4,7 @@ notifications:
|
||||||
before_install:
|
before_install:
|
||||||
- rvm install 2.4.0
|
- rvm install 2.4.0
|
||||||
install:
|
install:
|
||||||
- gem install awesome_bot
|
- gem install httparty
|
||||||
before_script:
|
before_script:
|
||||||
- cd build
|
- cd build
|
||||||
script:
|
script:
|
||||||
|
@ -12,4 +12,3 @@ script:
|
||||||
after_success:
|
after_success:
|
||||||
- ./build.sh
|
- ./build.sh
|
||||||
- ./deploy.sh
|
- ./deploy.sh
|
||||||
|
|
||||||
|
|
|
@ -1,52 +0,0 @@
|
||||||
#!/usr/bin/env ruby
|
|
||||||
auth_keys = ['apiKey', 'OAuth', 'X-Mashape-Key', 'No']
|
|
||||||
https_keys = ['Yes', 'No']
|
|
||||||
|
|
||||||
args = ARGV
|
|
||||||
filename = args[0]
|
|
||||||
fail_flag = false
|
|
||||||
|
|
||||||
File.foreach(filename).with_index do |line, line_num|
|
|
||||||
line_num += 1
|
|
||||||
if line.start_with?('|')
|
|
||||||
# Skip table schema lines
|
|
||||||
if line.eql? "|---|---|---|---|---|\n"
|
|
||||||
next
|
|
||||||
end
|
|
||||||
values = line.split("|")
|
|
||||||
|
|
||||||
# Check Description to make sure first character is capitalized
|
|
||||||
desc_val = values[2].lstrip.chop
|
|
||||||
if !/[[:upper:]]/.match(desc_val[0])
|
|
||||||
puts "(#{line_num}) Invalid Description (first char not uppercase): #{desc_val}"
|
|
||||||
fail_flag = true
|
|
||||||
end
|
|
||||||
|
|
||||||
# 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 (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
|
|
||||||
|
|
||||||
# Check Link to ensure url is wrapped in "[Go!]" view
|
|
||||||
link_val = values[5].lstrip.chop
|
|
||||||
if !link_val.start_with?("[Go!](") || !link_val.end_with?(')')
|
|
||||||
puts "(#{line_num}) Invalid Link: (format should be \"[Go!](<LINK>)\"): #{link_val}"
|
|
||||||
fail_flag = true
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
if fail_flag
|
|
||||||
exit(1)
|
|
||||||
else
|
|
||||||
exit(0)
|
|
||||||
end
|
|
|
@ -16,11 +16,12 @@ raw_links.each do |link|
|
||||||
links.push(link)
|
links.push(link)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
fails = []
|
||||||
# Fail on any duplicate elements
|
# Fail on any duplicate elements
|
||||||
dup = links.select{|element| links.count(element) > 1}
|
dup = links.select{|element| links.count(element) > 1}
|
||||||
if dup.uniq.length > 0
|
if dup.uniq.length > 0
|
||||||
dup.uniq.each do |e|
|
dup.uniq.each do |e|
|
||||||
puts "Duplicate link: #{e}"
|
fails.push("Duplicate link: #{e}")
|
||||||
end
|
end
|
||||||
fail_flag = true
|
fail_flag = true
|
||||||
end
|
end
|
||||||
|
@ -28,7 +29,6 @@ end
|
||||||
links = links.uniq
|
links = links.uniq
|
||||||
count = 0
|
count = 0
|
||||||
total = links.length
|
total = links.length
|
||||||
fails = []
|
|
||||||
# GET each link and check for valid response code from allowed_codes
|
# GET each link and check for valid response code from allowed_codes
|
||||||
links.each do |link|
|
links.each do |link|
|
||||||
begin
|
begin
|
||||||
|
@ -47,6 +47,11 @@ links.each do |link|
|
||||||
fail_flag = true
|
fail_flag = true
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
if fails.length <= 0
|
||||||
|
puts "all links valid"
|
||||||
|
else
|
||||||
|
puts "-- RESULTS --"
|
||||||
|
end
|
||||||
fails.each do |e|
|
fails.each do |e|
|
||||||
puts e
|
puts e
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue