free_mutant/spec/unit/mutant/diff_spec.rb

188 lines
3.8 KiB
Ruby
Raw Normal View History

RSpec.describe Mutant::Diff do
2014-05-11 11:04:11 -04:00
let(:object) { described_class }
describe '.build' do
subject { object.build(old_string, new_string) }
let(:old_string) { "foo\nbar" }
let(:new_string) { "bar\nbaz" }
2014-05-27 11:12:36 -04:00
it { should eql(Mutant::Diff.new(%w[foo bar], %w[bar baz])) }
2014-05-11 11:04:11 -04:00
end
describe '#colorized_diff' do
let(:object) { described_class.new(old, new) }
2014-05-11 11:04:11 -04:00
subject { object.colorized_diff }
2014-05-11 11:04:11 -04:00
context 'when there is a diff at begin of hunk' do
let(:old) { %w[foo bar] }
let(:new) { %w[baz bar] }
2014-05-11 11:04:11 -04:00
let(:expectation) do
[
"@@ -1,3 +1,3 @@\n",
Mutant::Color::RED.format("-foo\n"),
Mutant::Color::GREEN.format("+baz\n"),
" bar\n"
].join
end
2014-05-11 11:04:11 -04:00
it { should eql(expectation) }
2014-05-11 11:04:11 -04:00
it_should_behave_like 'an idempotent method'
2014-05-11 11:04:11 -04:00
end
2016-01-09 18:34:40 -05:00
context 'when there is no diff' do
let(:old) { '' }
let(:new) { '' }
it { should be(nil) }
it_should_behave_like 'an idempotent method'
end
2014-05-11 11:04:11 -04:00
end
describe '#diff' do
let(:object) { described_class.new(old, new) }
subject { object.diff }
context 'when there is a diff at begin and end' do
let(:old) { %w[foo bar foo] }
let(:new) { %w[baz bar baz] }
let(:expectation) do
strip_indent(<<-STR)
@@ -1,4 +1,4 @@
-foo
+baz
bar
-foo
+baz
STR
end
it { should eql(expectation) }
it_should_behave_like 'an idempotent method'
end
2014-05-11 11:04:11 -04:00
context 'when there is a diff at begin of hunk' do
2014-05-27 11:12:36 -04:00
let(:old) { %w[foo bar] }
let(:new) { %w[baz bar] }
2014-05-11 11:04:11 -04:00
let(:expectation) do
strip_indent(<<-STR)
@@ -1,3 +1,3 @@
-foo
+baz
bar
STR
end
it { should eql(expectation) }
it_should_behave_like 'an idempotent method'
end
context 'when there is a diff NOT at begin of hunk' do
2014-05-27 11:12:36 -04:00
let(:old) { %w[foo bar] }
let(:new) { %w[foo baz bar] }
2014-05-11 11:04:11 -04:00
let(:expectation) do
strip_indent(<<-STR)
@@ -1,3 +1,4 @@
foo
+baz
bar
STR
end
it { should eql(expectation) }
it_should_behave_like 'an idempotent method'
end
context 'when the diff has a long context at begin' do
2014-05-27 11:12:36 -04:00
let(:old) { %w[foo bar baz boz a b c] }
let(:new) { %w[foo bar baz boz a b c other] }
2014-05-11 11:04:11 -04:00
let(:expectation) do
strip_indent(<<-STR)
@@ -1,8 +1,9 @@
foo
bar
baz
boz
a
b
c
+other
STR
end
it { should eql(expectation) }
it_should_behave_like 'an idempotent method'
end
context 'when the diff has a long context at end, deleting' do
2014-05-27 11:12:36 -04:00
let(:old) { %w[other foo bar baz boz a b c] }
let(:new) { %w[foo bar baz boz a b c] }
2014-05-11 11:04:11 -04:00
let(:expectation) do
strip_indent(<<-STR)
@@ -1,9 +1,8 @@
-other
foo
bar
baz
boz
a
b
c
STR
end
it { should eql(expectation) }
it_should_behave_like 'an idempotent method'
end
context 'when the diff has a long context at end, inserting' do
2014-05-27 11:12:36 -04:00
let(:old) { %w[foo bar baz boz a b c] }
let(:new) { %w[other foo bar baz boz a b c] }
2014-05-11 11:04:11 -04:00
let(:expectation) do
strip_indent(<<-STR)
@@ -1,8 +1,9 @@
+other
foo
bar
baz
boz
a
b
c
STR
end
it { should eql(expectation) }
it_should_behave_like 'an idempotent method'
end
context 'when there is no diff' do
let(:old) { '' }
let(:new) { '' }
it { should be(nil) }
it_should_behave_like 'an idempotent method'
end
end
end