-
Notifications
You must be signed in to change notification settings - Fork 287
/
readme_checker_test.rb
92 lines (77 loc) · 2.99 KB
/
readme_checker_test.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
require 'rubygems'
require 'bundler'
Bundler.require(:default)
class ReadmeCheckerTest < Test::Unit::TestCase
def readme
@readme ||= File.read('./README.md')
end
def readme_as_html
@readme_as_html ||= Kramdown::Document.new(readme).to_html
end
def elements
@elements ||= Nokogiri::HTML(readme_as_html).css("h3 + ul")
.map { |e| e.css("li a:first-child") }
end
def test_exists_items
assert(false, "Nenhum canal foi encontrado no README.md") if elements.size == 0
end
def test_minimum_items_in_categories
categories_title = Nokogiri::HTML(readme_as_html).css("h3")
elements.each_with_index do |elem, x|
assert(false, "A categoria #{categories_title[x].text} possui menos de 3 canais.") if elem.size < 3
end
end
def test_alphabetic_order
elem_text = -> (node) { node.map { |elem| elem.text.downcase } }
channels = elements.map(&elem_text)
sorted = channels.map do |ch|
ch.sort_by do |channel|
channel.unicode_normalize(:nfkd).encode('ASCII', replace: '').chars
end
end
channels.each_with_index do |group, x|
group.each_with_index do |channel, y|
assert(false, "O canal '#{sorted[x][y]}' deve vir antes de '#{channel}'") if sorted[x][y] != channel
end
end
end
def test_duplicated_links
links_value = ->(node) { node.map { |elem| elem.attributes['href'].value } }
links = {}
elements.map(&links_value).flatten.each_with_index do |link, x|
assert(false, "O link '#{link}' está duplicado") if links[link]
links[link] = true
end
end
def test_tags_presence
items = Nokogiri::HTML(readme_as_html).css("h3 + ul li")
items.each do |item|
assert(false, "O canal #{item.at_css('a').text} não possui tags. Insira as tags relevantes para este canal. Confira a Contributing Guideline e verifique o formato esperado lá.") unless item.at_css('em')
end
end
def test_description_presence
items = Nokogiri::HTML(readme_as_html).css("h3 + ul li")
items.each do |item|
channel_title = item.at_css('a').text
item.css('em, a').remove
text = item.text.strip
assert(false, "O canal #{channel_title} não possui descrição.") if text.empty?
assert(false, "A descrição do canal #{channel_title} não segue as diretrizes da Contributing Guideline. Deve começar com - (hífen) e terminar com . (ponto final).") if text[0] != '-' || text[-1] != "."
end
end
def test_success_links
links_value = ->(node) { node.map { |elem| elem.attributes['href'].value } }
urls = elements.map(&links_value).flatten
hydra = Typhoeus::Hydra.new
failed_requests = []
urls.each do |url|
request = Typhoeus::Request.new(url)
request.on_complete do |response|
failed_requests << response.effective_url if response.failure?
end
hydra.queue(request)
end
hydra.run
assert(false, "As requests para os canais #{failed_requests.join(',')} falharam") if failed_requests.size > 0
end
end