summaryrefslogtreecommitdiff
path: root/test/integration
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2016-06-09 11:41:56 +0200
committerAzul <azul@riseup.net>2016-06-09 11:41:56 +0200
commitb68b025a6d39516a6b4d04dd7c1786df50466d2c (patch)
tree068566424142d8f92961471b378ebba6f506f1c3 /test/integration
parent1af940f49f9ba5507673c2131fcb228b778083fb (diff)
move hkp test to integration tests
That's what it actually is
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/hkp_test.rb162
1 files changed, 162 insertions, 0 deletions
diff --git a/test/integration/hkp_test.rb b/test/integration/hkp_test.rb
new file mode 100644
index 0000000..0e77253
--- /dev/null
+++ b/test/integration/hkp_test.rb
@@ -0,0 +1,162 @@
+require 'test_helper'
+
+class HkpTest < Minitest::Test
+
+ def test_key_info_expired
+ fetch_key_info(:hkp_vindex_result, 'lemur@leap.se') do |keys|
+ assert_equal 1, keys.length, 'should find a single key'
+ assert_equal ['lemur@example.org', 'lemur@leap.se'].sort, keys.first.uids.sort, 'should find both uids'
+ assert_equal '0EE5BE979282D80B9F7540F1CCD2ED94D21739E9', keys.first.keyid
+ end
+ end
+
+ def test_key_info_multiple_valid_results
+ fetch_key_info :hkp_vindex_result, 'gazelle@leap.se' do |keys|
+ assert_equal 2, keys.length, 'should find two keys'
+ assert_equal ['gazelle@leap.se'], keys.first.uids
+ assert_equal '3790027A', keys.first.keyid
+ assert keys.last.uids.include? 'gazelle@leap.se'
+ end
+ end
+
+ def test_key_info_reject_keysize
+ fetch_key_info :hkp_vindex_result, 'frog@leap.se' do |keys|
+ assert_equal 1, keys.length, 'should find one key' # because short key gets ignored
+ assert_equal '00440025', keys.first.keyid
+ end
+ end
+
+ def test_key_info_not_found
+ uid = 'leaping_lemur@leap.se'
+ stub_sks_vindex_reponse(uid, status: 404)
+ test_em_errback "Nickserver::Hkp::FetchKeyInfo.new.search '#{uid}'" do |error|
+ assert_equal 404, error
+ end
+ end
+
+ def test_no_matching_key_found
+ uid = 'leaping_lemur@leap.se'
+ stub_sks_vindex_reponse(uid, status: 200)
+ test_em_errback "Nickserver::Hkp::FetchKeyInfo.new.search '#{uid}'" do |error|
+ assert_equal 404, error
+ end
+ end
+
+ def test_fetch_key
+ uid = 'cloudadmin@leap.se'
+ key_id = 'E818C478D3141282F7590D29D041EB11B1647490'
+ stub_sks_vindex_reponse(uid, body: file_content(:leap_vindex_result))
+ stub_sks_get_reponse(key_id, body: file_content(:leap_public_key))
+
+ test_em_callback "Nickserver::Hkp::FetchKey.new.get '#{uid}'" do |key_text|
+ assert_equal file_content(:leap_public_key), key_text
+ end
+ end
+
+ def test_fetch_key_not_found
+ uid = 'cloudadmin@leap.se'
+ key_id = 'E818C478D3141282F7590D29D041EB11B1647490'
+
+ stub_sks_vindex_reponse(uid, body: file_content(:leap_vindex_result))
+ stub_sks_get_reponse(key_id, status: 404)
+
+ test_em_errback "Nickserver::Hkp::FetchKey.new.get '#{uid}'" do |error|
+ assert_equal 404, error
+ end
+ end
+
+ def test_fetch_key_too_short
+ uid = 'chiiph@leap.se'
+
+ stub_sks_vindex_reponse(uid, body: file_content(:short_key_vindex_result))
+ test_em_errback "Nickserver::Hkp::FetchKey.new.get '#{uid}'" do |error|
+ assert_equal 500, error
+ end
+ end
+
+ #
+ # real network tests
+ # remember: must be run with REAL_NET=true
+ #
+
+ def test_key_info_real_network
+ real_network do
+ uid = 'elijah@riseup.net'
+ test_em_callback "Nickserver::Hkp::FetchKeyInfo.new.search '#{uid}'" do |keys|
+ assert_equal 1, keys.size
+ assert keys.first.keyid =~ /00440025$/
+ end
+ end
+ end
+
+ def test_tls_validation_with_real_network
+ hkp_url = 'https://keys.mayfirst.org/pks/lookup'
+ ca_file = file_path('mayfirst-ca.pem')
+
+ real_network do
+ stub_config(:hkp_url, hkp_url) do
+ stub_config(:hkp_ca_file, ca_file) do
+ #stub_config(:hkp_ca_file, file_path('autistici-ca.pem')) do
+ assert File.exist?(Nickserver::Config.hkp_ca_file)
+ uid = 'elijah@riseup.net'
+ test_em_callback "Nickserver::Hkp::FetchKeyInfo.new.search '#{uid}'" do |keys|
+ assert_equal 1, keys.size
+ assert keys.first.keyid =~ /00440025$/
+ end
+ end
+ end
+ end
+ end
+
+ protected
+
+ #
+ # Takes a code snippet that returns a Deferrable, and yields the callback result.
+ # Assertion fails if errback is called instead of callback.
+ #
+ # This method takes care of the calls to EM.run and EM.stop. It works kind of like EM.run_block,
+ # except I couldn't get run_block to work with multiple nested HTTP requests.
+ #
+ def test_em_callback(code, &block)
+ EM.run do
+ deferrable = instance_eval(code)
+ deferrable.callback {|response|
+ EM.stop
+ yield response
+ return
+ }
+ deferrable.errback {|response, msg|
+ EM.stop
+ puts caller.join("\n")
+ flunk "Expecting callback, but errback invoked with response: #{response} #{msg}\n\n#{caller.join("\n")}"
+ }
+ end
+ assert false, 'should not get here'
+ end
+
+ #
+ # like test_em_callback, except value yielded is the result of errback, and
+ # we raise an exception if errback was not called.
+ #
+ def test_em_errback(code, &block)
+ EM.run do
+ deferrable = instance_eval(code)
+ deferrable.callback {|response|
+ EM.stop
+ flunk "Expecting errback, but callback invoked with response: #{response}"
+ }
+ deferrable.errback {|response|
+ EM.stop
+ yield response
+ return
+ }
+ end
+ assert false, 'should not get here'
+ end
+
+ def fetch_key_info(body_source, uid, &block)
+ stub_sks_vindex_reponse(uid, body: file_content(body_source))
+ test_em_callback "Nickserver::Hkp::FetchKeyInfo.new.search '#{uid}'", &block
+ end
+
+end