summaryrefslogtreecommitdiff
path: root/spec/unit/search/query_spec.rb
blob: a1ec5a1dfbcbcd9f040e30a8f161494bcda0a037 (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
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
#
# Author:: Adam Jacob (<adam@opscode.com>)
# Copyright:: Copyright (c) 2009,2010 Opscode, 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/search/query'

describe Chef::Search::Query do

  let(:rest) { double("Chef::REST") }
  let(:query) { Chef::Search::Query.new }

  before(:each) do
    Chef::REST.stub(:new).and_return(rest)
    rest.stub(:get_rest).and_return(response)
  end

  describe "search" do
    let(:response) { {
      "rows" => [
        { "name" => "my-name-is-node",
          "chef_environment" => "elysium",
          "platform" => "rhel",
          "automatic" => {
            "languages" => {
              "ruby" => {
                "platform" => "nudibranch",
                "version" => "1.9.3",
                "target" => "ming-the-merciless"
              }
            }
          }
        },
        { "name" => "my-name-is-jonas",
          "chef_environment" => "hades",
          "platform" => "rhel",
          "automatic" => {
            "languages" => {
              "ruby" => {
                "platform" => "i386-mingw32",
                "version" => "1.9.3",
                "target" => "bilbo"
              }
            }
          }
        },
        { "name" => "my-name-is-flipper",
          "chef_environment" => "elysium",
          "platform" => "rhel",
          "automatic" => {
            "languages" => {
              "ruby" => {
                "platform" => "centos",
                "version" => "2.0.0",
                "target" => "uno"
              }
            }
          }
        },
        { "name" => "my-name-is-butters",
          "chef_environment" => "moon",
          "platform" => "rhel",
          "automatic" => {
            "languages" => {
              "ruby" => {
                "platform" => "solaris2",
                "version" => "2.1.2",
                "target" => "random"
              }
            }
          }
        },
      ],
      "start" => 0,
      "total" => 4
    } }

    it "should accept a type as the first argument" do
      lambda { query.search("node") }.should_not raise_error
      lambda { query.search(:node) }.should_not raise_error
      lambda { query.search(Hash.new) }.should raise_error(ArgumentError)
    end

    it "should query for every object of a type by default" do
      rest.should_receive(:get_rest).with("search/node?q=*:*&sort=X_CHEF_id_CHEF_X%20asc&start=0&rows=1000").and_return(response)
      query.search(:node)
    end

    it "should allow a custom query" do
      rest.should_receive(:get_rest).with("search/node?q=platform:rhel&sort=X_CHEF_id_CHEF_X%20asc&start=0&rows=1000").and_return(response)
      query.search(:node, "platform:rhel")
    end

    it "should let you set a sort order" do
      rest.should_receive(:get_rest).with("search/node?q=platform:rhel&sort=id%20desc&start=0&rows=1000").and_return(response)
      query.search(:node, "platform:rhel", "id desc")
    end

    it "should let you set a starting object" do
      rest.should_receive(:get_rest).with("search/node?q=platform:rhel&sort=id%20desc&start=2&rows=1000").and_return(response)
      query.search(:node, "platform:rhel", "id desc", 2)
    end

    it "should let you set how many rows to return" do
      rest.should_receive(:get_rest).with("search/node?q=platform:rhel&sort=id%20desc&start=2&rows=40").and_return(response)
      query.search(:node, "platform:rhel", "id desc", 2, 40)
    end

    it "should throw an exception if you pass to many options" do
      lambda { query.search(:node, "platform:rhel", "id desc", 2, 40, "wrong") }.should raise_error(ArgumentError)
    end

    it "should return the raw rows, start, and total if no block is passed" do
      rows, start, total = query.search(:node)
      rows.should equal(response["rows"])
      start.should equal(response["start"])
      total.should equal(response["total"])
    end

    it "should call a block for each object in the response" do
      @call_me = double("blocky")
      response["rows"].each { |r| @call_me.should_receive(:do).with(r) }
      query.search(:node) { |r| @call_me.do(r) }
    end

    it "should page through the responses" do
      @call_me = double("blocky")
      response["rows"].each { |r| @call_me.should_receive(:do).with(r) }
      query.search(:node, "*:*", nil, 0, 1) { |r| @call_me.do(r) }
    end

    context "when :filter_result is provided as a result" do
      let(:server_url) { "https://api.opscode.com/organizations/opscode/nodes"}
      let(:response) { {
        "rows" => [
          { "url" => "#{server_url}/my-name-is-node",
            "data" => {
              "env" => "elysium",
              "ruby_plat" => "nudibranch"
            }
          },
          { "url" => "#{server_url}/my-name-is-jonas",
            "data" => {
              "env" => "hades",
              "ruby_plat" => "i386-mingw32"
            }
          },
          { "url" => "#{server_url}/my-name-is-flipper",
            "data" => {
              "env" => "elysium",
              "ruby_plat" => "centos"
            }
          },
          { "url" => "#{server_url}/my-name-is-butters",
            "data" => {
              "env" => "moon",
              "ruby_plat" => "solaris2",
            }
          }
        ],
        "start" => 0,
        "total" => 4
      } }

      it "should return only the filtered data" do
        args = {
          :filter_result => {
            'env' => ['chef_environment'],
            'ruby_plat' => ['languages', 'ruby', 'platform']
          }
        }

        rest.should_receive(:post_rest).with("search/node?q=platform:rhel&sort=X_CHEF_id_CHEF_X%20asc&start=0&rows=1000", args[:filter_result]).and_return(response)
        results, start, total = query.search(:node, "platform:rhel", args)

        results.each_with_index do |result, idx|
          expected = response["rows"][idx]

          result.should have_key('env')
          result['env'].should == expected['data']['env']

          result.should have_key('ruby_plat')
          result['ruby_plat'].should == expected['data']['ruby_plat']
        end
      end
    end
  end
end