summaryrefslogtreecommitdiff
path: root/test/remote/hkp_source_test.rb
blob: ff615136e74af5820ff1efdd9a87891afa9613f2 (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
require 'test_helper'
require 'support/celluloid_test'
require 'support/http_adapter_helper'
require 'nickserver/hkp/source'

class RemoteHkpSourceTest < CelluloidTest
  include HttpAdapterHelper

  def test_key_info
    uid = 'elijah@riseup.net'
    assert_key_info_for_uid uid do |keys|
      assert_equal 1, keys.size
      assert keys.first.keyid =~ /00440025$/
    end
  end

  def test_tls_validation
    hkp_url = 'https://keys.mayfirst.org/pks/lookup'
    ca_file = file_path('mayfirst-ca.pem')

    config.stub(:hkp_url, hkp_url) do
      config.stub(:hkp_ca_file, ca_file) do
      #config.stub(:hkp_ca_file, file_path('autistici-ca.pem')) do
        assert File.exist?(Nickserver::Config.hkp_ca_file)
        uid = 'elijah@riseup.net'
        assert_key_info_for_uid uid do |keys|
          assert_equal 1, keys.size
          assert keys.first.keyid =~ /00440025$/
        end
      end
    end
  end

  protected

  def assert_key_info_for_uid(uid)
    source.search uid do |status, keys|
      assert_equal 200, status
      yield keys
    end
  rescue HTTP::ConnectionError => e
    skip "could not talk to hkp server: #{e}"
  end

  def source
    Nickserver::Hkp::Source.new adapter
  end

end