forked from sds/scss-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunner_spec.rb
123 lines (101 loc) · 3.35 KB
/
runner_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
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
119
120
121
122
123
require 'spec_helper'
describe SCSSLint::Runner do
let(:config_options) do
{
'linters' => {
'FakeLinter1' => { 'enabled' => true },
'FakeLinter2' => { 'enabled' => false },
},
}
end
let(:config) { SCSSLint::Config.new(config_options) }
let(:runner) { described_class.new(config) }
before do
SCSSLint::LinterRegistry.stub(:linters)
.and_return([SCSSLint::Linter::FakeLinter1,
SCSSLint::Linter::FakeLinter2])
end
class SCSSLint::Linter::FakeLinter1 < SCSSLint::Linter; end
class SCSSLint::Linter::FakeLinter2 < SCSSLint::Linter; end
describe '#run' do
let(:files) { [{ path: 'dummy1.scss' }, { path: 'dummy2.scss' }] }
subject { runner.run(files) }
before do
SCSSLint::Engine.stub(:new)
SCSSLint::Linter.any_instance.stub(:run)
end
it 'searches for lints in each file' do
runner.should_receive(:find_lints).exactly(files.size).times
subject
end
context 'when all linters are disabled' do
let(:config_options) do
{
'linters' => {
'FakeLinter1' => { 'enabled' => false },
'FakeLinter2' => { 'enabled' => false },
},
}
end
before do
SCSSLint::Linter.any_instance
.stub(:run)
.and_raise(RuntimeError.new('Linter#run was called'))
end
it 'never runs a linter' do
expect { subject }.to_not raise_error
end
end
context 'when the engine raises a FileEncodingError' do
let(:error) do
SCSSLint::FileEncodingError.new('Some error message')
end
before do
SCSSLint::Engine.stub(:new).and_raise(error)
end
it 'records the error as a lint' do
subject.count.should == 2
end
end
context 'when files ere excluded for one linter' do
let(:config_options) do
{
'linters' => {
'FakeLinter1' => { 'enabled' => true,
'exclude' => [File.expand_path('dummy1.scss'),
File.expand_path('dummy2.scss')] },
'FakeLinter2' => { 'enabled' => false },
},
}
end
before do
SCSSLint::Linter::FakeLinter1.any_instance
.stub(:run)
.and_raise(RuntimeError.new('FakeLinter1#run was called'))
end
it 'does not run the linter for the disabled files' do
expect { subject }.to_not raise_error
end
end
context 'when a linter raises an error' do
let(:backtrace) { %w[file.rb:1 file.rb:2] }
let(:error) do
StandardError.new('Some error message').tap do |e|
e.set_backtrace(backtrace)
end
end
before do
runner.stub(:run_linter).and_raise(error)
end
it 'raises a LinterError' do
expect { subject }.to raise_error(SCSSLint::Exceptions::LinterError)
end
it 'has the name of the file the linter was checking' do
expect { subject }.to raise_error { |e| e.message.should include files.first[:path] }
end
it 'has the same backtrace as the original error' do
expect { subject }.to raise_error { |e| e.backtrace.should == backtrace }
end
end
end
end