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
|
# frozen_string_literal: true
require 'spec_helper'
describe Ethon::Easy::Http::Custom do
let(:easy) { Ethon::Easy.new }
let(:url) { "http://localhost:3001/" }
let(:params) { nil }
let(:form) { nil }
let(:custom) { described_class.new("PURGE", url, {:params => params, :body => form}) }
describe "#setup" do
context "when nothing" do
it "sets url" do
custom.setup(easy)
expect(easy.url).to eq(url)
end
it "makes a custom request" do
custom.setup(easy)
easy.perform
expect(easy.response_body).to include('"REQUEST_METHOD":"PURGE"')
end
end
context "when params" do
let(:params) { {:a => "1&"} }
it "attaches escaped to url" do
custom.setup(easy)
expect(easy.url).to eq("#{url}?a=1%26")
end
context "when requesting" do
before do
easy.headers = { 'Expect' => '' }
custom.setup(easy)
easy.perform
end
it "is a custom verb" do
expect(easy.response_body).to include('"REQUEST_METHOD":"PURGE"')
end
it "does not use application/x-www-form-urlencoded content type" do
expect(easy.response_body).to_not include('"CONTENT_TYPE":"application/x-www-form-urlencoded"')
end
it "requests parameterized url" do
expect(easy.response_body).to include('"REQUEST_URI":"http://localhost:3001/?a=1%26"')
end
end
end
context "when body" do
context "when multipart" do
let(:form) { {:a => File.open(__FILE__, 'r')} }
it "sets httppost" do
expect(easy).to receive(:httppost=)
custom.setup(easy)
end
context "when requesting" do
before do
easy.headers = { 'Expect' => '' }
custom.setup(easy)
easy.perform
end
it "returns ok" do
expect(easy.return_code).to eq(:ok)
end
it "is a custom verb" do
expect(easy.response_body).to include('"REQUEST_METHOD":"PURGE"')
end
it "uses multipart/form-data content type" do
expect(easy.response_body).to include('"CONTENT_TYPE":"multipart/form-data')
end
xit "submits a body" do
expect(easy.response_body).to match('"body":".+"')
end
it "submits the data" do
expect(easy.response_body).to include('"filename":"custom_spec.rb"')
end
end
end
context "when not multipart" do
let(:form) { {:a => "1&b=2"} }
let(:encoded) { "a=1%26b%3D2" }
it "sets escaped copypostfields" do
expect(easy).to receive(:copypostfields=).with(encoded)
custom.setup(easy)
end
it "sets postfieldsize" do
expect(easy).to receive(:postfieldsize=).with(encoded.bytesize)
custom.setup(easy)
end
context "when requesting" do
before do
easy.headers = { 'Expect' => '' }
custom.setup(easy)
easy.perform
end
it "returns ok" do
expect(easy.return_code).to eq(:ok)
end
it "is a custom verb" do
expect(easy.response_body).to include('"REQUEST_METHOD":"PURGE"')
end
it "uses multipart/form-data content type" do
expect(easy.response_body).to include('"CONTENT_TYPE":"application/x-www-form-urlencoded')
end
xit "submits a body" do
expect(easy.response_body).to match('"body":"a=1%26b%3D2"')
end
it "submits the data" do
expect(easy.response_body).to include('"rack.request.form_hash":{"a":"1&b=2"}')
end
end
end
context "when string" do
let(:form) { "{a: 1}" }
context "when requesting" do
before do
easy.headers = { 'Expect' => '' }
custom.setup(easy)
easy.perform
end
it "returns ok" do
expect(easy.return_code).to eq(:ok)
end
xit "sends string" do
expect(easy.response_body).to include('"body":"{a: 1}"')
end
end
end
end
context "when params and body" do
let(:form) { {:a => "1"} }
let(:params) { {:b => "2"} }
context "when requesting" do
before do
easy.headers = { 'Expect' => '' }
custom.setup(easy)
easy.perform
end
it "url contains params" do
expect(easy.response_body).to include('"REQUEST_URI":"http://localhost:3001/?b=2"')
end
xit "body contains form" do
expect(easy.response_body).to include('"body":"a=1"')
end
end
end
end
end
|