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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 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 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
# encoding: utf-8
Encoding.default_external="UTF-8" if defined? Encoding
require 'spec_helper'
require 'ostruct'
module RSpec
module Expectations
describe Differ do
context "without --color" do
before { RSpec::Matchers.configuration.stub(:color? => false) }
let(:differ) { RSpec::Expectations::Differ.new }
# color disabled context
describe '#diff_as_string' do
subject { differ.diff_as_string(@expected, @actual) }
it "outputs unified diff of two strings" do
@expected="foo\nbar\nzap\nthis\nis\nsoo\nvery\nvery\nequal\ninsert\na\nline\n"
@actual="foo\nzap\nbar\nthis\nis\nsoo\nvery\nvery\nequal\ninsert\na\nanother\nline\n"
expect(subject).to eql(<<-'EOD')
@@ -1,6 +1,6 @@
foo
-zap
bar
+zap
this
is
soo
@@ -9,6 +9,5 @@
equal
insert
a
-another
line
EOD
end
if RUBY_VERSION.to_f > 1.9
it 'copes with encoded strings', :pending => (Diff::LCS::VERSION < '1.2.2') do
@expected="Tu avec carté {count} itém has".encode('UTF-16LE')
@actual="Tu avec carte {count} item has".encode('UTF-16LE')
expect(subject).to eql(<<-EOD.encode('UTF-16LE'))
@@ -1,2 +1,2 @@
-Tu avec carte {count} item has
+Tu avec carté {count} itém has
EOD
end
it 'copes with encoded strings', :pending => (Diff::LCS::VERSION >= '1.2.2') do
@expected="Tu avec carté {count} itém has".encode('UTF-16LE')
@actual="Tu avec carte {count} item has".encode('UTF-16LE')
expect(subject).to eql 'Could not produce a diff because of the encoding of the string (UTF-16LE)'
end
it 'ouputs a message when encountering differently encoded strings' do
@expected="Tu avec carté {count} itém has".encode('UTF-16LE')
@actual="Tu avec carte {count} item has"
expect(subject).to eql 'Could not produce a diff because the encoding of the actual string (UTF-8) differs from the encoding of the expected string (UTF-16LE)'
end
end
end
describe '#diff_as_object' do
it "outputs unified diff message of two objects" do
animal_class = Class.new do
def initialize(name, species)
@name, @species = name, species
end
def inspect
<<-EOA
<Animal
name=#{@name},
species=#{@species}
>
EOA
end
end
expected = animal_class.new "bob", "giraffe"
actual = animal_class.new "bob", "tortoise"
expected_diff = <<'EOD'
@@ -1,5 +1,5 @@
<Animal
name=bob,
- species=tortoise
+ species=giraffe
>
EOD
diff = differ.diff_as_object(expected,actual)
expect(diff).to eq expected_diff
end
it "outputs unified diff message of two arrays" do
expected = [ :foo, 'bar', :baz, 'quux', :metasyntactic, 'variable', :delta, 'charlie', :width, 'quite wide' ]
actual = [ :foo, 'bar', :baz, 'quux', :metasyntactic, 'variable', :delta, 'tango' , :width, 'very wide' ]
expected_diff = <<'EOD'
@@ -5,7 +5,7 @@
:metasyntactic,
"variable",
:delta,
- "tango",
+ "charlie",
:width,
- "very wide"]
+ "quite wide"]
EOD
diff = differ.diff_as_object(expected,actual)
expect(diff).to eq expected_diff
end
it "outputs unified diff message of two hashes" do
expected = { :foo => 'bar', :baz => 'quux', :metasyntactic => 'variable', :delta => 'charlie', :width =>'quite wide' }
actual = { :foo => 'bar', :metasyntactic => 'variable', :delta => 'charlotte', :width =>'quite wide' }
expected_diff = <<'EOD'
@@ -1,4 +1,5 @@
-:delta => "charlotte",
+:baz => "quux",
+:delta => "charlie",
:foo => "bar",
:metasyntactic => "variable",
:width => "quite wide"
EOD
diff = differ.diff_as_object(expected,actual)
expect(diff).to eq expected_diff
end
it 'outputs unified diff messaoge of two hashes with differing encoding' do
expected_diff = %Q{
@@ -1,2 +1,2 @@
-"a" => "a"
#{ (RUBY_VERSION.to_f > 1.8) ? %Q{+"ö" => "ö"} : '+"\303\266" => "\303\266"' }
}
diff = differ.diff_as_object({'ö' => 'ö'}, {'a' => 'a'})
expect(diff).to eq expected_diff
end
it "outputs unified diff of single line strings" do
expected = "this is one string"
actual = "this is another string"
expected_diff = <<'EOD'
@@ -1,2 +1,2 @@
-"this is another string"
+"this is one string"
EOD
diff = differ.diff_as_object(expected,actual)
expect(diff).to eq expected_diff
end
it "outputs unified diff of multi line strings" do
expected = "this is:\n one string"
actual = "this is:\n another string"
expected_diff = <<'EOD'
@@ -1,3 +1,3 @@
this is:
- another string
+ one string
EOD
diff = differ.diff_as_object(expected,actual)
expect(diff).to eq expected_diff
end
end
end
context "with --color" do
before { RSpec::Matchers.configuration.stub(:color? => true) }
let(:differ) { RSpec::Expectations::Differ.new }
it "outputs colored diffs" do
expected = "foo bar baz"
actual = "foo bang baz"
expected_diff = "\n\e[34m@@ -1,2 +1,2 @@\n\e[0m\e[31m-foo bang baz\n\e[0m\e[32m+foo bar baz\n\e[0m"
diff = differ.diff_as_string(expected,actual)
expect(diff).to eq expected_diff
end
end
end
end
end
|