blob: fb8e9c42412220b4e47688305c37fada5f530781 (
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
|
require 'test_helper'
class V1::CertsControllerTest < ActionController::TestCase
test "send unlimited cert without login" do
with_config allow_anonymous_certs: true do
cert = expect_cert('UNLIMITED')
get :show
assert_response :success
assert_equal cert.to_s, @response.body
end
end
test "send limited cert" do
with_config allow_limited_certs: true do
login
cert = expect_cert('LIMITED')
get :show
assert_response :success
assert_equal cert.to_s, @response.body
end
end
test "send unlimited cert" do
login effective_service_level: ServiceLevel.new(id: 2)
cert = expect_cert('UNLIMITED')
get :show
assert_response :success
assert_equal cert.to_s, @response.body
end
test "redirect if no eip service offered" do
get :show
assert_response :redirect
end
protected
def expect_cert(prefix)
cert = stub :to_s => "#{prefix.downcase} cert"
ClientCertificate.expects(:new).
with(:prefix => prefix).
returns(cert)
return cert
end
end
|