summaryrefslogtreecommitdiff
path: root/spec/unit/http/json_input_spec.rb
blob: a76c8d1dc7dd86fdcb1dfb717a65baa37e27e20a (plain)
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
#--
# Author:: Daniel DeLeo (<dan@chef.io>)
# Copyright:: Copyright 2014-2016, Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require "spec_helper"
require "chef/http/json_input"

describe Chef::HTTP::JSONInput do

  let(:json_encoder) { described_class.new() }

  let(:url) { URI.parse("http://example.com") }
  let(:headers) { {} }

  def handle_request
    json_encoder.handle_request(http_method, url, headers, data)
  end

  it "passes the response unmodified" do
    http_response = double("Net::HTTPSuccess")
    request = double("Chef::HTTP::HTTPRequest")
    return_value = "response body"

    result = json_encoder.handle_response(http_response, request, return_value)
    expect(result).to eq([http_response, request, return_value])
  end

  it "doesn't handle streaming responses" do
    http_response = double("Net::HTTPSuccess")
    expect(json_encoder.stream_response_handler(http_response)).to be nil
  end

  it "does nothing for stream completion" do
    http_response = double("Net::HTTPSuccess")
    request = double("Chef::HTTP::HTTPRequest")
    return_value = "response body"

    result = json_encoder.handle_response(http_response, request, return_value)
    expect(result).to eq([http_response, request, return_value])
  end

  context "when handling a request with no body" do

    let(:http_method) { :get }
    let(:data) { nil }

    it "passes the request unmodified" do
      expect(handle_request).to eq([http_method, url, headers, data])
    end
  end

  context "when the request should be serialized" do

    let(:http_method) { :put }
    let(:data) { { foo: "bar" } }
    let(:expected_data) { %q[{"foo":"bar"}] }

    context "and the request has a ruby object as the body and no explicit content-type" do

      it "serializes the body to json" do
        # Headers Hash get mutated, so we start by asserting it's empty:
        expect(headers).to be_empty

        expect(handle_request).to eq([http_method, url, headers, expected_data])

        # Now the headers Hash should have json content type:
        expect(headers).to have_key("Content-Type")
        expect(headers["Content-Type"]).to eq("application/json")
      end
    end

    context "ant the request has an explicit content type of json" do

      it "serializes the body to json when content-type is all lowercase" do
        headers["content-type"] = "application/json"

        expect(handle_request).to eq([http_method, url, headers, expected_data])

        # Content-Type header should be normalized:
        expect(headers.size).to eq(1)
        expect(headers).to have_key("Content-Type")
        expect(headers["Content-Type"]).to eq("application/json")
      end

    end

  end

  context "when handling a request with an explicit content type other than json" do

    let(:http_method) { :put }
    let(:data) { "some arbitrary bytes" }

    it "does not serialize the body to json when content type is given as lowercase" do
      headers["content-type"] = "application/x-binary"

      expect(handle_request).to eq([http_method, url, headers, data])

      # not normalized
      expect(headers).to eq({ "content-type" => "application/x-binary" })
    end

    it "does not serialize the body to json when content type is given in capitalized form" do
      headers["Content-Type"] = "application/x-binary"

      expect(handle_request).to eq([http_method, url, headers, data])

      # not normalized
      expect(headers).to eq({ "Content-Type" => "application/x-binary" })
    end

  end

end