-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An example comparison for docs #9
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,17 @@ def test_no_match | |
assert_equal [], results | ||
end | ||
|
||
def assert_heuristics(hash) | ||
candidates = hash.keys.map { |l| Language[l] } | ||
|
||
hash.each do |language, blobs| | ||
Array(blobs).each do |blob| | ||
result = Heuristics.call(file_blob(blob), candidates) | ||
assert_equal [Language[language]], result, "Failed for #{blob}" | ||
end | ||
end | ||
end | ||
|
||
# Candidate languages = ["C++", "Objective-C"] | ||
def test_obj_c_by_heuristics | ||
# Only calling out '.h' filenames as these are the ones causing issues | ||
|
@@ -148,17 +159,6 @@ def test_cs_by_heuristics | |
}) | ||
end | ||
|
||
def assert_heuristics(hash) | ||
candidates = hash.keys.map { |l| Language[l] } | ||
|
||
hash.each do |language, blobs| | ||
Array(blobs).each do |blob| | ||
result = Heuristics.call(file_blob(blob), candidates) | ||
assert_equal [Language[language]], result, "Failed for #{blob}" | ||
end | ||
end | ||
end | ||
|
||
def test_ls_by_heuristics | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. History There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Call log There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
assert_heuristics({ | ||
"LiveScript" => "LiveScript/hello.ls", | ||
|
@@ -172,4 +172,20 @@ def test_ts_by_heuristics | |
"XML" => all_fixtures("XML", "*.ts") | ||
}) | ||
end | ||
|
||
def output_languages(languages) | ||
languages.map { |l| l.name }.join(", ") | ||
end | ||
|
||
# If a language extension isn't globally unique then check if we have a heuristic | ||
Linguist::Language.all.each do |language| | ||
define_method "test_#{language.name}_has_adequate_heuristics" do | ||
language.extensions.each do |extension| | ||
languages = Language.find_by_extension(extension) | ||
next if extension == ".script!" || languages.size == 1 | ||
|
||
assert Heuristics.defined_for?(languages), "No heuristic for #{extension} and #{output_languages(languages)}" | ||
end | ||
end | ||
end | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Histiry
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
History