summaryrefslogtreecommitdiff
path: root/test/unit/couch_stream_test.rb
blob: 438049bd06c85281e2791261462f2b3c2598ef85 (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
require 'test_helper'
require 'lib/couch_stream'

# we'll mock this
module Yajl
  class HttpStream
  end
end

class CouchStreamTest < MiniTest::Unit::TestCase

  def setup
    @config = stub(:server => "http://server", :database => "database")
    @stream = CouchStream.new(@config)
    @url = "http://server/database/_changes?c=d&a=b"
    @path = "_changes"
    @options = {:a => :b, :c => :d}
  end

  def test_get
    Yajl::HttpStream.expects(:get).
      with(@url, :symbolize_keys => true).
      yields(stub_hash = stub)
    @stream.get(@path, @options) do |hash|
      assert_equal stub_hash, hash
    end
  end

  # internal
  def test_url_creation
    assert_equal "http://server/database/", @stream.send(:url_for, "")
    assert_equal @url, @stream.send(:url_for, @path, @options)
  end

end