blob: 698a275bc9f6aaf38e196dc686df6319aa2c6509 (
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
|
require 'test_helper'
require 'nickserver/request'
class Nickserver::RequestTest < Minitest::Test
def test_email
request = request_with_params address: fake_email
assert_equal fake_email, request.email
end
def test_blank_email
request = request_with_params
assert_equal nil, request.email
end
def test_fingerprint
request = request_with_params fingerprint: fake_fingerprint
assert_equal fake_fingerprint, request.fingerprint
end
def test_domain
request = Nickserver::Request.new Hash.new,
'Host' => ' nicknym.my.domain.tld:123'
assert_equal 'my.domain.tld', request.domain
end
protected
# params are encoded with strings as keys and arrays with the
# given value(s)
def request_with_params(params = {})
params = params.collect{|k,v| [k.to_s, Array(v)]}.to_h
Nickserver::Request.new params, {}
end
def fake_email
'test@domain.tld'
end
def fake_fingerprint
'F' * 40
end
end
|