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