summaryrefslogtreecommitdiff
path: root/test/query_server_spec.rb
blob: ac519cca5dd6941d4fde23e4061c35b1b8229eae (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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
# 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.


# to run (requires ruby and rspec):
# spec test/query_server_spec.rb -f specdoc --color

COUCH_ROOT = "#{File.dirname(__FILE__)}/.." unless defined?(COUCH_ROOT)


require 'open3'
require 'spec'
require 'json'


JSON_REQ = {
  "body"=>"undefined", 
  "verb"=>"GET", 
  "info"=>{
    "disk_format_version"=>2, 
    "purge_seq"=>0, 
    "doc_count"=>9082, 
    "instance_start_time"=>"1243713611467271", 
    "update_seq"=>9512, 
    "disk_size"=>27541604, 
    "compact_running"=>false, 
    "db_name"=>"toast", 
    "doc_del_count"=>1
  }, 
  "cookie"=>{}, 
  "form"=>{}, 
  "query"=>{"q"=>"stuff"}, 
  "path"=>["toast", "_ext"], 
  "headers"=>{
    "User-Agent"=>"curl/7.18.1 (i386-apple-darwin9.2.2) libcurl/7.18.1 zlib/1.2.3", 
    "Host"=>"localhost:5984", 
    "Accept"=>"*/*"
  }
}

class OSProcessRunner
  def self.run
    trace = false
    puts "launching #{run_command}" if trace
    if block_given?
      Open3.popen3(run_command) do |jsin, jsout, jserr|
        js = QueryServerRunner.new(jsin, jsout, jserr, trace)
        yield js
      end
    else
      jsin, jsout, jserr = Open3.popen3(run_command)
      QueryServerRunner.new(jsin, jsout, jserr, trace)
    end
  end
  def initialize jsin, jsout, jserr, trace = false
    @qsin = jsin
    @qsout = jsout
    @qserr = jserr
    @trace = trace
  end
  def close
    @qsin.close
    @qsout.close
    @qserr.close
  end
  def reset!
    run(["reset"])
  end
  def add_fun(fun)
    run(["add_fun", fun])
  end
  def get_chunk
    resp = jsgets
    raise "not a chunk" unless resp.first == "chunk"
    return resp[1]
  end
  def run json
    rrun json
    jsgets
  end
  def rrun json
    line = json.to_json
    puts "run: #{line}" if @trace
    @qsin.puts line
  end
  def rgets
    resp = @qsout.gets
    puts "got: #{resp}"  if @trace
    resp
  end
  def jsgets
    resp = rgets
    # err = @qserr.gets
    # puts "err: #{err}" if err
    if resp
      rj = JSON.parse("[#{resp.chomp}]")[0]
      if rj.respond_to?(:[]) && !rj.is_a?(Array) && 
        if rj["log"]
          log = rj["log"]
          puts "log: #{log}" #if @trace
          rj = jsgets
        end
      end
      rj
    else
      raise "no response"
    end
  end
end

class QueryServerRunner < OSProcessRunner
  def self.run_command
    "#{COUCH_ROOT}/src/couchdb/couchjs #{COUCH_ROOT}/share/server/main.js"
  end
end

class ExternalRunner < OSProcessRunner
  def self.run_command
    "#{COUCH_ROOT}/src/couchdb/couchjs #{COUCH_ROOT}/share/server/echo.js"
  end
end

describe "query server normal case" do
  before(:all) do
    `cd #{COUCH_ROOT} && make`
    @qs = QueryServerRunner.run
  end
  after(:all) do
    @qs.close
  end
  it "should reset" do
    @qs.run(["reset"]).should == true    
  end
  it "should run map funs" do
    @qs.reset!
    @qs.run(["add_fun", %{function(doc){emit("foo",doc.a); emit("bar",doc.a)}}]).should == true
    @qs.run(["add_fun", %{function(doc){emit("baz",doc.a)}}]).should == true
    rows = @qs.run(["map_doc", {:a => "b"}])
    rows[0][0].should == ["foo", "b"]
    rows[0][1].should == ["bar", "b"]
    rows[1][0].should == ["baz", "b"]
  end
  describe "reduce" do
    before(:all) do
      @fun = <<-JS
        function(keys, values, rereduce) {
          return values.length;
        }
        JS
      @qs.reset!
    end
    it "should reduce" do
      kvs = (0...10).collect{|i|[i,i*2]}
      @qs.run(["reduce", [@fun], kvs]).should == [true, [10]]
    end
  end
  describe "rereduce" do
    before(:all) do
      @fun = <<-JS
        function(keys, values, rereduce) {
          return sum(values);
        }
        JS
      @qs.reset!
    end
    it "should rereduce" do
      vs = (0...10).collect{|i|i}
      @qs.run(["rereduce", [@fun], vs]).should == [true, [45]]
    end
  end
  # it "should validate"
  
  describe "show" do
     before(:all) do
       @fun = <<-JS
         function(doc, req) {
           return [doc.title, doc.body].join(' - ')
         }
         JS
       @qs.reset!
     end
     it "should show" do
       @qs.rrun(["show_doc", @fun, 
         {:title => "Best ever", :body => "Doc body"}, JSON_REQ])
       @qs.jsgets.should == {"body"=>"Best ever - Doc body"}
     end
   end
   
   describe "show with headers" do
     before(:all) do
       @fun = <<-JS
         function(doc, req) {
           return {
             headers : {"X-Plankton":"Rusty"},
             body : [doc.title, doc.body].join(' - ')
           }
           
         }
         JS
       @qs.reset!
     end
     it "should show" do
       @qs.rrun(["show_doc", @fun, 
         {:title => "Best ever", :body => "Doc body"}])
       @qs.jsgets.should == {"headers"=>{"X-Plankton"=>"Rusty"}, "body"=>"Best ever - Doc body"}
     end
   end
     
   describe "list with headers" do
     before(:each) do
       @fun = <<-JS
         function(head, row, req) {
           if (head) return {headers : {"Content-Type" : "text/plain"}, code : 200, "body" : "foo"};
           if (row) return 'some "text" here';
           return "tail";
         };
         JS
       @qs.reset!
       @qs.add_fun(@fun).should == true
     end
     it "should send head, row, and tail" do
       @qs.rrun(["list_begin", {"total_rows"=>1000}, {"q" => "ok"}])
       @qs.jsgets.should == {"headers"=>{"Content-Type"=>"text/plain"}, "code"=>200, "body"=>"foo"}
       @qs.run(["list_row", {"foo"=>"bar"}, {"q" => "ok"}]).should == {"body"=>"some \"text\" here"}
       @qs.run(["list_tail", {"foo"=>"bar"}, {"q" => "ok"}]).should == {"body"=>"tail"}
     end
   end
   
   describe "list with headers and rows" do
     before(:each) do
       @fun = <<-JS
         function(head, row, req) {
           if (head) return {headers : {"Content-Type" : "text/plain"}, code : 200, "body" : "foo"};
           if (row) return 'row value '+row.value;
           return "tail "+req.q;
         };
         JS
       @qs.reset!
       @qs.add_fun(@fun).should == true
     end
     it "should render rows" do
       @qs.rrun(["list_begin", {"total_rows"=>1000}, {"q" => "ok"}])
       @qs.jsgets.should == {"headers"=>{"Content-Type"=>"text/plain"}, "code"=>200, "body"=>"foo"}
       @qs.run(["list_row", {"value"=>"bar"}, {"q" => "ok"}]).should == {"body"=>"row value bar"}
       @qs.run(["list_row", {"value"=>"baz"}, {"q" => "ok"}]).should == {"body"=>"row value baz"}
       @qs.run(["list_row", {"value"=>"bam"}, {"q" => "ok"}]).should == {"body"=>"row value bam"}
       @qs.run(["list_tail", {"q" => "ok"}]).should == {"body"=>"tail ok"}
     end
   end
 end # query server normal case

 describe "query server errors" do
   before(:each) do
     @qs = QueryServerRunner.run
   end
   after(:each) do
     @qs.close
   end
   
   describe "list" do
     before(:each) do
       @fun = <<-JS
         function(head, row, req) {
           if (head) return {headers : {"Content-Type" : "text/plain"}, code : 200, "body" : "foo"};
           if (row) return 'row value '+row.value;
           return "tail "+req.q;
         };
         JS
       @qs.run(["reset"]).should == true    
       @qs.add_fun(@fun).should == true
     end
     it "should reset in the middle" do
       @qs.rrun(["list_begin", {"total_rows"=>1000}, {"q" => "ok"}])
       @qs.jsgets.should == {"headers"=>{"Content-Type"=>"text/plain"}, "code"=>200, "body"=>"foo"}
       @qs.run(["list_row", {"value"=>"bar"}, {"q" => "ok"}]).should == {"body"=>"row value bar"}
       @qs.run(["reset"]).should == true
     end
   end  
 end #query server that errors

## tests for the generic "echo" external
 
# describe "running an external" do
#   before(:all) do
#     @ext = ExternalRunner.run
#     
#   end
#   it "should respond to 'info'" do
#     @ext.rrun(['info'])
#     @ext.jsgets.should == ["info", "echo", "external server that prints its arguments as JSON"]
#   end
#   it "should echo the request" do

#     @ext.rrun(['req', req_obj])
#     @ext.jsgets.should == ["x"]
#   end
# end
#