Class: Spec::Translator

Inherits:
Object show all
Defined in:
lib/spec/translator.rb

Instance Method Summary collapse

Instance Method Details

#standard_matcher?(matcher) ⇒ Boolean

Returns:

  • (Boolean)


88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# File 'lib/spec/translator.rb', line 88

def standard_matcher?(matcher)
  patterns = [
    /^be/, 
    /^be_close/,
    /^eql/, 
    /^equal/, 
    /^has/, 
    /^have/, 
    /^change/, 
    /^include/,
    /^match/, 
    /^raise_error/, 
    /^respond_to/, 
    /^redirect_to/, 
    /^satisfy/, 
    /^throw_symbol/,
    # Extra ones that we use in spec_helper
    /^pass/,
    /^fail/,
    /^fail_with/,
  ]
  matched = patterns.detect{ |p| matcher =~ p }
  !matched.nil?
end

#translate(from, to) ⇒ Object



5
6
7
8
9
10
11
12
13
# File 'lib/spec/translator.rb', line 5

def translate(from, to)
  from = File.expand_path(from)
  to = File.expand_path(to)
  if File.directory?(from)
    translate_dir(from, to)
  elsif(from =~ /\.rb$/)
    translate_file(from, to)
  end
end

#translate_dir(from, to) ⇒ Object



15
16
17
18
19
20
21
22
# File 'lib/spec/translator.rb', line 15

def translate_dir(from, to)
  FileUtils.mkdir_p(to) unless File.directory?(to)
  Dir["#{from}/*"].each do |sub_from|
    path = sub_from[from.length+1..-1]
    sub_to = File.join(to, path)
    translate(sub_from, sub_to)
  end
end

#translate_file(from, to) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
# File 'lib/spec/translator.rb', line 24

def translate_file(from, to)
  translation = ""
  File.open(from) do |io|
    io.each_line do |line|
      translation << translate_line(line)
    end
  end
  File.open(to, "w") do |io|
    io.write(translation)
  end
end

#translate_line(line) ⇒ Object



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
# File 'lib/spec/translator.rb', line 36

def translate_line(line)
  # Translate deprecated mock constraints
  line.gsub!(/:any_args/, 'any_args')
  line.gsub!(/:anything/, 'anything')
  line.gsub!(/:boolean/, 'boolean')
  line.gsub!(/:no_args/, 'no_args')
  line.gsub!(/:numeric/, 'an_instance_of(Numeric)')
  line.gsub!(/:string/, 'an_instance_of(String)')

  return line if line =~ /(should_not|should)_receive/
  
  line.gsub!(/(^\s*)context([\s*|\(]['|"|A-Z])/, '\1describe\2')
  line.gsub!(/(^\s*)specify([\s*|\(]['|"|A-Z])/, '\1it\2')
  line.gsub!(/(^\s*)context_setup(\s*[do|\{])/, '\1before(:all)\2')
  line.gsub!(/(^\s*)context_teardown(\s*[do|\{])/, '\1after(:all)\2')
  line.gsub!(/(^\s*)setup(\s*[do|\{])/, '\1before(:each)\2')
  line.gsub!(/(^\s*)teardown(\s*[do|\{])/, '\1after(:each)\2')
  
  if line =~ /(.*\.)(should_not|should)(?:_be)(?!_)(.*)/m
    pre = $1
    should = $2
    post = $3
    be_or_equal = post =~ /(<|>)/ ? "be" : "equal"
    
    return "#{pre}#{should} #{be_or_equal}#{post}"
  end
  
  if line =~ /(.*\.)(should_not|should)_(?!not)\s*(.*)/m
    pre = $1
    should = $2
    post = $3
    
    post.gsub!(/^raise/, 'raise_error')
    post.gsub!(/^throw/, 'throw_symbol')
    
    unless standard_matcher?(post)
      post = "be_#{post}"
    end
    
    # Add parenthesis
    post.gsub!(/^(\w+)\s+([\w|\.|\,|\(.*\)|\'|\"|\:|@| ]+)(\})/, '\1(\2)\3') # inside a block
    post.gsub!(/^(redirect_to)\s+(.*)/, '\1(\2)') # redirect_to, which often has http:
    post.gsub!(/^(\w+)\s+([\w|\.|\,|\(.*\)|\{.*\}|\'|\"|\:|@| ]+)/, '\1(\2)')
    post.gsub!(/(\s+\))/, ')')
    post.gsub!(/\)\}/, ') }')
    post.gsub!(/^(\w+)\s+(\/.*\/)/, '\1(\2)') #regexps
    line = "#{pre}#{should} #{post}"
  end

  line
end