Rename ContextDefinitions to GroupDefinitions

This commit is contained in:
Michael Miller 2018-09-15 10:49:46 -06:00
parent 7968c5a394
commit 010b47ca1f
3 changed files with 22 additions and 21 deletions

View file

@ -10,21 +10,21 @@ module Spectator
macro context(what, type = "Context", &block)
{%
parent_module = @type
safe_name = what.id.stringify.chars.map { |c| ::Spectator::ContextDefinitions::SPECIAL_CHARS[c] || c }.join("").gsub(/\W+/, "_")
safe_name = what.id.stringify.chars.map { |c| ::Spectator::GroupDefinitions::SPECIAL_CHARS[c] || c }.join("").gsub(/\W+/, "_")
module_name = (type.id + safe_name.camelcase).id
absolute_module_name = [parent_module, module_name].join("::").id
what_arg = what.is_a?(StringLiteral) ? what : what.stringify
parent_given = ::Spectator::ContextDefinitions::ALL[parent_module.id][:given]
parent_given = ::Spectator::GroupDefinitions::ALL[parent_module.id][:given]
::Spectator::ContextDefinitions::ALL[absolute_module_name] = {
::Spectator::GroupDefinitions::ALL[absolute_module_name] = {
name: module_name,
parent: parent_module,
given: parent_given.map { |e| e } # Duplicate elements without dup method.
}
%}
::Spectator::ContextDefinitions::MAPPING[{{absolute_module_name.stringify}}] =
ExampleGroup.new({{what_arg}}, ::Spectator::ContextDefinitions::MAPPING[{{parent_module.stringify}}])
::Spectator::GroupDefinitions::MAPPING[{{absolute_module_name.stringify}}] =
ExampleGroup.new({{what_arg}}, ::Spectator::GroupDefinitions::MAPPING[{{parent_module.stringify}}])
module {{module_name.id}}
include {{parent_module}}
@ -51,7 +51,7 @@ module Spectator
context({{collection}}, "Given") do
{%
var_name = block.args.empty? ? "value".id : block.args.first
given_vars = ::Spectator::ContextDefinitions::ALL[parent_module.id][:given]
given_vars = ::Spectator::GroupDefinitions::ALL[parent_module.id][:given]
if given_vars.find { |v| v[:name] == var_name.id }
raise "Duplicate given variable name \"#{var_name.id}\""
end
@ -65,7 +65,7 @@ module Spectator
%collection.first
end
\{% ::Spectator::ContextDefinitions::ALL[@type.id][:given] << {name: "{{var_name}}".id, collection: "{{collection}}".id, type_def: (@type.id + ".{{var_name}}").id} %}
\{% ::Spectator::GroupDefinitions::ALL[@type.id][:given] << {name: "{{var_name}}".id, collection: "{{collection}}".id, type_def: (@type.id + ".{{var_name}}").id} %}
{{block.body}}
end
@ -98,23 +98,23 @@ module Spectator
end
macro before_all(&block)
::Spectator::ContextDefinitions::MAPPING[{{@type.stringify}}].before_all_hooks << -> {{block}}
::Spectator::GroupDefinitions::MAPPING[{{@type.stringify}}].before_all_hooks << -> {{block}}
end
macro before_each(&block)
::Spectator::ContextDefinitions::MAPPING[{{@type.stringify}}].before_each_hooks << -> {{block}}
::Spectator::GroupDefinitions::MAPPING[{{@type.stringify}}].before_each_hooks << -> {{block}}
end
macro after_all(&block)
::Spectator::ContextDefinitions::MAPPING[{{@type.stringify}}].after_all_hooks << -> {{block}}
::Spectator::GroupDefinitions::MAPPING[{{@type.stringify}}].after_all_hooks << -> {{block}}
end
macro after_each(&block)
::Spectator::ContextDefinitions::MAPPING[{{@type.stringify}}].after_each_hooks << -> {{block}}
::Spectator::GroupDefinitions::MAPPING[{{@type.stringify}}].after_each_hooks << -> {{block}}
end
macro around_each(&block)
::Spectator::ContextDefinitions::MAPPING[{{@type.stringify}}].around_each_hooks << Proc(Proc(Nil), Nil).new {{block}}
::Spectator::GroupDefinitions::MAPPING[{{@type.stringify}}].around_each_hooks << Proc(Proc(Nil), Nil).new {{block}}
end
def include_examples
@ -124,9 +124,9 @@ module Spectator
macro it(description, &block)
{%
parent_module = @type
safe_name = description.id.stringify.chars.map { |c| ::Spectator::ContextDefinitions::SPECIAL_CHARS[c] || c }.join("").gsub(/\W+/, "_")
safe_name = description.id.stringify.chars.map { |c| ::Spectator::GroupDefinitions::SPECIAL_CHARS[c] || c }.join("").gsub(/\W+/, "_")
class_name = (safe_name.camelcase + "Example").id
given_vars = ::Spectator::ContextDefinitions::ALL[parent_module.id][:given]
given_vars = ::Spectator::GroupDefinitions::ALL[parent_module.id][:given]
var_names = given_vars.map { |v| v[:name] }
%}
@ -168,7 +168,7 @@ module Spectator
end
end
%current_context = ::Spectator::ContextDefinitions::MAPPING[{{parent_module.stringify}}]
%current_context = ::Spectator::GroupDefinitions::MAPPING[{{parent_module.stringify}}]
{% for given_var, i in given_vars %}
{%
var_name = given_var[:name]
@ -185,9 +185,9 @@ module Spectator
macro pending(description, &block)
{%
parent_module = @type
safe_name = description.id.stringify.chars.map { |c| ::Spectator::ContextDefinitions::SPECIAL_CHARS[c] || c }.join("").gsub(/\W+/, "_")
safe_name = description.id.stringify.chars.map { |c| ::Spectator::GroupDefinitions::SPECIAL_CHARS[c] || c }.join("").gsub(/\W+/, "_")
class_name = (safe_name.camelcase + "Example").id
given_vars = ::Spectator::ContextDefinitions::ALL[parent_module.id][:given]
given_vars = ::Spectator::GroupDefinitions::ALL[parent_module.id][:given]
var_names = given_vars.map { |v| v[:name] }
%}
@ -225,7 +225,7 @@ module Spectator
end
end
%current_context = ::Spectator::ContextDefinitions::MAPPING[{{parent_module.stringify}}]
%current_context = ::Spectator::GroupDefinitions::MAPPING[{{parent_module.stringify}}]
{% for given_var, i in given_vars %}
{%
var_name = given_var[:name]

View file

@ -1,14 +1,15 @@
require "./dsl"
require "./group_definitions"
module Spectator
module Examples
include ::Spectator::DSL
{% ::Spectator::ContextDefinitions::ALL[@type.id] = {
{% ::Spectator::GroupDefinitions::ALL[@type.id] = {
name: "ROOT",
parent: nil,
given: [] of Object
} %}
::Spectator::ContextDefinitions::MAPPING[{{@type.stringify}}] = ::Spectator::ExampleGroup::ROOT
::Spectator::GroupDefinitions::MAPPING[{{@type.stringify}}] = ::Spectator::ExampleGroup::ROOT
end
end

View file

@ -1,5 +1,5 @@
module Spectator
module ContextDefinitions
module GroupDefinitions
ALL = {} of Path => Object
MAPPING = {} of String => ExampleGroup