-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Add usage instructions for spec runner to compiler #10046
Merged
straight-shoota
merged 5 commits into
crystal-lang:master
from
straight-shoota:feature/compiler-spec-options
Mar 30, 2021
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
efd4a3c
Add usage instructions for spec runner to compiler
straight-shoota 7cf1e1c
Add runtime_options to usage line
straight-shoota 0fb2f26
Merge branch 'master' into feature/compiler-spec-options
straight-shoota cfc7a6f
Remove whitespace in option flag
straight-shoota 348c5f0
Remove `--` from usage
straight-shoota File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
require "option_parser" | ||
|
||
# This file is included in the compiler to add usage instructions for the | ||
# spec runner on `crystal spec --help`. | ||
|
||
module Spec | ||
# :nodoc: | ||
class_property? use_colors = true | ||
|
||
# :nodoc: | ||
class_property pattern : Regex? | ||
|
||
# :nodoc: | ||
class_property line : Int32? | ||
|
||
# :nodoc: | ||
class_property slowest : Int32? | ||
|
||
# :nodoc: | ||
class_property? fail_fast = false | ||
|
||
# :nodoc: | ||
class_property? focus = false | ||
|
||
# :nodoc: | ||
def self.add_location(file, line) | ||
locations = @@locations ||= {} of String => Array(Int32) | ||
lines = locations[File.expand_path(file)] ||= [] of Int32 | ||
lines << line | ||
end | ||
|
||
# :nodoc: | ||
def self.add_tag(tag) | ||
if anti_tag = tag.lchop?('~') | ||
(@@anti_tags ||= Set(String).new) << anti_tag | ||
else | ||
(@@tags ||= Set(String).new) << tag | ||
end | ||
end | ||
|
||
# :nodoc: | ||
class_getter randomizer_seed : UInt64? | ||
class_getter randomizer : Random::PCG32? | ||
|
||
# :nodoc: | ||
def self.order=(mode) | ||
seed = | ||
case mode | ||
when "default" | ||
nil | ||
when "random" | ||
Random::Secure.rand(1..99999).to_u64 # 5 digits or less for simplicity | ||
when UInt64 | ||
mode | ||
else | ||
raise ArgumentError.new("order must be either 'default', 'random', or a numeric seed value") | ||
end | ||
|
||
@@randomizer_seed = seed | ||
@@randomizer = seed ? Random::PCG32.new(seed) : nil | ||
end | ||
|
||
# :nodoc: | ||
class_property option_parser : OptionParser = begin | ||
OptionParser.new do |opts| | ||
opts.banner = "crystal spec runner" | ||
opts.on("-e", "--example STRING", "run examples whose full nested names include STRING") do |pattern| | ||
Spec.pattern = Regex.new(Regex.escape(pattern)) | ||
end | ||
opts.on("-l", "--line LINE", "run examples whose line matches LINE") do |line| | ||
Spec.line = line.to_i | ||
end | ||
opts.on("-p", "--profile", "Print the 10 slowest specs") do | ||
Spec.slowest = 10 | ||
end | ||
opts.on("--fail-fast", "abort the run on first failure") do | ||
Spec.fail_fast = true | ||
end | ||
opts.on("--location file:line", "run example at line 'line' in file 'file', multiple allowed") do |location| | ||
if location =~ /\A(.+?)\:(\d+)\Z/ | ||
Spec.add_location $1, $2.to_i | ||
else | ||
STDERR.puts "location #{location} must be file:line" | ||
exit 1 | ||
end | ||
end | ||
opts.on("--tag TAG", "run examples with the specified TAG, or exclude examples by adding ~ before the TAG.") do |tag| | ||
Spec.add_tag tag | ||
end | ||
opts.on("--order MODE", "run examples in random order by passing MODE as 'random' or to a specific seed by passing MODE as the seed value") do |mode| | ||
if mode == "default" || mode == "random" | ||
Spec.order = mode | ||
elsif seed = mode.to_u64? | ||
Spec.order = seed | ||
else | ||
abort("order must be either 'default', 'random', or a numeric seed value") | ||
end | ||
end | ||
opts.on("--junit_output OUTPUT_PATH", "generate JUnit XML output within the given OUTPUT_PATH") do |output_path| | ||
configure_formatter("junit", output_path) | ||
end | ||
opts.on("-h", "--help", "show this help") do |pattern| | ||
puts opts | ||
exit | ||
end | ||
opts.on("-v", "--verbose", "verbose output") do | ||
configure_formatter("verbose") | ||
end | ||
opts.on("--tap", "Generate TAP output (Test Anything Protocol)") do | ||
configure_formatter("tap") | ||
end | ||
opts.on("--no-color", "Disable colored output") do | ||
Spec.use_colors = false | ||
end | ||
opts.unknown_args do |args| | ||
end | ||
end | ||
end | ||
|
||
# :nodoc: | ||
# | ||
# Blank implementation to reduce the interface of spec's option parser for | ||
# inclusion in the compiler. This avoids depending on more of `Spec` | ||
# module. | ||
# The real implementation in `../spec.cr` overrides this for actual use. | ||
def self.configure_formatter(formatter, output_path = nil) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
The runtime_options can be passed before the file, there is no need to use
--
to split them. Wouldn't that be the preferred way to advertise them?In that line of thought I would call the "Spec runner additional options" or somehing like that.
I find it confusing that they are presented as "Runtime options"
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.
Yes, the
--
can be removed. I'd still leave it as[options] [files] [runtime_options]
even though they can be mixed. Don't think there's a better way to do this and this makes at least sense from a structural PoV.Naming is particularly hard with this one. I'm not convinced
Spec runner additional options
improves it, though. I would have more questions about that thanRuntime options
which is really just a factual description. Those are the options evaluated at runtime by the spec runner, the others are compiler options.