le_ssl 0.0.4.1 → 0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0be55879ba830ebcf463a49b9b89c94782df2b24
4
- data.tar.gz: c6b324db5ad48c8a15b16c42c366bb74f722c5c3
3
+ metadata.gz: 9f5fb873bd94fd361c0ab7e4b3902fa4ed124891
4
+ data.tar.gz: 35ab2b9403dce45c2595ede20182340e421646cf
5
5
  SHA512:
6
- metadata.gz: 0d764b27c5bdfd61319420053a95c83d86f3337b36d3e05ddfe46d9b0cfe5ff1cc5e78bc54a5eb0627baca72dba4235cc5748316b1d399b098f3cbc339b07f3e
7
- data.tar.gz: 477a5b24081ee0c4549a8f143e9c2e9d7970c8c53b9af64b83c012c9b126f36c522ea17ad4314a68a36636e7c2736d431d1755955278803c7d8c0d4f2be89475
6
+ metadata.gz: 1f7056f3cd9e72d4abe57a8ba824253a011d51557ed297b262fc5af19a422c11273985e2bbd0c776f9db3c2f115d4b0a44c9f8589a3f608a127b45def3d6b13d
7
+ data.tar.gz: 89e4a762470155a08cde7dbc543d8009e236e8d1eb380d0fc50a06e23f32c1821e6fd8abde2e75a123a84f7b1f57e6fbb94839381ca975f0e01354b2dbfc669f
@@ -0,0 +1,164 @@
1
+ LeSSL
2
+ =====
3
+
4
+ [![Gem Version](https://badge.fury.io/rb/le_ssl.svg)](https://badge.fury.io/rb/le_ssl)
5
+ [![Build Status](https://travis-ci.org/tobiasfeistmantl/LeSSL.svg?branch=master)](https://travis-ci.org/tobiasfeistmantl/LeSSL)
6
+
7
+ LeSSL is a simple gem to authorize for domains and obtaining certificates from the Let's Encrypt CA. Now it's very easy to get free and trusted SSL certificates!
8
+
9
+ Compatibility
10
+ -------------
11
+
12
+ Rails 4+
13
+
14
+ Installation
15
+ ------------
16
+
17
+ Install from Rubygems:
18
+
19
+ ```
20
+ $ gem install le_ssl
21
+ ```
22
+
23
+ or add it to your Gemfile:
24
+
25
+ ```ruby
26
+ gem 'le_ssl'
27
+ ```
28
+
29
+ And then run `bundle install` and you are ready to go.
30
+
31
+ Getting Started
32
+ ---------------
33
+
34
+ Create an instance of the LeSSL Manager:
35
+
36
+ ```ruby
37
+ private_key = OpenSSL::PKey::RSA.new(4096)
38
+ manager = LeSSL::Manager.new(email: 'john@example.com', agree_terms: true, private_key: private_key)
39
+ ```
40
+ It's recommended to store the contact email and the private key in environment variables because you are just allowed to obtain certificates for domains you are authorized for.
41
+
42
+ If you have `LESSL_CLIENT_PRIVATE_KEY` and `LESSL_CONTACT_EMAIL` set, you don't have to pass them to the initializer.
43
+
44
+ ```ruby
45
+ # Example
46
+ manager = LeSSL::Manager.new(agree_terms: true) # Accepting the terms is enough
47
+ ```
48
+
49
+ The manager registers automatically a new account on the Let's Encrypt servers.
50
+
51
+ Authorize for a domain now:
52
+
53
+ **Important! Every domain you want to be authorized for must have a valid A record which points to your server IP!**
54
+
55
+ ```ruby
56
+ manager.authorize_for_domain('example.com')
57
+ manager.authorize_for_domain('www.example.com')
58
+ ```
59
+
60
+ If your domain is properly set up, you should now be authorized for the domain. Be also sure that your Rails server is running.
61
+
62
+ Obtaining a SSL certificate:
63
+
64
+ ```ruby
65
+ manager.request_certificate('www.example.com', 'example.com')
66
+ ```
67
+
68
+ This puts the public and private keys into `config/ssl`. Now you just have to configure your webserver to use these certificates and you should be ready for encrypted HTTP.
69
+
70
+ **Note that you have to authorize seperately for subdomains (e.g. www.example.com)!**
71
+
72
+ Use DNS verification
73
+ --------------------
74
+
75
+ If the domain isn't pointing to your server, you can also use a DNS TXT verification. Simply pass the option `:challenge` with the value `:dns` to the parameters of the `#authorize_for_domain` method:
76
+
77
+ ```ruby
78
+ challenge = manager.authorize_for_domain('example.com', challenge: :dns)
79
+ ```
80
+
81
+ **Important!** Save the returned value into a variable because it's needed to request the verification!
82
+
83
+ Then create the corresponding DNS TXT record for your domain. (Hint: The `#authorize_for_domain` method prints the information if you use it from the command line)
84
+
85
+ Wait a few minutes to be sure that the record was updated by the Let's encrypt servers.
86
+
87
+ And as last step request the verification for the challenge.
88
+
89
+ ```ruby
90
+ manager.request_verification(challenge)
91
+ ```
92
+
93
+ This returns the verification status afterwards.
94
+
95
+ If this returns `valid` you are authorized to obtain a certificate for this domain.
96
+
97
+ ### Automatic verification
98
+
99
+ You can tell LeSSL to verify the DNS record automatically. In this way you don't have to worry if the DNS record is already present.
100
+
101
+ **Caution!** This option is blocking the thread until the verification is completed!
102
+
103
+ ```ruby
104
+ manager.authorize_for_domain('example.com', challenge: :dns, automatic_verification: true)
105
+ ```
106
+
107
+ By default, LeSSL uses the Google public nameservers (8.8.8.8 and 8.8.4.4) to check the records but you can use also your own ones:
108
+
109
+ ```ruby
110
+ manager.authorize_for_domain('example.com', challenge: :dns, automatic_verification: true, custom_nameservers: 32.34.65.23)
111
+ ```
112
+
113
+ The verification process may take some time, especially if you already have an _acme-challenge TXT record in your DNS table with a higher TTL. If you are able to configure the TTL on your own set it the shortest possible TTL. (E.g. 60 seconds)
114
+
115
+ Skip registration
116
+ -----------------
117
+
118
+ You can also skip the automatic registering which is done in the initializer:
119
+
120
+ ```ruby
121
+ manager = LeSSL::Manager.new(agree_terms: true, email: 'john@example.com', private_key: private_key, skip_register: true)
122
+ ```
123
+
124
+ To register an account call the `#register` method:
125
+
126
+ ```ruby
127
+ manager.register('john@example.com')
128
+ ```
129
+
130
+ Development
131
+ -----------
132
+
133
+ LeSSL uses the staging servers of Let's Encrypt if the Rails environment is set to 'development'.
134
+
135
+ You need help?
136
+ --------------
137
+
138
+ Ask a question on [StackOverflow](https://stackoverflow.com/) with the tag 'le-ssl'.
139
+
140
+ Planned Features
141
+ ----------------
142
+
143
+ * Automatically renew certificates with an ActiveJob job
144
+ * Automatically install certificates in popular web servers
145
+
146
+ We welcome also other feature request and of course feature pull requests!
147
+
148
+ Other things to do
149
+ ------------------
150
+
151
+ * **To test the gem.**
152
+
153
+ Also here we would be thankful for pull requests.
154
+
155
+ Contribution
156
+ ------------
157
+
158
+ Create pull requests on Github and help us to improve this gem. There are some guidelines to follow:
159
+
160
+ * Follow the conventions
161
+ * Test all your implementations
162
+ * Document methods which aren't self-explaining (we are using [YARD](http://yardoc.org/))
163
+
164
+ Copyright (c) 2016 Tobias Feistmantl, MIT license
@@ -1,6 +1,9 @@
1
1
  require 'acme/client'
2
+ require 'resolv'
3
+
2
4
  require 'le_ssl/errors'
3
5
  require 'le_ssl/manager'
6
+ require 'le_ssl/dns'
4
7
 
5
8
  module LeSSL
6
9
  end
@@ -0,0 +1,29 @@
1
+ module LeSSL
2
+ class DNS
3
+ def initialize(nameservers=['8.8.8.8', '8.8.4.4'])
4
+ @dns = Resolv::DNS.new(nameserver: nameservers)
5
+ end
6
+
7
+ # Checks if the TXT record
8
+ # for a domain is valid.
9
+ def challenge_record_valid?(domain, key)
10
+ record = challenge_record(domain)
11
+ return record && record.data == key
12
+ end
13
+
14
+ def challenge_record_invalid?(domain, key)
15
+ return !challenge_record_valid?(domain, key)
16
+ end
17
+
18
+ private
19
+
20
+ # @return [Resolv::DNS::Resource::IN::TXT, nil]
21
+ # The challenge record for a defined domain.
22
+ # If no challenge present nil is returned.
23
+ def challenge_record(domain)
24
+ @dns.getresource("_acme-challenge.#{domain}", Resolv::DNS::Resource::IN::TXT)
25
+ rescue Resolv::ResolvError => e
26
+ nil # Return silently
27
+ end
28
+ end
29
+ end
@@ -21,7 +21,7 @@ module LeSSL
21
21
  #
22
22
  # Challenge options:
23
23
  # - HTTP (default and recommended)
24
- # - DNS (requires manual verification)
24
+ # - DNS
25
25
  def authorize_for_domain(domain, options={})
26
26
  authorization = client.authorize(domain: domain)
27
27
 
@@ -35,7 +35,7 @@ module LeSSL
35
35
  puts "===================================================================="
36
36
  puts "Record:"
37
37
  puts
38
- puts " - Name: #{challenge.record_name}"
38
+ puts " - Name: #{challenge.record_name}.#{domain}"
39
39
  puts " - Type: #{challenge.record_type}"
40
40
  puts " - Value: #{challenge.record_content}"
41
41
  puts
@@ -43,7 +43,38 @@ module LeSSL
43
43
  puts "===================================================================="
44
44
  end
45
45
 
46
- return challenge
46
+ # With this option the dns verification is
47
+ # done automatically. LeSSL waits until a
48
+ # valid record on your DNS servers was found
49
+ # and requests a verification.
50
+ #
51
+ # CAUTION! This is a blocking the thread!
52
+ if options[:automatic_verification]
53
+ dns = begin
54
+ if ns = options[:custom_nameservers]
55
+ LeSSL::DNS.new(ns)
56
+ else
57
+ LeSSL::DNS.new
58
+ end
59
+ end
60
+
61
+ puts
62
+ puts 'Wait until the TXT record was set...'
63
+
64
+ # Wait with verification until the
65
+ # challenge record is valid.
66
+ while dns.challenge_record_invalid?(domain, challenge.record_content)
67
+ puts 'DNS record not valid' if options[:verbose]
68
+
69
+ sleep(2) # Wait 2 seconds
70
+ end
71
+
72
+ puts 'Valid TXT record found. Continue with verification...'
73
+
74
+ return request_verification(challenge)
75
+ else
76
+ return challenge
77
+ end
47
78
  else
48
79
  challenge = authorization.http01
49
80
 
@@ -53,8 +84,6 @@ module LeSSL
53
84
  FileUtils.mkdir_p(dir)
54
85
 
55
86
  File.write(file_name, challenge.file_content)
56
-
57
- request_verification(challenge) == 'invalid'
58
87
 
59
88
  return challenge.verify_status
60
89
  end
@@ -93,14 +122,16 @@ module LeSSL
93
122
  private
94
123
 
95
124
  def private_key=(key)
96
- if key.is_a?(OpenSSL::PKey::RSA)
97
- @private_key = key
98
- elsif key.is_a?(String)
99
- @private_key = OpenSSL::PKey::RSA.new(key)
100
- elsif key.nil?
101
- nil # Return silently
102
- else
103
- raise LeSSL::PrivateKeyInvalidFormat
125
+ @private_key = begin
126
+ if key.is_a?(OpenSSL::PKey::RSA)
127
+ key
128
+ elsif key.is_a?(String)
129
+ OpenSSL::PKey::RSA.new(key)
130
+ elsif key.nil?
131
+ nil
132
+ else
133
+ raise LeSSL::PrivateKeyInvalidFormat
134
+ end
104
135
  end
105
136
  end
106
137
 
@@ -1,3 +1,3 @@
1
1
  module LeSSL
2
- VERSION = "0.0.4.1"
2
+ VERSION = "0.1"
3
3
  end
@@ -13,8 +13,8 @@ Rails.application.configure do
13
13
  config.eager_load = false
14
14
 
15
15
  # Configure static file server for tests with Cache-Control for performance.
16
- config.serve_static_files = true
17
- config.static_cache_control = 'public, max-age=3600'
16
+ config.public_file_server.enabled = true
17
+ config.public_file_server.headers = 'public, max-age=3600'
18
18
 
19
19
  # Show full error reports and disable caching.
20
20
  config.consider_all_requests_local = true
@@ -1,246 +1,1161 @@
1
+ ---------------------
2
+ LeSslTest: test_truth
3
+ ---------------------
4
+ ------------------------------
5
+ LeSsl::ManagerTest: test_truth
6
+ ------------------------------
7
+ ---------------------
8
+ LeSslTest: test_truth
9
+ ---------------------
10
+ ------------------------------
11
+ LeSsl::ManagerTest: test_truth
12
+ ------------------------------
13
+ ------------------------------
14
+ LeSsl::ManagerTest: test_truth
15
+ ------------------------------
16
+ -------------------------------------------------------------------
17
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
18
+ -------------------------------------------------------------------
19
+ -------------------------------------------------------------------
20
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
21
+ -------------------------------------------------------------------
22
+ -------------------------------------------------------------------
23
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
24
+ -------------------------------------------------------------------
25
+ -------------------------------------------------------------------
26
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
27
+ -------------------------------------------------------------------
28
+ -------------------------------------------------------------------
29
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
30
+ -------------------------------------------------------------------
31
+ -------------------------------------------------------------------
32
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
33
+ -------------------------------------------------------------------
34
+ --------------------------------------------------------------------------------------------------
35
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
36
+ --------------------------------------------------------------------------------------------------
37
+ -------------------------------------------------------------------
38
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
39
+ -------------------------------------------------------------------
40
+ --------------------------------------------------------------------------------------------------
41
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
42
+ --------------------------------------------------------------------------------------------------
43
+ -------------------------------------------------------------------
44
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
45
+ -------------------------------------------------------------------
46
+ --------------------------------------------------------------------------------------------------
47
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
48
+ --------------------------------------------------------------------------------------------------
49
+ -------------------------------------------------------------------
50
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
51
+ -------------------------------------------------------------------
52
+ -------------------------------------------------------------
53
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
54
+ -------------------------------------------------------------
55
+ --------------------------------------------------------------------------------------------------
56
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
57
+ --------------------------------------------------------------------------------------------------
58
+ -------------------------------------------------------------------
59
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
60
+ -------------------------------------------------------------------
61
+ --------------------------------------------------------------------------------------------------
62
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
63
+ --------------------------------------------------------------------------------------------------
64
+ -------------------------------------------------------------
65
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
66
+ -------------------------------------------------------------
67
+ ----------------------------------------------------------------------
68
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
69
+ ----------------------------------------------------------------------
70
+ -------------------------------------------------------------------
71
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
72
+ -------------------------------------------------------------------
73
+ -------------------------------------------------------------------
74
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
75
+ -------------------------------------------------------------------
76
+ ----------------------------------------------------------------------
77
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
78
+ ----------------------------------------------------------------------
79
+ -------------------------------------------------------------
80
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
81
+ -------------------------------------------------------------
82
+ --------------------------------------------------------------------------------------------------
83
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
84
+ --------------------------------------------------------------------------------------------------
85
+ -------------------------------------------------------------------
86
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
87
+ -------------------------------------------------------------------
88
+ -------------------------------------------------------------------
89
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
90
+ -------------------------------------------------------------------
91
+ -------------------------------------------------------------------
92
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
93
+ -------------------------------------------------------------------
94
+ -------------------------------------------------------------------
95
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
96
+ -------------------------------------------------------------------
97
+ --------------------------------------------------------------------------------------------------
98
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
99
+ --------------------------------------------------------------------------------------------------
100
+ ----------------------------------------------------------------------
101
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
102
+ ----------------------------------------------------------------------
103
+ -------------------------------------------------------------
104
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
105
+ -------------------------------------------------------------
106
+ -------------------------------------------------------------
107
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
108
+ -------------------------------------------------------------
109
+ -------------------------------------------------------------------
110
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
111
+ -------------------------------------------------------------------
112
+ -------------------------------------------------------------------
113
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
114
+ -------------------------------------------------------------------
115
+ ----------------------------------------------------------------------
116
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
117
+ ----------------------------------------------------------------------
118
+ --------------------------------------------------------------------------------------------------
119
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
120
+ --------------------------------------------------------------------------------------------------
121
+ ----------------------------------------------------------------------
122
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
123
+ ----------------------------------------------------------------------
124
+ -------------------------------------------------------------------
125
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
126
+ -------------------------------------------------------------------
127
+ -------------------------------------------------------------
128
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
129
+ -------------------------------------------------------------
130
+ -------------------------------------------------------------------
131
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
132
+ -------------------------------------------------------------------
133
+ --------------------------------------------------------------------------------------------------
134
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
135
+ --------------------------------------------------------------------------------------------------
136
+ --------------------------------------------------------------------------------------------------
137
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
138
+ --------------------------------------------------------------------------------------------------
139
+ -------------------------------------------------------------
140
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
141
+ -------------------------------------------------------------
142
+ ----------------------------------------------------------------------
143
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
144
+ ----------------------------------------------------------------------
145
+ -------------------------------------------------------------------
146
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
147
+ -------------------------------------------------------------------
148
+ -------------------------------------------------------------------
149
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
150
+ -------------------------------------------------------------------
151
+ ----------------------------------------------------------------------
152
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
153
+ ----------------------------------------------------------------------
154
+ -------------------------------------------------------------
155
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
156
+ -------------------------------------------------------------
157
+ -------------------------------------------------------------------
158
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
159
+ -------------------------------------------------------------------
160
+ -------------------------------------------------------------------
161
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
162
+ -------------------------------------------------------------------
163
+ --------------------------------------------------------------------------------------------------
164
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
165
+ --------------------------------------------------------------------------------------------------
166
+ -------------------------------------------------------------------
167
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
168
+ -------------------------------------------------------------------
169
+ --------------------------------------------------------------------------------------------------
170
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
171
+ --------------------------------------------------------------------------------------------------
172
+ -------------------------------------------------------------
173
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
174
+ -------------------------------------------------------------
175
+ -------------------------------------------------------------------
176
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
177
+ -------------------------------------------------------------------
178
+ ----------------------------------------------------------------------
179
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
180
+ ----------------------------------------------------------------------
181
+ --------------------------------------------------------------------------------------------------
182
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
183
+ --------------------------------------------------------------------------------------------------
184
+ -------------------------------------------------------------------
185
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
186
+ -------------------------------------------------------------------
187
+ -------------------------------------------------------------
188
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
189
+ -------------------------------------------------------------
190
+ -------------------------------------------------------------------
191
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
192
+ -------------------------------------------------------------------
193
+ ----------------------------------------------------------------------
194
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
195
+ ----------------------------------------------------------------------
196
+ ----------------------------------------------------------------------
197
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
198
+ ----------------------------------------------------------------------
199
+ -------------------------------------------------------------
200
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
201
+ -------------------------------------------------------------
202
+ -------------------------------------------------------------------
203
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
204
+ -------------------------------------------------------------------
205
+ -------------------------------------------------------------------
206
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
207
+ -------------------------------------------------------------------
208
+ --------------------------------------------------------------------------------------------------
209
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
210
+ --------------------------------------------------------------------------------------------------
211
+ -------------------------------------------------------------
212
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
213
+ -------------------------------------------------------------
214
+ -------------------------------------------------------------------
215
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
216
+ -------------------------------------------------------------------
217
+ -------------------------------------------------------------------
218
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
219
+ -------------------------------------------------------------------
220
+ ----------------------------------------------------------------------
221
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
222
+ ----------------------------------------------------------------------
223
+ --------------------------------------------------------------------------------------------------
224
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
225
+ --------------------------------------------------------------------------------------------------
226
+ -------------------------------------------------------------------
227
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
228
+ -------------------------------------------------------------------
229
+ -------------------------------------------------------------
230
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
231
+ -------------------------------------------------------------
232
+ -------------------------------------------------------------------
233
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
234
+ -------------------------------------------------------------------
235
+ ----------------------------------------------------------------------
236
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
237
+ ----------------------------------------------------------------------
238
+ --------------------------------------------------------------------------------------------------
239
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
240
+ --------------------------------------------------------------------------------------------------
241
+ -------------------------------
242
+ LeSsl::ManagerTest: test_client
243
+ -------------------------------
244
+ -------------------------------------------------------------------
245
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
246
+ -------------------------------------------------------------------
247
+ -------------------------------------------------------------
248
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
249
+ -------------------------------------------------------------
250
+ --------------------------------------------------------------------------------------------------
251
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
252
+ --------------------------------------------------------------------------------------------------
253
+ ----------------------------------------------------------------------
254
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
255
+ ----------------------------------------------------------------------
256
+ -------------------------------------------------------------------
257
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
258
+ -------------------------------------------------------------------
259
+ -------------------------------
260
+ LeSsl::ManagerTest: test_client
261
+ -------------------------------
262
+ --------------------------------------------------------------------------------------------------
263
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
264
+ --------------------------------------------------------------------------------------------------
265
+ -------------------------------------------------------------------
266
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
267
+ -------------------------------------------------------------------
268
+ -------------------------------------------------------------
269
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
270
+ -------------------------------------------------------------
271
+ ----------------------------------------------------------------------
272
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
273
+ ----------------------------------------------------------------------
274
+ -------------------------------------------------------------------
275
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
276
+ -------------------------------------------------------------------
277
+ --------------------------------------------------------------------------------------------------
278
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
279
+ --------------------------------------------------------------------------------------------------
280
+ ----------------------------------------------------------------------
281
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
282
+ ----------------------------------------------------------------------
283
+ -------------------------------------------------------------------
284
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
285
+ -------------------------------------------------------------------
286
+ -------------------------------------------------------------------
287
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
288
+ -------------------------------------------------------------------
289
+ -------------------------------------------------------------
290
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
291
+ -------------------------------------------------------------
292
+ -------------------------------
293
+ LeSsl::ManagerTest: test_client
294
+ -------------------------------
295
+ -------------------------------------------------------------------
296
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
297
+ -------------------------------------------------------------------
298
+ ----------------------------------------------------------------------
299
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
300
+ ----------------------------------------------------------------------
301
+ -------------------------------
302
+ LeSsl::ManagerTest: test_client
303
+ -------------------------------
304
+ -------------------------------------------------------------------
305
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
306
+ -------------------------------------------------------------------
307
+ -------------------------------------------------------------
308
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
309
+ -------------------------------------------------------------
310
+ --------------------------------------------------------------------------------------------------
311
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
312
+ --------------------------------------------------------------------------------------------------
313
+ -------------------------------
314
+ LeSsl::ManagerTest: test_client
315
+ -------------------------------
316
+ ----------------------------------------------------------------------
317
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
318
+ ----------------------------------------------------------------------
319
+ -------------------------------------------------------------------
320
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
321
+ -------------------------------------------------------------------
322
+ -------------------------------------------------------------------
323
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
324
+ -------------------------------------------------------------------
325
+ -------------------------------------------------------------
326
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
327
+ -------------------------------------------------------------
328
+ --------------------------------------------------------------------------------------------------
329
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
330
+ --------------------------------------------------------------------------------------------------
331
+ --------------------------------------------------------------------------------------------------
332
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
333
+ --------------------------------------------------------------------------------------------------
334
+ -------------------------------------------------------------------
335
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
336
+ -------------------------------------------------------------------
337
+ -------------------------------------------------------------------
338
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
339
+ -------------------------------------------------------------------
340
+ -------------------------------------------------------------
341
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
342
+ -------------------------------------------------------------
343
+ ----------------------------------------------------------------------
344
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
345
+ ----------------------------------------------------------------------
346
+ -------------------------------
347
+ LeSsl::ManagerTest: test_client
348
+ -------------------------------
349
+ -------------------------------
350
+ LeSsl::ManagerTest: test_client
351
+ -------------------------------
352
+ --------------------------------------------------------------------------------------------------
353
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
354
+ --------------------------------------------------------------------------------------------------
355
+ -------------------------------------------------------------------
356
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
357
+ -------------------------------------------------------------------
358
+ ----------------------------------------------------------------------
359
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
360
+ ----------------------------------------------------------------------
361
+ -------------------------------------------------------------------
362
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
363
+ -------------------------------------------------------------------
364
+ -------------------------------------------------------------
365
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
366
+ -------------------------------------------------------------
367
+ -------------------------------------------------------------
368
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
369
+ -------------------------------------------------------------
370
+ -------------------------------------------------------------------
371
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
372
+ -------------------------------------------------------------------
373
+ -------------------------------------------------------------------
374
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
375
+ -------------------------------------------------------------------
376
+ -------------------------------
377
+ LeSsl::ManagerTest: test_client
378
+ -------------------------------
379
+ ----------------------------------------------------------------------
380
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
381
+ ----------------------------------------------------------------------
382
+ -----------------------------------------------
383
+ LeSsl::ManagerTest: test_authorization_with_DNS
384
+ -----------------------------------------------
385
+ --------------------------------------------------------------------------------------------------
386
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
387
+ --------------------------------------------------------------------------------------------------
388
+ -------------------------------------------------------------
389
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
390
+ -------------------------------------------------------------
391
+ -------------------------------
392
+ LeSsl::ManagerTest: test_client
393
+ -------------------------------
394
+ ----------------------------------------------------------------------
395
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
396
+ ----------------------------------------------------------------------
397
+ --------------------------------------------------------------------------------------------------
398
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
399
+ --------------------------------------------------------------------------------------------------
400
+ -------------------------------------------------------------------
401
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
402
+ -------------------------------------------------------------------
403
+ -------------------------------------------------------------------
404
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
405
+ -------------------------------------------------------------------
406
+ -------------------------------
407
+ LeSsl::ManagerTest: test_client
408
+ -------------------------------
409
+ -------------------------------------------------------------------
410
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
411
+ -------------------------------------------------------------------
412
+ -------------------------------------------------------------
413
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
414
+ -------------------------------------------------------------
415
+ -------------------------------------------------------------------
416
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
417
+ -------------------------------------------------------------------
418
+ ----------------------------------------------------------------------
419
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
420
+ ----------------------------------------------------------------------
421
+ --------------------------------------------------------------------------------------------------
422
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
423
+ --------------------------------------------------------------------------------------------------
424
+ -----------------------------------------------
425
+ LeSsl::ManagerTest: test_authorization_with_DNS
426
+ -----------------------------------------------
427
+ -----------------------------------------------
428
+ LeSsl::ManagerTest: test_authorization_with_DNS
429
+ -----------------------------------------------
430
+ -------------------------------------------------------------------
431
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
432
+ -------------------------------------------------------------------
433
+ -------------------------------------------------------------
434
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
435
+ -------------------------------------------------------------
436
+ --------------------------------------------------------------------------------------------------
437
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
438
+ --------------------------------------------------------------------------------------------------
439
+ -------------------------------
440
+ LeSsl::ManagerTest: test_client
441
+ -------------------------------
442
+ -------------------------------------------------------------------
443
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
444
+ -------------------------------------------------------------------
445
+ ----------------------------------------------------------------------
446
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
447
+ ----------------------------------------------------------------------
448
+ --------------------------------------------------------------------------------------------------
449
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
450
+ --------------------------------------------------------------------------------------------------
451
+ -------------------------------------------------------------------
452
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
453
+ -------------------------------------------------------------------
454
+ -----------------------------------------------
455
+ LeSsl::ManagerTest: test_authorization_with_DNS
456
+ -----------------------------------------------
457
+ -------------------------------------------------------------
458
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
459
+ -------------------------------------------------------------
460
+ -------------------------------
461
+ LeSsl::ManagerTest: test_client
462
+ -------------------------------
463
+ -------------------------------------------------------------------
464
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
465
+ -------------------------------------------------------------------
466
+ ----------------------------------------------------------------------
467
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
468
+ ----------------------------------------------------------------------
469
+ -----------------------------------------------
470
+ LeSsl::ManagerTest: test_authorization_with_DNS
471
+ -----------------------------------------------
472
+ -------------------------------------------------------------------
473
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
474
+ -------------------------------------------------------------------
475
+ -------------------------------------------------------------------
476
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
477
+ -------------------------------------------------------------------
478
+ -------------------------------------------------------------
479
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
480
+ -------------------------------------------------------------
481
+ --------------------------------------------------------------------------------------------------
482
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
483
+ --------------------------------------------------------------------------------------------------
484
+ -------------------------------
485
+ LeSsl::ManagerTest: test_client
486
+ -------------------------------
487
+ ----------------------------------------------------------------------
488
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
489
+ ----------------------------------------------------------------------
490
+ -------------------------------------------------------------------
491
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
492
+ -------------------------------------------------------------------
493
+ -------------------------------
494
+ LeSsl::ManagerTest: test_client
495
+ -------------------------------
496
+ --------------------------------------------------------------------------------------------------
497
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
498
+ --------------------------------------------------------------------------------------------------
499
+ -------------------------------------------------------------
500
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
501
+ -------------------------------------------------------------
502
+ ----------------------------------------------------------------------
503
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
504
+ ----------------------------------------------------------------------
505
+ -------------------------------------------------------------------
506
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
507
+ -------------------------------------------------------------------
508
+ -----------------------------------------------
509
+ LeSsl::ManagerTest: test_authorization_with_DNS
510
+ -----------------------------------------------
511
+ ----------------------------------------------------------------------
512
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
513
+ ----------------------------------------------------------------------
514
+ -------------------------------------------------------------
515
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
516
+ -------------------------------------------------------------
517
+ -----------------------------------------------
518
+ LeSsl::ManagerTest: test_authorization_with_DNS
519
+ -----------------------------------------------
520
+ --------------------------------------------------------------------------------------------------
521
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
522
+ --------------------------------------------------------------------------------------------------
523
+ -------------------------------------------------------------------
524
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
525
+ -------------------------------------------------------------------
526
+ -------------------------------
527
+ LeSsl::ManagerTest: test_client
528
+ -------------------------------
529
+ -------------------------------------------------------------------
530
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
531
+ -------------------------------------------------------------------
532
+ --------------------------------------------------------------------------------------------------
533
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
534
+ --------------------------------------------------------------------------------------------------
535
+ -------------------------------
536
+ LeSsl::ManagerTest: test_client
537
+ -------------------------------
538
+ -------------------------------------------------------------------
539
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
540
+ -------------------------------------------------------------------
541
+ -------------------------------------------------------------
542
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
543
+ -------------------------------------------------------------
544
+ -------------------------------------------------------------------
545
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
546
+ -------------------------------------------------------------------
547
+ ----------------------------------------------------------------------
548
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
549
+ ----------------------------------------------------------------------
550
+ -----------------------------------------------
551
+ LeSsl::ManagerTest: test_authorization_with_DNS
552
+ -----------------------------------------------
553
+ -------------------------------------------------------------
554
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
555
+ -------------------------------------------------------------
556
+ -------------------------------------------------------------------
557
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
558
+ -------------------------------------------------------------------
559
+ -------------------------------------------------------------------
560
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
561
+ -------------------------------------------------------------------
562
+ --------------------------------------------------------------------------------------------------
563
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
564
+ --------------------------------------------------------------------------------------------------
565
+ ----------------------------------------------------------------------
566
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
567
+ ----------------------------------------------------------------------
568
+ -----------------------------------------------
569
+ LeSsl::ManagerTest: test_authorization_with_DNS
570
+ -----------------------------------------------
571
+ -------------------------------
572
+ LeSsl::ManagerTest: test_client
573
+ -------------------------------
574
+ -------------------------------------------------------------
575
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
576
+ -------------------------------------------------------------
577
+ ----------------------------------------------------------------------
578
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
579
+ ----------------------------------------------------------------------
580
+ -------------------------------------------------------------------
581
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
582
+ -------------------------------------------------------------------
583
+ --------------------------------------------------------------------------------------------------
584
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
585
+ --------------------------------------------------------------------------------------------------
586
+ -------------------------------------------------------------------
587
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
588
+ -------------------------------------------------------------------
589
+ -------------------------------
590
+ LeSsl::ManagerTest: test_client
591
+ -------------------------------
592
+ -----------------------------------------------
593
+ LeSsl::ManagerTest: test_authorization_with_DNS
594
+ -----------------------------------------------
595
+ ----------------------------------------------------------------------
596
+ LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
597
+ ----------------------------------------------------------------------
598
+ -------------------------------------------------------------------
599
+ LeSsl::ManagerTest: test_invalid_initialization_without_private_key
600
+ -------------------------------------------------------------------
601
+ -------------------------------------------------------------
602
+ LeSsl::ManagerTest: test_invalid_initialization_without_email
603
+ -------------------------------------------------------------
604
+ -------------------------------------------------------------------
605
+ LeSsl::ManagerTest: test_valid_initialization_(without_registering)
606
+ -------------------------------------------------------------------
607
+ --------------------------------------------------------------------------------------------------
608
+ LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
609
+ --------------------------------------------------------------------------------------------------
610
+ -------------------------------
611
+ LeSsl::ManagerTest: test_client
612
+ -------------------------------
613
+ -----------------------------------------------
614
+ LeSsl::ManagerTest: test_authorization_with_DNS
615
+ -----------------------------------------------
616
+ -----------------------------------------------------------------------------
617
+ LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
618
+ -----------------------------------------------------------------------------
619
+ -------------------------------------------------------------
620
+ LeSSL::ManagerTest: test_invalid_initialization_without_email
621
+ -------------------------------------------------------------
622
+ --------------------------------------------------------------------------
623
+ LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
624
+ --------------------------------------------------------------------------
625
+ ---------------------------------------------------------------------
626
+ LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
627
+ ---------------------------------------------------------------------
628
+ -------------------------------
629
+ LeSSL::ManagerTest: test_client
630
+ -------------------------------
631
+ -------------------------------------------------------------------
632
+ LeSSL::ManagerTest: test_invalid_initialization_without_private_key
633
+ -------------------------------------------------------------------
634
+ -----------------------------------------------
635
+ LeSSL::ManagerTest: test_authorization_with_DNS
636
+ -----------------------------------------------
637
+ ------------------------------------------------------------------------------------------
638
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
639
+ ------------------------------------------------------------------------------------------
640
+ ----------------------------------------------------------------------------------
641
+ LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
642
+ ----------------------------------------------------------------------------------
643
+ -------------------------------------------------------------------
644
+ LeSSL::ManagerTest: test_valid_initialization_(without_registering)
645
+ -------------------------------------------------------------------
646
+ ----------------------------------------------------------------------
647
+ LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
648
+ ----------------------------------------------------------------------
649
+ --------------------------------------------------------------------------------------------------
650
+ LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
651
+ --------------------------------------------------------------------------------------------------
652
+ ---------------------------------------------------------------------------------------
653
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
654
+ ---------------------------------------------------------------------------------------
655
+ ----------------------------------
656
+ LeSSLTest: test_old_LeSsl_constant
657
+ ----------------------------------
658
+ ----------------------------------
659
+ LeSSLTest: test_old_LeSsl_constant
660
+ ----------------------------------
661
+ ----------------------------------------------------------------------
662
+ LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
663
+ ----------------------------------------------------------------------
664
+ -----------------------------------------------------------------------------
665
+ LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
666
+ -----------------------------------------------------------------------------
667
+ ------------------------------------------------------------------------------------------
668
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
669
+ ------------------------------------------------------------------------------------------
670
+ ----------------------------------------------------------------------------------
671
+ LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
672
+ ----------------------------------------------------------------------------------
673
+ --------------------------------------------------------------------------------------------------
674
+ LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
675
+ --------------------------------------------------------------------------------------------------
676
+ ---------------------------------------------------------------------------------------
677
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
678
+ ---------------------------------------------------------------------------------------
679
+ -----------------------------------------------
680
+ LeSSL::ManagerTest: test_authorization_with_DNS
681
+ -----------------------------------------------
682
+ -------------------------------------------------------------------
683
+ LeSSL::ManagerTest: test_invalid_initialization_without_private_key
684
+ -------------------------------------------------------------------
685
+ --------------------------------------------------------------------------
686
+ LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
687
+ --------------------------------------------------------------------------
688
+ -------------------------------------------------------------
689
+ LeSSL::ManagerTest: test_invalid_initialization_without_email
690
+ -------------------------------------------------------------
691
+ -------------------------------
692
+ LeSSL::ManagerTest: test_client
693
+ -------------------------------
694
+ ---------------------------------------------------------------------
695
+ LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
696
+ ---------------------------------------------------------------------
697
+ -------------------------------------------------------------------
698
+ LeSSL::ManagerTest: test_valid_initialization_(without_registering)
699
+ -------------------------------------------------------------------
700
+ ----------------------------------
701
+ LeSSLTest: test_old_LeSsl_constant
702
+ ----------------------------------
703
+ -------------------------------------------------------------
704
+ LeSSL::ManagerTest: test_invalid_initialization_without_email
705
+ -------------------------------------------------------------
706
+ --------------------------------------------------------------------------------------------------
707
+ LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
708
+ --------------------------------------------------------------------------------------------------
709
+ -----------------------------------------------
710
+ LeSSL::ManagerTest: test_authorization_with_DNS
711
+ -----------------------------------------------
712
+ ------------------------------------------------------------------------------------------
713
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
714
+ ------------------------------------------------------------------------------------------
715
+ -------------------------------
716
+ LeSSL::ManagerTest: test_client
717
+ -------------------------------
718
+ --------------------------------------------------------------------------
719
+ LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
720
+ --------------------------------------------------------------------------
721
+ -----------------------------------------------------------------------------
722
+ LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
723
+ -----------------------------------------------------------------------------
724
+ -------------------------------------------------------------------
725
+ LeSSL::ManagerTest: test_valid_initialization_(without_registering)
726
+ -------------------------------------------------------------------
727
+ ---------------------------------------------------------------------
728
+ LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
729
+ ---------------------------------------------------------------------
730
+ ----------------------------------------------------------------------------------
731
+ LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
732
+ ----------------------------------------------------------------------------------
733
+ -------------------------------------------------------------------
734
+ LeSSL::ManagerTest: test_invalid_initialization_without_private_key
735
+ -------------------------------------------------------------------
736
+ ----------------------------------------------------------------------
737
+ LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
738
+ ----------------------------------------------------------------------
739
+ ---------------------------------------------------------------------------------------
740
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
741
+ ---------------------------------------------------------------------------------------
742
+ --------------------------------------------------------------------------
743
+ LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
744
+ --------------------------------------------------------------------------
745
+ -----------------------------------------------
746
+ LeSSL::ManagerTest: test_authorization_with_DNS
747
+ -----------------------------------------------
748
+ ---------------------------------------------------------------------
749
+ LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
750
+ ---------------------------------------------------------------------
751
+ -------------------------------------------------------------------
752
+ LeSSL::ManagerTest: test_valid_initialization_(without_registering)
753
+ -------------------------------------------------------------------
754
+ -------------------------------------------------------------
755
+ LeSSL::ManagerTest: test_invalid_initialization_without_email
756
+ -------------------------------------------------------------
757
+ ----------------------------------------------------------------------------------
758
+ LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
759
+ ----------------------------------------------------------------------------------
760
+ ---------------------------------------------------------------------------------------
761
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
762
+ ---------------------------------------------------------------------------------------
763
+ ------------------------------------------------------------------------------------------
764
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
765
+ ------------------------------------------------------------------------------------------
766
+ ----------------------------------------------------------------------
767
+ LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
768
+ ----------------------------------------------------------------------
769
+ -----------------------------------------------------------------------------
770
+ LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
771
+ -----------------------------------------------------------------------------
772
+ -------------------------------------------------------------------
773
+ LeSSL::ManagerTest: test_invalid_initialization_without_private_key
774
+ -------------------------------------------------------------------
775
+ -------------------------------
776
+ LeSSL::ManagerTest: test_client
777
+ -------------------------------
778
+ --------------------------------------------------------------------------------------------------
779
+ LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
780
+ --------------------------------------------------------------------------------------------------
781
+ ----------------------------------
782
+ LeSSLTest: test_old_LeSsl_constant
783
+ ----------------------------------
784
+ ----------------------------------
785
+ LeSSLTest: test_old_LeSsl_constant
786
+ ----------------------------------
787
+ -------------------------------------------------------------------
788
+ LeSSL::ManagerTest: test_valid_initialization_(without_registering)
789
+ -------------------------------------------------------------------
790
+ ----------------------------------------------------------------------
791
+ LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
792
+ ----------------------------------------------------------------------
793
+ -------------------------------------------------------------
794
+ LeSSL::ManagerTest: test_invalid_initialization_without_email
795
+ -------------------------------------------------------------
796
+ -------------------------------
797
+ LeSSL::ManagerTest: test_client
798
+ -------------------------------
799
+ --------------------------------------------------------------------------
800
+ LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
801
+ --------------------------------------------------------------------------
802
+ -----------------------------------------------
803
+ LeSSL::ManagerTest: test_authorization_with_DNS
804
+ -----------------------------------------------
805
+ -----------------------------------------------------------------------------
806
+ LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
807
+ -----------------------------------------------------------------------------
1
808
  -------------------------------------------------------------------
2
809
  LeSSL::ManagerTest: test_invalid_initialization_without_private_key
3
810
  -------------------------------------------------------------------
811
+ ---------------------------------------------------------------------
812
+ LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
813
+ ---------------------------------------------------------------------
814
+ ------------------------------------------------------------------------------------------
815
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
816
+ ------------------------------------------------------------------------------------------
817
+ ----------------------------------------------------------------------------------
818
+ LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
819
+ ----------------------------------------------------------------------------------
820
+ --------------------------------------------------------------------------------------------------
821
+ LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
822
+ --------------------------------------------------------------------------------------------------
823
+ ---------------------------------------------------------------------------------------
824
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
825
+ ---------------------------------------------------------------------------------------
826
+ ----------------------------------
827
+ LeSSLTest: test_old_LeSsl_constant
828
+ ----------------------------------
829
+ -------------------------------
830
+ LeSSL::ManagerTest: test_client
831
+ -------------------------------
832
+ -----------------------------------------------
833
+ LeSSL::ManagerTest: test_authorization_with_DNS
834
+ -----------------------------------------------
4
835
  -------------------------------------------------------------------
5
836
  LeSSL::ManagerTest: test_valid_initialization_(without_registering)
6
837
  -------------------------------------------------------------------
838
+ ---------------------------------------------------------------------------------------
839
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
840
+ ---------------------------------------------------------------------------------------
841
+ -------------------------------------------------------------
842
+ LeSSL::ManagerTest: test_invalid_initialization_without_email
843
+ -------------------------------------------------------------
7
844
  --------------------------------------------------------------------------
8
845
  LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
9
846
  --------------------------------------------------------------------------
847
+ -------------------------------------------------------------------
848
+ LeSSL::ManagerTest: test_invalid_initialization_without_private_key
849
+ -------------------------------------------------------------------
850
+ ---------------------------------------------------------------------
851
+ LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
852
+ ---------------------------------------------------------------------
853
+ ----------------------------------------------------------------------------------
854
+ LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
855
+ ----------------------------------------------------------------------------------
856
+ --------------------------------------------------------------------------------------------------
857
+ LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
858
+ --------------------------------------------------------------------------------------------------
859
+ ------------------------------------------------------------------------------------------
860
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
861
+ ------------------------------------------------------------------------------------------
862
+ ----------------------------------------------------------------------
863
+ LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
864
+ ----------------------------------------------------------------------
865
+ -----------------------------------------------------------------------------
866
+ LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
867
+ -----------------------------------------------------------------------------
868
+ -------------------------------------------------------------------
869
+ LeSSL::ManagerTest: test_valid_initialization_(without_registering)
870
+ -------------------------------------------------------------------
10
871
  -------------------------------
11
872
  LeSSL::ManagerTest: test_client
12
873
  -------------------------------
874
+ ---------------------------------------------------------------------------------------
875
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
876
+ ---------------------------------------------------------------------------------------
13
877
  --------------------------------------------------------------------------------------------------
14
878
  LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
15
879
  --------------------------------------------------------------------------------------------------
880
+ ------------------------------------------------------------------------------------------
881
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
882
+ ------------------------------------------------------------------------------------------
883
+ -----------------------------------------------
884
+ LeSSL::ManagerTest: test_authorization_with_DNS
885
+ -----------------------------------------------
886
+ -------------------------------------------------------------
887
+ LeSSL::ManagerTest: test_invalid_initialization_without_email
888
+ -------------------------------------------------------------
889
+ ----------------------------------------------------------------------
890
+ LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
891
+ ----------------------------------------------------------------------
892
+ --------------------------------------------------------------------------
893
+ LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
894
+ --------------------------------------------------------------------------
895
+ -------------------------------------------------------------------
896
+ LeSSL::ManagerTest: test_invalid_initialization_without_private_key
897
+ -------------------------------------------------------------------
898
+ -----------------------------------------------------------------------------
899
+ LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
900
+ -----------------------------------------------------------------------------
901
+ ---------------------------------------------------------------------
902
+ LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
903
+ ---------------------------------------------------------------------
904
+ ----------------------------------------------------------------------------------
905
+ LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
906
+ ----------------------------------------------------------------------------------
907
+ ----------------------------------
908
+ LeSSLTest: test_old_LeSsl_constant
909
+ ----------------------------------
910
+ ----------------------------------
911
+ LeSSLTest: test_old_LeSsl_constant
912
+ ----------------------------------
913
+ -----------------------------------------------
914
+ LeSSL::ManagerTest: test_authorization_with_DNS
915
+ -----------------------------------------------
916
+ ----------------------------------------------------------------------------------
917
+ LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
918
+ ----------------------------------------------------------------------------------
919
+ -------------------------------------------------------------------
920
+ LeSSL::ManagerTest: test_invalid_initialization_without_private_key
921
+ -------------------------------------------------------------------
922
+ --------------------------------------------------------------------------
923
+ LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
924
+ --------------------------------------------------------------------------
16
925
  ---------------------------------------------------------------------------------------
17
926
  LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
18
927
  ---------------------------------------------------------------------------------------
19
- ----------------------------------------------------------------------
20
- LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
21
- ----------------------------------------------------------------------
22
- ----------------------------------------------------------------------------------
23
- LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
24
- ----------------------------------------------------------------------------------
25
928
  -------------------------------------------------------------
26
929
  LeSSL::ManagerTest: test_invalid_initialization_without_email
27
930
  -------------------------------------------------------------
931
+ --------------------------------------------------------------------------------------------------
932
+ LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
933
+ --------------------------------------------------------------------------------------------------
934
+ -------------------------------
935
+ LeSSL::ManagerTest: test_client
936
+ -------------------------------
937
+ ----------------------------------------------------------------------
938
+ LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
939
+ ----------------------------------------------------------------------
28
940
  ------------------------------------------------------------------------------------------
29
941
  LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
30
942
  ------------------------------------------------------------------------------------------
943
+ -------------------------------------------------------------------
944
+ LeSSL::ManagerTest: test_valid_initialization_(without_registering)
945
+ -------------------------------------------------------------------
31
946
  ---------------------------------------------------------------------
32
947
  LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
33
948
  ---------------------------------------------------------------------
34
- -----------------------------------------------
35
- LeSSL::ManagerTest: test_authorization_with_DNS
36
- -----------------------------------------------
37
949
  -----------------------------------------------------------------------------
38
950
  LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
39
951
  -----------------------------------------------------------------------------
40
- --------------------------------------------------------------------------------------------------
41
- LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
42
- --------------------------------------------------------------------------------------------------
43
- -----------------------------------------------
44
- LeSSL::ManagerTest: test_authorization_with_DNS
45
- -----------------------------------------------
46
- ---------------------------------------------------------------------
47
- LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
48
- ---------------------------------------------------------------------
49
952
  ----------------------------------------------------------------------
50
953
  LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
51
954
  ----------------------------------------------------------------------
955
+ ---------------------------------------------------------------------------------------
956
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
957
+ ---------------------------------------------------------------------------------------
958
+ -----------------------------------------------
959
+ LeSSL::ManagerTest: test_authorization_with_DNS
960
+ -----------------------------------------------
52
961
  ------------------------------------------------------------------------------------------
53
962
  LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
54
963
  ------------------------------------------------------------------------------------------
55
- -------------------------------
56
- LeSSL::ManagerTest: test_client
57
- -------------------------------
58
- -----------------------------------------------------------------------------
59
- LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
60
- -----------------------------------------------------------------------------
61
- --------------------------------------------------------------------------
62
- LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
63
- --------------------------------------------------------------------------
64
964
  ----------------------------------------------------------------------------------
65
965
  LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
66
966
  ----------------------------------------------------------------------------------
67
- ---------------------------------------------------------------------------------------
68
- LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
69
- ---------------------------------------------------------------------------------------
70
- -------------------------------------------------------------------
71
- LeSSL::ManagerTest: test_invalid_initialization_without_private_key
72
- -------------------------------------------------------------------
967
+ --------------------------------------------------------------------------
968
+ LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
969
+ --------------------------------------------------------------------------
73
970
  -------------------------------------------------------------------
74
971
  LeSSL::ManagerTest: test_valid_initialization_(without_registering)
75
972
  -------------------------------------------------------------------
973
+ ---------------------------------------------------------------------
974
+ LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
975
+ ---------------------------------------------------------------------
76
976
  -------------------------------------------------------------
77
977
  LeSSL::ManagerTest: test_invalid_initialization_without_email
78
978
  -------------------------------------------------------------
979
+ --------------------------------------------------------------------------------------------------
980
+ LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
981
+ --------------------------------------------------------------------------------------------------
982
+ -----------------------------------------------------------------------------
983
+ LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
984
+ -----------------------------------------------------------------------------
985
+ -------------------------------
986
+ LeSSL::ManagerTest: test_client
987
+ -------------------------------
988
+ -------------------------------------------------------------------
989
+ LeSSL::ManagerTest: test_invalid_initialization_without_private_key
990
+ -------------------------------------------------------------------
79
991
  ----------------------------------
80
992
  LeSSLTest: test_old_LeSsl_constant
81
993
  ----------------------------------
82
994
  ----------------------------------
83
995
  LeSSLTest: test_old_LeSsl_constant
84
996
  ----------------------------------
85
- -------------------------------
86
- LeSSL::ManagerTest: test_client
87
- -------------------------------
997
+ --------------------------------------------------------------------------------------------------
998
+ LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
999
+ --------------------------------------------------------------------------------------------------
1000
+ -------------------------------------------------------------------
1001
+ LeSSL::ManagerTest: test_invalid_initialization_without_private_key
1002
+ -------------------------------------------------------------------
1003
+ ---------------------------------------------------------------------
1004
+ LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
1005
+ ---------------------------------------------------------------------
1006
+ --------------------------------------------------------------------------
1007
+ LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
1008
+ --------------------------------------------------------------------------
88
1009
  -----------------------------------------------------------------------------
89
1010
  LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
90
1011
  -----------------------------------------------------------------------------
91
- ----------------------------------------------------------------------
92
- LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
93
- ----------------------------------------------------------------------
1012
+ ------------------------------------------------------------------------------------------
1013
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
1014
+ ------------------------------------------------------------------------------------------
94
1015
  -----------------------------------------------
95
1016
  LeSSL::ManagerTest: test_authorization_with_DNS
96
1017
  -----------------------------------------------
1018
+ ----------------------------------------------------------------------
1019
+ LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
1020
+ ----------------------------------------------------------------------
1021
+ ----------------------------------------------------------------------------------
1022
+ LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
1023
+ ----------------------------------------------------------------------------------
97
1024
  -------------------------------------------------------------------
98
1025
  LeSSL::ManagerTest: test_valid_initialization_(without_registering)
99
1026
  -------------------------------------------------------------------
100
1027
  -------------------------------------------------------------
101
1028
  LeSSL::ManagerTest: test_invalid_initialization_without_email
102
1029
  -------------------------------------------------------------
103
- ---------------------------------------------------------------------
104
- LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
105
- ---------------------------------------------------------------------
106
- -------------------------------------------------------------------
107
- LeSSL::ManagerTest: test_invalid_initialization_without_private_key
108
- -------------------------------------------------------------------
109
- --------------------------------------------------------------------------------------------------
110
- LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
111
- --------------------------------------------------------------------------------------------------
112
- ------------------------------------------------------------------------------------------
113
- LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
114
- ------------------------------------------------------------------------------------------
115
- --------------------------------------------------------------------------
116
- LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
117
- --------------------------------------------------------------------------
1030
+ -------------------------------
1031
+ LeSSL::ManagerTest: test_client
1032
+ -------------------------------
118
1033
  ---------------------------------------------------------------------------------------
119
1034
  LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
120
1035
  ---------------------------------------------------------------------------------------
1036
+ ----------------------------------
1037
+ LeSSLTest: test_old_LeSsl_constant
1038
+ ----------------------------------
1039
+ -------------------------------
1040
+ LeSSL::ManagerTest: test_client
1041
+ -------------------------------
121
1042
  ----------------------------------------------------------------------------------
122
1043
  LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
123
1044
  ----------------------------------------------------------------------------------
124
- ----------------------------------------------------------------------------------
125
- LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
126
- ----------------------------------------------------------------------------------
1045
+ --------------------------------------------------------------------------------------------------
1046
+ LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
1047
+ --------------------------------------------------------------------------------------------------
127
1048
  ----------------------------------------------------------------------
128
1049
  LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
129
1050
  ----------------------------------------------------------------------
130
1051
  -------------------------------------------------------------------
131
1052
  LeSSL::ManagerTest: test_invalid_initialization_without_private_key
132
1053
  -------------------------------------------------------------------
133
- --------------------------------------------------------------------------------------------------
134
- LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
135
- --------------------------------------------------------------------------------------------------
136
- ---------------------------------------------------------------------------------------
137
- LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
138
- ---------------------------------------------------------------------------------------
139
- -------------------------------------------------------------------
140
- LeSSL::ManagerTest: test_valid_initialization_(without_registering)
141
- -------------------------------------------------------------------
1054
+ ------------------------------------------------------------------------------------------
1055
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
1056
+ ------------------------------------------------------------------------------------------
1057
+ ---------------------------------------------------------------------
1058
+ LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
1059
+ ---------------------------------------------------------------------
142
1060
  -----------------------------------------------------------------------------
143
1061
  LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
144
1062
  -----------------------------------------------------------------------------
145
- -------------------------------------------------------------
146
- LeSSL::ManagerTest: test_invalid_initialization_without_email
147
- -------------------------------------------------------------
148
1063
  --------------------------------------------------------------------------
149
1064
  LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
150
1065
  --------------------------------------------------------------------------
151
- -------------------------------
152
- LeSSL::ManagerTest: test_client
153
- -------------------------------
154
1066
  -----------------------------------------------
155
1067
  LeSSL::ManagerTest: test_authorization_with_DNS
156
1068
  -----------------------------------------------
1069
+ -------------------------------------------------------------------
1070
+ LeSSL::ManagerTest: test_valid_initialization_(without_registering)
1071
+ -------------------------------------------------------------------
1072
+ -------------------------------------------------------------
1073
+ LeSSL::ManagerTest: test_invalid_initialization_without_email
1074
+ -------------------------------------------------------------
1075
+ ---------------------------------------------------------------------------------------
1076
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
1077
+ ---------------------------------------------------------------------------------------
1078
+ -------------------------------------------------------------
1079
+ LeSSL::ManagerTest: test_invalid_initialization_without_email
1080
+ -------------------------------------------------------------
157
1081
  ---------------------------------------------------------------------
158
1082
  LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
159
1083
  ---------------------------------------------------------------------
1084
+ ---------------------------------------------------------------------------------------
1085
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
1086
+ ---------------------------------------------------------------------------------------
160
1087
  ------------------------------------------------------------------------------------------
161
1088
  LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
162
1089
  ------------------------------------------------------------------------------------------
163
- ----------------------------------
164
- LeSSLTest: test_old_LeSsl_constant
165
- ----------------------------------
166
- -------------------------------------------------------------------
167
- LeSsl::ManagerTest: test_valid_initialization_(without_registering)
168
- -------------------------------------------------------------------
169
- ----------------------------------------------------------------------
170
- LeSsl::ManagerTest: test_invalid_initialization_without_agreeing_terms
171
- ----------------------------------------------------------------------
172
- ----------------------------------------------------------------------------------
173
- LeSsl::ManagerTest: test_#private_key_string_from_env_without_environment_variable
174
- ----------------------------------------------------------------------------------
175
1090
  --------------------------------------------------------------------------
176
- LeSsl::ManagerTest: test_#email_from_env_with_current_environment_variable
1091
+ LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
177
1092
  --------------------------------------------------------------------------
1093
+ --------------------------------------------------------------------------------------------------
1094
+ LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
1095
+ --------------------------------------------------------------------------------------------------
1096
+ ----------------------------------------------------------------------
1097
+ LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
1098
+ ----------------------------------------------------------------------
1099
+ -------------------------------
1100
+ LeSSL::ManagerTest: test_client
1101
+ -------------------------------
178
1102
  -------------------------------------------------------------------
179
- LeSsl::ManagerTest: test_invalid_initialization_without_private_key
1103
+ LeSSL::ManagerTest: test_invalid_initialization_without_private_key
180
1104
  -------------------------------------------------------------------
181
- ---------------------------------------------------------------------------------------
182
- LeSsl::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
183
- ---------------------------------------------------------------------------------------
184
- ------------------------------------------------------------------------------------------
185
- LeSsl::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
186
- ------------------------------------------------------------------------------------------
187
1105
  -----------------------------------------------------------------------------
188
- LeSsl::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
1106
+ LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
189
1107
  -----------------------------------------------------------------------------
190
- ---------------------------------------------------------------------
191
- LeSsl::ManagerTest: test_#email_from_env_without_environment_variable
192
- ---------------------------------------------------------------------
193
- -------------------------------
194
- LeSsl::ManagerTest: test_client
195
- -------------------------------
196
- --------------------------------------------------------------------------------------------------
197
- LeSsl::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
198
- --------------------------------------------------------------------------------------------------
1108
+ ----------------------------------------------------------------------------------
1109
+ LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
1110
+ ----------------------------------------------------------------------------------
199
1111
  -----------------------------------------------
200
- LeSsl::ManagerTest: test_authorization_with_DNS
1112
+ LeSSL::ManagerTest: test_authorization_with_DNS
201
1113
  -----------------------------------------------
202
- -------------------------------------------------------------
203
- LeSsl::ManagerTest: test_invalid_initialization_without_email
204
- -------------------------------------------------------------
1114
+ -------------------------------------------------------------------
1115
+ LeSSL::ManagerTest: test_valid_initialization_(without_registering)
1116
+ -------------------------------------------------------------------
205
1117
  ----------------------------------
206
1118
  LeSSLTest: test_old_LeSsl_constant
207
1119
  ----------------------------------
208
- ---------------------------------------------------------------------
209
- LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
210
- ---------------------------------------------------------------------
211
- ---------------------------------------------------------------------------------------
212
- LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
213
- ---------------------------------------------------------------------------------------
1120
+ -------------------------------------------------------------------
1121
+ LeSSL::ManagerTest: test_valid_initialization_(without_registering)
1122
+ -------------------------------------------------------------------
1123
+ -------------------------------
1124
+ LeSSL::ManagerTest: test_client
1125
+ -------------------------------
1126
+ -------------------------------------------------------------
1127
+ LeSSL::ManagerTest: test_invalid_initialization_without_email
1128
+ -------------------------------------------------------------
214
1129
  --------------------------------------------------------------------------
215
1130
  LeSSL::ManagerTest: test_#email_from_env_with_current_environment_variable
216
1131
  --------------------------------------------------------------------------
217
1132
  -----------------------------------------------
218
1133
  LeSSL::ManagerTest: test_authorization_with_DNS
219
1134
  -----------------------------------------------
1135
+ ---------------------------------------------------------------------------------------
1136
+ LeSSL::ManagerTest: test_#private_key_string_from_env_with_current_environment_variable
1137
+ ---------------------------------------------------------------------------------------
1138
+ ----------------------------------------------------------------------
1139
+ LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
1140
+ ----------------------------------------------------------------------
220
1141
  ------------------------------------------------------------------------------------------
221
1142
  LeSSL::ManagerTest: test_#private_key_string_from_env_with_deprecated_environment_variable
222
1143
  ------------------------------------------------------------------------------------------
223
- -------------------------------------------------------------
224
- LeSSL::ManagerTest: test_invalid_initialization_without_email
225
- -------------------------------------------------------------
1144
+ ---------------------------------------------------------------------
1145
+ LeSSL::ManagerTest: test_#email_from_env_without_environment_variable
1146
+ ---------------------------------------------------------------------
1147
+ -------------------------------------------------------------------
1148
+ LeSSL::ManagerTest: test_invalid_initialization_without_private_key
1149
+ -------------------------------------------------------------------
226
1150
  -----------------------------------------------------------------------------
227
1151
  LeSSL::ManagerTest: test_#email_from_env_with_deprecated_environment_variable
228
1152
  -----------------------------------------------------------------------------
229
- ----------------------------------------------------------------------
230
- LeSSL::ManagerTest: test_invalid_initialization_without_agreeing_terms
231
- ----------------------------------------------------------------------
232
1153
  --------------------------------------------------------------------------------------------------
233
1154
  LeSSL::ManagerTest: test_valid_initialization_with_environment_variables_(but_without_registering)
234
1155
  --------------------------------------------------------------------------------------------------
235
- -------------------------------------------------------------------
236
- LeSSL::ManagerTest: test_invalid_initialization_without_private_key
237
- -------------------------------------------------------------------
238
- -------------------------------
239
- LeSSL::ManagerTest: test_client
240
- -------------------------------
241
- -------------------------------------------------------------------
242
- LeSSL::ManagerTest: test_valid_initialization_(without_registering)
243
- -------------------------------------------------------------------
244
1156
  ----------------------------------------------------------------------------------
245
1157
  LeSSL::ManagerTest: test_#private_key_string_from_env_without_environment_variable
246
1158
  ----------------------------------------------------------------------------------
1159
+ ----------------------------------
1160
+ LeSSLTest: test_old_LeSsl_constant
1161
+ ----------------------------------