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
|
# frozen_string_literal: true
# coding: utf-8
RSpec.describe HTTP::FormData::File do
let(:opts) { nil }
let(:form_file) { described_class.new(file, opts) }
describe "#size" do
subject { form_file.size }
context "when file given as a String" do
let(:file) { fixture("the-http-gem.info").to_s }
it { is_expected.to eq fixture("the-http-gem.info").size }
end
context "when file given as a Pathname" do
let(:file) { fixture("the-http-gem.info") }
it { is_expected.to eq fixture("the-http-gem.info").size }
end
context "when file given as File" do
let(:file) { fixture("the-http-gem.info").open }
after { file.close }
it { is_expected.to eq fixture("the-http-gem.info").size }
end
context "when file given as IO" do
let(:file) { StringIO.new "привет мир!" }
it { is_expected.to eq 20 }
end
end
describe "#to_s" do
subject { form_file.to_s }
context "when file given as a String" do
let(:file) { fixture("the-http-gem.info").to_s }
it { is_expected.to eq fixture("the-http-gem.info").read(:mode => "rb") }
it "rewinds content" do
content = form_file.read
expect(form_file.to_s).to eq content
expect(form_file.read).to eq content
end
end
context "when file given as a Pathname" do
let(:file) { fixture("the-http-gem.info") }
it { is_expected.to eq fixture("the-http-gem.info").read(:mode => "rb") }
it "rewinds content" do
content = form_file.read
expect(form_file.to_s).to eq content
expect(form_file.read).to eq content
end
end
context "when file given as File" do
let(:file) { fixture("the-http-gem.info").open("rb") }
after { file.close }
it { is_expected.to eq fixture("the-http-gem.info").read(:mode => "rb") }
it "rewinds content" do
content = form_file.read
expect(form_file.to_s).to eq content
expect(form_file.read).to eq content
end
end
context "when file given as IO" do
let(:file) { StringIO.new "привет мир!" }
it { is_expected.to eq "привет мир!" }
it "rewinds content" do
content = form_file.read
expect(form_file.to_s).to eq content
expect(form_file.read).to eq content
end
end
end
describe "#read" do
subject { form_file.read }
context "when file given as a String" do
let(:file) { fixture("the-http-gem.info").to_s }
it { is_expected.to eq fixture("the-http-gem.info").read(:mode => "rb") }
end
context "when file given as a Pathname" do
let(:file) { fixture("the-http-gem.info") }
it { is_expected.to eq fixture("the-http-gem.info").read(:mode => "rb") }
end
context "when file given as File" do
let(:file) { fixture("the-http-gem.info").open("rb") }
after { file.close }
it { is_expected.to eq fixture("the-http-gem.info").read(:mode => "rb") }
end
context "when file given as IO" do
let(:file) { StringIO.new "привет мир!" }
it { is_expected.to eq "привет мир!" }
end
end
describe "#rewind" do
context "when file given as a String" do
let(:file) { fixture("the-http-gem.info").to_s }
it "rewinds the underlying IO object" do
content = form_file.read
form_file.rewind
expect(form_file.read).to eq content
end
end
context "when file given as a Pathname" do
let(:file) { fixture("the-http-gem.info") }
it "rewinds the underlying IO object" do
content = form_file.read
form_file.rewind
expect(form_file.read).to eq content
end
end
context "when file given as File" do
let(:file) { fixture("the-http-gem.info").open("rb") }
after { file.close }
it "rewinds the underlying IO object" do
content = form_file.read
form_file.rewind
expect(form_file.read).to eq content
end
end
context "when file given as IO" do
let(:file) { StringIO.new "привет мир!" }
it "rewinds the underlying IO object" do
content = form_file.read
form_file.rewind
expect(form_file.read).to eq content
end
end
end
describe "#filename" do
subject { form_file.filename }
context "when file given as a String" do
let(:file) { fixture("the-http-gem.info").to_s }
it { is_expected.to eq ::File.basename file }
context "and filename given with options" do
let(:opts) { { :filename => "foobar.txt" } }
it { is_expected.to eq "foobar.txt" }
end
end
context "when file given as a Pathname" do
let(:file) { fixture("the-http-gem.info") }
it { is_expected.to eq ::File.basename file }
context "and filename given with options" do
let(:opts) { { :filename => "foobar.txt" } }
it { is_expected.to eq "foobar.txt" }
end
end
context "when file given as File" do
let(:file) { fixture("the-http-gem.info").open }
after { file.close }
it { is_expected.to eq "the-http-gem.info" }
context "and filename given with options" do
let(:opts) { { :filename => "foobar.txt" } }
it { is_expected.to eq "foobar.txt" }
end
end
context "when file given as IO" do
let(:file) { StringIO.new }
it { is_expected.to eq "stream-#{file.object_id}" }
context "and filename given with options" do
let(:opts) { { :filename => "foobar.txt" } }
it { is_expected.to eq "foobar.txt" }
end
end
end
describe "#content_type" do
let(:file) { StringIO.new }
subject { form_file.content_type }
it { is_expected.to eq "application/octet-stream" }
context "when it was given with options" do
let(:opts) { { :content_type => "application/json" } }
it { is_expected.to eq "application/json" }
end
end
describe "#mime_type" do
it "should be an alias of #content_type" do
expect(described_class.instance_method(:mime_type))
.to eq(described_class.instance_method(:content_type))
end
end
end
|