2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe ActiveSupport::SafeBuffer do
|
2014-10-03 08:41:52 +08:00
|
|
|
it "can cope with encoding weirdness" do
|
|
|
|
buffer = ActiveSupport::SafeBuffer.new
|
2019-04-30 08:27:42 +08:00
|
|
|
buffer << (+"\330").force_encoding("ASCII-8BIT")
|
2014-10-03 08:41:52 +08:00
|
|
|
buffer.force_encoding "ASCII-8BIT"
|
|
|
|
buffer << "hello\330\271"
|
2019-04-30 08:27:42 +08:00
|
|
|
buffer << (+"hello#{254.chr}").force_encoding("ASCII-8BIT").freeze
|
2014-10-03 08:41:52 +08:00
|
|
|
|
|
|
|
# we pay a cost for force encoding, the h gets dropped
|
2015-01-10 00:34:37 +08:00
|
|
|
expect(buffer).to match(/ello.*hello/)
|
2014-10-03 08:41:52 +08:00
|
|
|
end
|
|
|
|
end
|