Sha256: c7fb9a07af239df36bbd8def54a4606380fd05095860e9c7475dbbf6cb2877b6
Contents?: true
Size: 903 Bytes
Versions: 2
Compression:
Stored size: 903 Bytes
Contents
require 'spec_helper' describe Gitlab::FileResponse do before do @file_response = Gitlab::FileResponse.new StringIO.new("", 'rb+') end context '.empty?' do it "returns false" do expect(@file_response.empty?).to be false end end context '.to_hash' do it "has `filename` key and `data` key" do h = @file_response.to_hash expect(h.key?(:filename)).to be_truthy expect(h.key?(:data)).to be_truthy end end context '.parse_headers!' do it "parses headers" do @file_response.parse_headers!('Content-Disposition' => 'attachment; filename=artifacts.zip') expect(@file_response.filename).to eq "artifacts.zip" end it "handles quoted filenames" do @file_response.parse_headers!('Content-Disposition' => 'attachment; filename="artifacts.zip"') expect(@file_response.filename).to eq "artifacts.zip" end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gitlab-4.4.0 | spec/gitlab/file_response_spec.rb |
gitlab-4.3.0 | spec/gitlab/file_response_spec.rb |