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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
|
# -*- encoding: utf-8 -*-
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes.rb', __FILE__)
require File.expand_path('../shared/slice.rb', __FILE__)
describe "String#slice" do
it_behaves_like :string_slice, :slice
end
describe "String#slice with index, length" do
it_behaves_like :string_slice_index_length, :slice
end
describe "String#slice with Range" do
it_behaves_like :string_slice_range, :slice
end
describe "String#slice with Regexp" do
it_behaves_like :string_slice_regexp, :slice
end
describe "String#slice with Regexp, index" do
it_behaves_like :string_slice_regexp_index, :slice
end
ruby_version_is "1.9" do
describe "String#slice with Regexp, group" do
it_behaves_like :string_slice_regexp_group, :slice
end
end
describe "String#slice with String" do
it_behaves_like :string_slice_string, :slice
end
describe "String#slice! with index" do
it "deletes and return the char at the given position" do
a = "hello"
a.slice!(1).should == ?e
a.should == "hllo"
a.slice!(-1).should == ?o
a.should == "hll"
end
it "returns nil if idx is outside of self" do
a = "hello"
a.slice!(20).should == nil
a.should == "hello"
a.slice!(-20).should == nil
a.should == "hello"
end
ruby_version_is ""..."1.9" do
it "raises a TypeError if self is frozen" do
lambda { "hello".freeze.slice!(1) }.should raise_error(TypeError)
end
end
ruby_version_is "1.9" do
it "raises a RuntimeError if self is frozen" do
lambda { "hello".freeze.slice!(1) }.should raise_error(RuntimeError)
lambda { "hello".freeze.slice!(10) }.should raise_error(RuntimeError)
lambda { "".freeze.slice!(0) }.should raise_error(RuntimeError)
end
end
ruby_version_is ""..."1.9" do
it "doesn't raise a TypeError if self is frozen and idx is outside of self" do
"hello".freeze.slice!(10).should be_nil
"".freeze.slice!(0).should be_nil
end
end
it "calls to_int on index" do
"hello".slice!(0.5).should == ?h
obj = mock('1')
# MRI calls this twice so we can't use should_receive here.
def obj.to_int() 1 end
"hello".slice!(obj).should == ?e
obj = mock('1')
def obj.respond_to?(name, *) name == :to_int ? true : super; end
def obj.method_missing(name, *) name == :to_int ? 1 : super; end
"hello".slice!(obj).should == ?e
end
with_feature :encoding do
it "returns the character given by the character index" do
"hellö there".send(@method, 1).should == "e"
"hellö there".send(@method, 4).should == "ö"
"hellö there".send(@method, 6).should == "t"
end
end
end
describe "String#slice! with index, length" do
it "deletes and returns the substring at idx and the given length" do
a = "hello"
a.slice!(1, 2).should == "el"
a.should == "hlo"
a.slice!(1, 0).should == ""
a.should == "hlo"
a.slice!(-2, 4).should == "lo"
a.should == "h"
end
it "always taints resulting strings when self is tainted" do
str = "hello world"
str.taint
str.slice!(0, 0).tainted?.should == true
str.slice!(2, 1).tainted?.should == true
end
it "returns nil if the given position is out of self" do
a = "hello"
a.slice(10, 3).should == nil
a.should == "hello"
a.slice(-10, 20).should == nil
a.should == "hello"
end
it "returns nil if the length is negative" do
a = "hello"
a.slice(4, -3).should == nil
a.should == "hello"
end
ruby_version_is "1.9" do
it "raises a RuntimeError if self is frozen" do
lambda { "hello".freeze.slice!(1, 2) }.should raise_error(RuntimeError)
lambda { "hello".freeze.slice!(10, 3) }.should raise_error(RuntimeError)
lambda { "hello".freeze.slice!(-10, 3)}.should raise_error(RuntimeError)
lambda { "hello".freeze.slice!(4, -3) }.should raise_error(RuntimeError)
lambda { "hello".freeze.slice!(10, 3) }.should raise_error(RuntimeError)
lambda { "hello".freeze.slice!(-10, 3)}.should raise_error(RuntimeError)
lambda { "hello".freeze.slice!(4, -3) }.should raise_error(RuntimeError)
end
end
it "calls to_int on idx and length" do
"hello".slice!(0.5, 2.5).should == "he"
obj = mock('2')
def obj.to_int() 2 end
"hello".slice!(obj, obj).should == "ll"
obj = mock('2')
def obj.respond_to?(name, *) name == :to_int; end
def obj.method_missing(name, *) name == :to_int ? 2 : super; end
"hello".slice!(obj, obj).should == "ll"
end
it "returns subclass instances" do
s = StringSpecs::MyString.new("hello")
s.slice!(0, 0).should be_kind_of(StringSpecs::MyString)
s.slice!(0, 4).should be_kind_of(StringSpecs::MyString)
end
with_feature :encoding do
it "returns the substring given by the character offsets" do
"hellö there".send(@method, 1,0).should == ""
"hellö there".send(@method, 1,3).should == "ell"
"hellö there".send(@method, 1,6).should == "ellö t"
"hellö there".send(@method, 1,9).should == "ellö ther"
end
it "treats invalid bytes as single bytes" do
"a\xE6\xCBb".send(@method, 1, 2).should == "\xe6\xcb"
end
end
end
describe "String#slice! Range" do
it "deletes and return the substring given by the offsets of the range" do
a = "hello"
a.slice!(1..3).should == "ell"
a.should == "ho"
a.slice!(0..0).should == "h"
a.should == "o"
a.slice!(0...0).should == ""
a.should == "o"
# Edge Case?
"hello".slice!(-3..-9).should == ""
end
it "returns nil if the given range is out of self" do
a = "hello"
a.slice!(-6..-9).should == nil
a.should == "hello"
b = "hello"
b.slice!(10..20).should == nil
b.should == "hello"
end
it "always taints resulting strings when self is tainted" do
str = "hello world"
str.taint
str.slice!(0..0).tainted?.should == true
str.slice!(2..3).tainted?.should == true
end
it "returns subclass instances" do
s = StringSpecs::MyString.new("hello")
s.slice!(0...0).should be_kind_of(StringSpecs::MyString)
s.slice!(0..4).should be_kind_of(StringSpecs::MyString)
end
it "calls to_int on range arguments" do
from = mock('from')
to = mock('to')
# So we can construct a range out of them...
def from.<=>(o) 0 end
def to.<=>(o) 0 end
def from.to_int() 1 end
def to.to_int() -2 end
"hello there".slice!(from..to).should == "ello ther"
from = mock('from')
to = mock('to')
def from.<=>(o) 0 end
def to.<=>(o) 0 end
def from.respond_to?(name, *) name == :to_int; end
def from.method_missing(name) name == :to_int ? 1 : super; end
def to.respond_to?(name, *) name == :to_int; end
def to.method_missing(name) name == :to_int ? -2 : super; end
"hello there".slice!(from..to).should == "ello ther"
end
it "works with Range subclasses" do
a = "GOOD"
range_incl = StringSpecs::MyRange.new(1, 2)
a.slice!(range_incl).should == "OO"
end
with_feature :encoding do
it "returns the substring given by the character offsets of the range" do
"hellö there".send(@method, 1..1).should == "e"
"hellö there".send(@method, 1..3).should == "ell"
"hellö there".send(@method, 1...3).should == "el"
"hellö there".send(@method, -4..-2).should == "her"
"hellö there".send(@method, -4...-2).should == "he"
"hellö there".send(@method, 5..-1).should == " there"
"hellö there".send(@method, 5...-1).should == " ther"
end
end
ruby_version_is ""..."1.9" do
it "raises a TypeError on a frozen instance that would be modifed" do
lambda { "hello".freeze.slice!(1..3) }.should raise_error(TypeError)
end
it "does not raise an exception on a frozen instance that would not be modified" do
"hello".freeze.slice!(10..20).should be_nil
end
end
ruby_version_is "1.9" do
it "raises a RuntimeError on a frozen instance that is modified" do
lambda { "hello".freeze.slice!(1..3) }.should raise_error(RuntimeError)
end
# see redmine #1551
it "raises a RuntimeError on a frozen instance that would not be modified" do
lambda { "hello".freeze.slice!(10..20)}.should raise_error(RuntimeError)
end
end
end
describe "String#slice! with Regexp" do
it "deletes and returns the first match from self" do
s = "this is a string"
s.slice!(/s.*t/).should == 's is a st'
s.should == 'thiring'
c = "hello hello"
c.slice!(/llo/).should == "llo"
c.should == "he hello"
end
it "returns nil if there was no match" do
s = "this is a string"
s.slice!(/zzz/).should == nil
s.should == "this is a string"
end
it "always taints resulting strings when self or regexp is tainted" do
strs = ["hello world"]
strs += strs.map { |s| s.dup.taint }
strs.each do |str|
str = str.dup
str.slice!(//).tainted?.should == str.tainted?
str.slice!(/hello/).tainted?.should == str.tainted?
tainted_re = /./
tainted_re.taint
str.slice!(tainted_re).tainted?.should == true
end
end
it "doesn't taint self when regexp is tainted" do
s = "hello"
s.slice!(/./.taint)
s.tainted?.should == false
end
it "returns subclass instances" do
s = StringSpecs::MyString.new("hello")
s.slice!(//).should be_kind_of(StringSpecs::MyString)
s.slice!(/../).should be_kind_of(StringSpecs::MyString)
end
with_feature :encoding do
it "returns the matching portion of self with a multi byte character" do
"hëllo there".send(@method, /[ë](.)\1/).should == "ëll"
"".send(@method, //).should == ""
end
end
it "sets $~ to MatchData when there is a match and nil when there's none" do
'hello'.slice!(/./)
$~[0].should == 'h'
'hello'.slice!(/not/)
$~.should == nil
end
ruby_version_is ""..."1.9" do
it "raises a TypeError on a frozen instance that is modified" do
lambda { "this is a string".freeze.slice!(/s.*t/) }.should raise_error(TypeError)
end
it "does not raise an exception on a frozen instance that would not be modified" do
"this is a string".freeze.slice!(/zzz/).should be_nil
end
end
ruby_version_is "1.9" do
it "raises a RuntimeError on a frozen instance that is modified" do
lambda { "this is a string".freeze.slice!(/s.*t/) }.should raise_error(RuntimeError)
end
it "raises a RuntimeError on a frozen instance that would not be modified" do
lambda { "this is a string".freeze.slice!(/zzz/) }.should raise_error(RuntimeError)
end
end
end
describe "String#slice! with Regexp, index" do
it "deletes and returns the capture for idx from self" do
str = "hello there"
str.slice!(/[aeiou](.)\1/, 0).should == "ell"
str.should == "ho there"
str.slice!(/(t)h/, 1).should == "t"
str.should == "ho here"
end
it "always taints resulting strings when self or regexp is tainted" do
strs = ["hello world"]
strs += strs.map { |s| s.dup.taint }
strs.each do |str|
str = str.dup
str.slice!(//, 0).tainted?.should == str.tainted?
str.slice!(/hello/, 0).tainted?.should == str.tainted?
tainted_re = /(.)(.)(.)/
tainted_re.taint
str.slice!(tainted_re, 1).tainted?.should == true
end
end
it "doesn't taint self when regexp is tainted" do
s = "hello"
s.slice!(/(.)(.)/.taint, 1)
s.tainted?.should == false
end
it "returns nil if there was no match" do
s = "this is a string"
s.slice!(/x(zzz)/, 1).should == nil
s.should == "this is a string"
end
it "returns nil if there is no capture for idx" do
"hello there".slice!(/[aeiou](.)\1/, 2).should == nil
# You can't refer to 0 using negative indices
"hello there".slice!(/[aeiou](.)\1/, -2).should == nil
end
it "calls to_int on idx" do
obj = mock('2')
def obj.to_int() 2 end
"har".slice!(/(.)(.)(.)/, 1.5).should == "h"
"har".slice!(/(.)(.)(.)/, obj).should == "a"
obj = mock('2')
def obj.respond_to?(name, *) name == :to_int; end
def obj.method_missing(name) name == :to_int ? 2: super; end
"har".slice!(/(.)(.)(.)/, obj).should == "a"
end
it "returns subclass instances" do
s = StringSpecs::MyString.new("hello")
s.slice!(/(.)(.)/, 0).should be_kind_of(StringSpecs::MyString)
s.slice!(/(.)(.)/, 1).should be_kind_of(StringSpecs::MyString)
end
with_feature :encoding do
it "returns the encoding aware capture for the given index" do
"hår".send(@method, /(.)(.)(.)/, 0).should == "hår"
"hår".send(@method, /(.)(.)(.)/, 1).should == "h"
"hår".send(@method, /(.)(.)(.)/, 2).should == "å"
"hår".send(@method, /(.)(.)(.)/, 3).should == "r"
"hår".send(@method, /(.)(.)(.)/, -1).should == "r"
"hår".send(@method, /(.)(.)(.)/, -2).should == "å"
"hår".send(@method, /(.)(.)(.)/, -3).should == "h"
end
end
it "sets $~ to MatchData when there is a match and nil when there's none" do
'hello'[/.(.)/, 0]
$~[0].should == 'he'
'hello'[/.(.)/, 1]
$~[1].should == 'e'
'hello'[/not/, 0]
$~.should == nil
end
ruby_version_is ""..."1.9" do
it "raises a TypeError if self is frozen" do
lambda { "this is a string".freeze.slice!(/s.*t/) }.should raise_error(TypeError)
end
it "doesn't raise a TypeError if self is frozen but there is no match" do
"this is a string".freeze.slice!(/zzz/, 0).should == nil
end
it "doesn't raise a TypeError if self is frozen but there is no capture for idx" do
"this is a string".freeze.slice!(/(.)/, 2).should == nil
end
end
ruby_version_is "1.9" do
it "raises a RuntimeError if self is frozen" do
lambda { "this is a string".freeze.slice!(/s.*t/) }.should raise_error(RuntimeError)
lambda { "this is a string".freeze.slice!(/zzz/, 0)}.should raise_error(RuntimeError)
lambda { "this is a string".freeze.slice!(/(.)/, 2)}.should raise_error(RuntimeError)
end
end
end
describe "String#slice! with String" do
it "removes and returns the first occurrence of other_str from self" do
c = "hello hello"
c.slice!('llo').should == "llo"
c.should == "he hello"
end
it "taints resulting strings when other is tainted" do
strs = ["", "hello world", "hello"]
strs += strs.map { |s| s.dup.taint }
strs.each do |str|
str = str.dup
strs.each do |other|
other = other.dup
r = str.slice!(other)
r.tainted?.should == !r.nil? & other.tainted?
end
end
end
it "doesn't set $~" do
$~ = nil
'hello'.slice!('ll')
$~.should == nil
end
it "returns nil if self does not contain other" do
a = "hello"
a.slice!('zzz').should == nil
a.should == "hello"
end
it "doesn't call to_str on its argument" do
o = mock('x')
o.should_not_receive(:to_str)
lambda { "hello".slice!(o) }.should raise_error(TypeError)
end
it "returns a subclass instance when given a subclass instance" do
s = StringSpecs::MyString.new("el")
r = "hello".slice!(s)
r.should == "el"
r.should be_kind_of(StringSpecs::MyString)
end
ruby_version_is ""..."1.9" do
it "raises a TypeError if self is frozen" do
lambda { "hello hello".freeze.slice!('llo') }.should raise_error(TypeError)
end
end
ruby_version_is "1.9" do
it "raises a RuntimeError if self is frozen" do
lambda { "hello hello".freeze.slice!('llo') }.should raise_error(RuntimeError)
lambda { "this is a string".freeze.slice!('zzz')}.should raise_error(RuntimeError)
lambda { "this is a string".freeze.slice!('zzz')}.should raise_error(RuntimeError)
end
end
end
|