run the spec file analyzer through the gauntlet

This commit is contained in:
John Bintz 2011-11-18 06:29:36 -05:00
parent 9b103807ee
commit 4f8e732fa4
3 changed files with 43 additions and 32 deletions

View File

@ -14,7 +14,7 @@ module Jasmine::Headless
data = File.read(file) data = File.read(file)
if data.respond_to?(:encode) if data.respond_to?(:encode)
data.encode!('US-ASCII', 'UTF-8', :invalid => :replace) data.encode!('US-ASCII', 'UTF-8', :invalid => :replace, :undef => :replace)
else else
require 'iconv' require 'iconv'
ic = Iconv.new('UTF-8//IGNORE', 'US-ASCII') ic = Iconv.new('UTF-8//IGNORE', 'US-ASCII')

BIN
spec/files/UTF-8-test.txt Normal file

Binary file not shown.

View File

@ -1,7 +1,6 @@
require 'spec_helper' require 'spec_helper'
describe Jasmine::Headless::SpecFileAnalyzer do describe Jasmine::Headless::SpecFileAnalyzer do
include FakeFS::SpecHelpers
let(:file) { 'file' } let(:file) { 'file' }
let(:analyzer) { described_class.new(file) } let(:analyzer) { described_class.new(file) }
@ -11,45 +10,57 @@ describe Jasmine::Headless::SpecFileAnalyzer do
analyzer.action analyzer.action
end end
before do context 'fake files' do
File.open(file, 'wb') { |fh| fh.print file_data } include FakeFS::SpecHelpers
end
context 'coffeescript' do before do
let(:file_data) do File.open(file, 'wb') { |fh| fh.print file_data }
<<-SPEC
describe 'test', ->
context 'yes', ->
it 'should do something', ->
"yes"
"PR.registerLangHandler(PR.createSimpleLexer([[\"com\",/^#[^\\n\\r]*/,null,\"#\"],[\"pln\",/^[\\t\\n\\r \\xa0]+/,null,\"\\t\\n\\r \xC2\\xa0\"],[\"str\",/^\"(?:[^\"\\\\]|\\\\[\\S\\s])*(?:\"|$)/,null,'\"']],[[\"kwd\",/^(?:ADS|AD|AUG|BZF|BZMF|CAE|CAF|CA|CCS|COM|CS|DAS|DCA|DCOM|DCS|DDOUBL|DIM|DOUBLE|DTCB|DTCF|DV|DXCH|EDRUPT|EXTEND|INCR|INDEX|NDX|INHINT|LXCH|MASK|MSK|MP|MSU|NOOP|OVSK|QXCH|RAND|READ|RELINT|RESUME|RETURN|ROR|RXOR|SQUARE|SU|TCR|TCAA|OVSK|TCF|TC|TS|WAND|WOR|WRITE|XCH|XLQ|XXALQ|ZL|ZQ|ADD|ADZ|SUB|SUZ|MPY|MPR|MPZ|DVP|COM|ABS|CLA|CLZ|LDQ|STO|STQ|ALS|LLS|LRS|TRA|TSQ|TMI|TOV|AXT|TIX|DLY|INP|OUT)\\s/,\n"
SPEC
end end
it 'should get the line numbers' do context 'coffeescript' do
line_numbers['test'].should == [ 1 ] let(:file_data) do
line_numbers['yes'].should == [ 2 ] <<-SPEC
line_numbers['should do something'].should == [ 3 ] describe 'test', ->
context 'yes', ->
it 'should do something', ->
"yes"
SPEC
end
it 'should get the line numbers' do
line_numbers['test'].should == [ 1 ]
line_numbers['yes'].should == [ 2 ]
line_numbers['should do something'].should == [ 3 ]
end
end end
end
context 'javascript' do context 'javascript' do
let(:file_data) do let(:file_data) do
<<-SPEC <<-SPEC
describe('test', function() { describe('test', function() {
context('yes', function() { context('yes', function() {
it('should do something', function() { it('should do something', function() {
});
}); });
}); });
}); SPEC
SPEC end
end
it 'should get the line numbers' do it 'should get the line numbers' do
line_numbers['test'].should == [ 1 ] line_numbers['test'].should == [ 1 ]
line_numbers['yes'].should == [ 2 ] line_numbers['yes'].should == [ 2 ]
line_numbers['should do something'].should == [ 3 ] line_numbers['should do something'].should == [ 3 ]
end
end
end
context 'utf 8' do
let(:analyzer) { described_class.new('spec/files/UTF-8-test.txt') }
let(:file_data) { '' }
it 'should not explode' do
line_numbers
end end
end end
end end