2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2014-10-02 20:41:52 -04:00
|
|
|
require_dependency "freedom_patches/safe_buffer"
|
|
|
|
|
|
|
|
describe ActiveSupport::SafeBuffer do
|
|
|
|
it "can cope with encoding weirdness" do
|
|
|
|
buffer = ActiveSupport::SafeBuffer.new
|
|
|
|
buffer << "\330".force_encoding("ASCII-8BIT")
|
|
|
|
buffer.force_encoding "ASCII-8BIT"
|
|
|
|
buffer << "hello\330\271"
|
|
|
|
buffer << "hello#{254.chr}".force_encoding("ASCII-8BIT").freeze
|
|
|
|
|
|
|
|
# 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
|