Class: Specs
Class Method Summary collapse
-
.enter_as_rspec ⇒ Object
Pastes in for the line in the clipboard: Spec.foo “bar”.
- .enter_as_test_from_visit ⇒ Object
- .line_of_test(path, test, bm) ⇒ Object
- .load(choice) ⇒ Object
- .menu ⇒ Object
- .method_missing(func, *args, &block) ⇒ Object
- .run_spec(path, test, bm) ⇒ Object
- .run_spec_in_place ⇒ Object
Class Method Details
.enter_as_rspec ⇒ Object
Pastes in for the line in the clipboard:
Spec.foo "bar"
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/xiki/specs.rb', line 159 def self.enter_as_rspec line = Line.value orig = Location.new clazz = View.file_name[/(\w+)_spec\.rb/, 1] path = "xiki/tests/#{clazz}/" # If on describe, just append and done if line =~ /^ *describe/ describe = line[/"(.+)"/, 1] path << "#{describe}/" else # If on it, grab, then go to describe test = line[/"(.+)"/, 1] Search.backward "^ *describe " describe = Line[/"(.+)"/, 1] path << "#{describe}/#{test}/" end View.layout_todo :no_blink=>1 View.to_highest View.insert("\n", :dont_move=>1) unless line.empty? # Make room if line not blank View.insert("\n", :dont_move=>1) if Line.value(2) =~ /^>/ # Add extra space if heading is after! View.insert path Move.to_axis orig.go end |
.enter_as_test_from_visit ⇒ Object
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/xiki/specs.rb', line 193 def self.enter_as_test_from_visit line = Clipboard[0] params_str = line[/\{(.+)\}/, 1] params = eval "{#{params_str}}" params_symbols = params.map{|k, v| ":#{k}=>#{v.inspect}"} * ",\n " View.insert %Q` it "__" do c = dispatch_to(#{TextUtil.camel_case params['controller']}, #{params['action']}, #{params_symbols}) do |c| end c.body.should =~ /result...__/ end `.unindent end |
.line_of_test(path, test, bm) ⇒ Object
121 122 123 124 125 126 127 128 129 130 |
# File 'lib/xiki/specs.rb', line 121 def self.line_of_test path, test, bm found = nil; number = 1 IO.foreach(Bookmarks["$#{bm}/#{path}"]) do |line| if line =~ /^ *describe.+#{test}\b/ break found = number end number += 1 end found end |
.load(choice) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/xiki/specs.rb', line 17 def self.load choice if choice == "more" return " | > Point | The point is so you can use rspec methods like .should when using | do+run, as an easy transition to creating a spec: | | Launch continue/ above and then launch this line. This servers as | a sort of mini test you can create inline. | + try it out) @ puts 1.should == 2 | " end # Must be "continue/" gem "rspec" require "rspec" return "- loaded!" end |
.menu ⇒ Object
6 7 8 9 10 11 12 13 14 15 |
# File 'lib/xiki/specs.rb', line 6 def self. ' - .load/ | Loads rspec (including the .should method) into the xiki environment: - more/ - continue/ > See << xiki/tests/ ' end |
.method_missing(func, *args, &block) ⇒ Object
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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/xiki/specs.rb', line 40 def method_missing(func, *args, &block) prefix = Keys.prefix bm = nil if args[0].is_a?(Symbol) # If symbol, use that as bookmark bm = args.shift else # Climb tree one level parent = FileTree.parent bm = parent.sub(/./, '') if parent =~ /^:\w+$/ end bm = (bm || 'mt').to_sym # thing, opts = nil, thing if thing.is_a?(Hash) test, quote = args quote = test if args.size == 1 && test =~ /\n/ # If only 1 arg and it's multiline, it must be a quote if quote # If there's a quote, we're jumping, not running quote = Line.value quote =~ /([\.\/].+):(\d+)/ path, line = $1, $2 path.sub! /^\.\//, Bookmarks["$#{bm}"] # Fix relative paths View.open path View.to_line line.to_i return end clazz = func.to_s dir = 'models' # Assume model dir = 'controllers' if clazz =~ /s$/ # If it ends with s, assume controller dir = 'helpers' if clazz =~ /_helpers$/ # Special cases dir = 'controllers' if clazz == "application" # Try in unit/ dir first path = "spec/unit/#{dir}/#{clazz}_spec.rb" # Try just spec/ if not found path = "spec/#{dir}/#{clazz}_spec.rb" if ! File.exists?("#{Bookmarks["$#{bm}"]}#{path}") # If xiki, fix paths # if bm == :x # Ol << "path: #{path.inspect}" # path.sub! /.+\//, 'spec/' # end if prefix == :u # If U prefix, jump to test View.open "#{Bookmarks["$#{bm}"]}#{path}" Keys.clear_prefix View.to_highest if test =~ /^#/ Search.forward "^ *describe .+['\"]#{$el.regexp_quote(test)}['\"]" else Search.forward "^ *it ['\"]#{$el.regexp_quote(test)}['\"]" end Line.to_beginning return end txt = self.run_spec path, test, bm txt.sub! /^F\n\n1\)\n/, '' # Remove 1st few lines txt.sub! /^\.+\n\nFinished in.+\n\n/, '' # Remove 1st when passing txt.sub! /^\(irb\):.+/m, '' # Remove everything after (irb) txt.gsub! /^#{Bookmarks["$#{bm}"]}/m, './' # Shorten the paths txt.sub! /nil\n$/, '' # CodeTree.no_search_option + txt.gsub!(/.+\/gems\/rr-.+\n/, '') txt.gsub!(/.+\/gems\/rspec-.+\n/, '') txt.gsub(/^/, '| ') end |
.run_spec(path, test, bm) ⇒ Object
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
# File 'lib/xiki/specs.rb', line 132 def self.run_spec path, test, bm params = [path] if test =~ /^#/ # If starts with #, find line number found = self.line_of_test path, test, bm params << "-l" << (found ? "#{found}" : "0") elsif test.is_a?(String) params << "-e" << test end # command = bm == :x ? # command = "Spec::Runner::CommandLine.run(Spec::Runner::OptionParser.parse(#{params.inspect}, $out_bufr, $out_bufr))" : # Rails command = "require 'spec'; reload!; Spec::Runner::CommandLine.run(Spec::Runner::OptionParser.parse(#{params.inspect}, $out_bufr, $out_bufr))" # Assume merb if a merb file exists # Merb if File.exists?(Bookmarks["$#{bm}/bin/merb"]) command = "Merb::Mailer.delivery_method=:test_send; Spec::Runner::CommandLine.run(Spec::Runner::OptionParser.parse(#{params.inspect}, $out_bufr, $out_bufr)); Merb::Mailer.delivery_method=nil" end result = RubyConsole[bm].run(command) result end |
.run_spec_in_place ⇒ Object
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
# File 'lib/xiki/specs.rb', line 212 def self.run_spec_in_place Keys.clear_prefix cursor = View.cursor path = View.file.sub /.+\/spec\//, 'spec/' command = "rspec #{path}:#{View.line}" result = Console.run command, :dir=>"$x", :sync=>true result = result.gsub(/^/, ' # ').gsub(/ +$/, '') Search.forward '^ +end$' Move.forward View.insert result View.cursor = cursor end |