summaryrefslogtreecommitdiffstats
path: root/test/timesheet_resource_test.rb
blob: 41534293f5d3c74e720f7c6ba6202379e67a214e (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
require 'test_helper'

class TimesheetResourceTest < HCl::TestCase

  def setup
    FakeWeb.allow_net_connect = false
    HCl::TimesheetResource.configure \
      'login' => 'bob',
      'password' => 'secret',
      'subdomain' => 'bobclock',
      'ssl' => true
  end

  def test_configure
    assert_equal 'bob', HCl::TimesheetResource.login
    assert_equal 'secret', HCl::TimesheetResource.password
    assert_equal 'bobclock', HCl::TimesheetResource.subdomain
    assert_equal true, HCl::TimesheetResource.ssl
  end

  def test_http_get
    FakeWeb.register_uri(:get, "https://bob:secret@bobclock.harvestapp.com/foo", :body => 'gotten!')
    body = HCl::TimesheetResource.get 'foo'
    assert_equal 'gotten!', body
  end

  def test_http_post
    FakeWeb.register_uri(:post, "https://bob:secret@bobclock.harvestapp.com/foo", :body => 'posted!')
    body = HCl::TimesheetResource.post 'foo', {pizza:'taco'}
    assert_equal 'posted!', body
  end

  def test_http_delete
    FakeWeb.register_uri(:delete, "https://bob:secret@bobclock.harvestapp.com/foo", :body => 'wiped!')
    body = HCl::TimesheetResource.delete 'foo'
    assert_equal 'wiped!', body
  end
end