summaryrefslogtreecommitdiff
path: root/test/unit/server_test.rb
blob: e4c2dc62f8a8811f96ff6120e999fa99746c4b0c (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
require File.expand_path('test_helper', File.dirname(__FILE__))

class ServerTest < MiniTest::Unit::TestCase

  def test_server
    uid    = 'cloudadmin@leap.se'
    key_id = 'E818C478D3141282F7590D29D041EB11B1647490'
    stub_vindex_response(uid, :body => file_content(:leap_vindex_result))
    stub_get_response(key_id, :body => file_content(:leap_public_key))

    EM.run do
      EM.start_server '0.0.0.0', Nickserver::Config.port, Nickserver::Server

      params = {:query => {}, :path => "key/#{CGI.escape(uid)}"}
      http = EventMachine::HttpRequest.new("http://localhost:#{Nickserver::Config.port}").get(params)
      http.callback {
        assert_equal file_content(:leap_public_key), http.response
        EM.stop
      }.errback {
        puts http.error
        EM.stop
      }
    end
  end

end