summaryrefslogtreecommitdiff
path: root/certs/test
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2013-02-27 20:54:50 -0800
committerelijah <elijah@riseup.net>2013-02-27 20:54:50 -0800
commitf053c1c53f00962ee9ca25d591d248e7695e6fa5 (patch)
tree1f7868a1f420ef749cfb1e274e1e7a8c7cd5a92c /certs/test
parent1a369be11b776cd75b3c046fa508ea1bca499227 (diff)
change free cert postfix to be a prefix (this is required for how openvpn does common name matching)
Diffstat (limited to 'certs/test')
-rw-r--r--certs/test/unit/client_certificate_test.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/certs/test/unit/client_certificate_test.rb b/certs/test/unit/client_certificate_test.rb
index bcc61cc..abb5560 100644
--- a/certs/test/unit/client_certificate_test.rb
+++ b/certs/test/unit/client_certificate_test.rb
@@ -9,16 +9,16 @@ class ClientCertificateTest < ActiveSupport::TestCase
assert sample.to_s
end
- test "free cert has configured postfix" do
+ test "free cert has configured prefix" do
sample = ClientCertificate.new(free: true)
- postfix = APP_CONFIG[:free_cert_postfix]
- assert sample.cert.subject.common_name.include?(postfix)
+ prefix = APP_CONFIG[:free_cert_prefix]
+ assert sample.cert.subject.common_name.starts_with?(prefix)
end
- test "real cert has no free cert postfix" do
+ test "real cert has no free cert prefix" do
sample = ClientCertificate.new
- postfix = APP_CONFIG[:free_cert_postfix]
- assert !sample.cert.subject.common_name.include?(postfix)
+ prefix = APP_CONFIG[:free_cert_prefix]
+ assert !sample.cert.subject.common_name.starts_with?(prefix)
end
test "cert issuer matches ca subject" do