scooter 4.5.3 → 4.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd3f51eadeab98e7fd6f4823636ffd64b6f3ddb64618703ff7c330ea795bcbcf
4
- data.tar.gz: 3cdb800fbc6fc651dcf9414a092f89d768e53fa435b38cde40459d4329c8ae58
3
+ metadata.gz: 140f45ad0b9707ef584006662c830aa1965f8e7ca2c5b593a3f0d6b5bb36f0b8
4
+ data.tar.gz: beae0106ed41a25240446b225eeebeada7f75b5174ba2eb148a7e763ad790543
5
5
  SHA512:
6
- metadata.gz: 7861b61c25b1a4cc3423f6710ee691868a4ee00b2a5504183771bc25540d7acd8fd3c2a7165f82e0609a41c16eff87a04d5ff230a5841ea836d42b15eb21f14d
7
- data.tar.gz: ed40948a47c73b1f0d93cb5e6ef0c14b8e9896a725025f9fe436f0a1be418f7b8d38f9a11179ce7d1c0d176ef8e4d0b06b8eaa9961e200b3d1ec4b8f1164e184
6
+ metadata.gz: 3784b635e886af9fb0af04f11c107269da4b3cdfe45256d0ab5a7cd680e47c8bd69b9cb722cbcc3a28184ca22f4c8dd4b84ae18f8c96dbfc3fd6e5633e34d551
7
+ data.tar.gz: a13caa8a225e042e5333ac669c9512cb2b57321eccc373f91d83d2e27f0c12f7a7a9c3a44e14469421d892ab3cd8bfe07f5fe8c09634ed42712c9925b9621fba
data/README.md CHANGED
@@ -32,7 +32,7 @@ Scooter is currently divvied into the following sections:
32
32
  ## Running the tests
33
33
 
34
34
  ```
35
- bundle exec rake spec
35
+ bundle exec rake test
36
36
  ```
37
37
 
38
38
  ## Versioning
@@ -88,8 +88,13 @@ module Scooter
88
88
  end
89
89
 
90
90
  def signin(login=self.credentials.login, password=self.credentials.password)
91
+ response = @connection.get "https://#{host}/auth/login"
92
+ return response if response.status != 200
93
+ # extract the session cookie, if it is present
94
+ cookie = response.headers['Set-Cookie']
91
95
  response = @connection.post "/auth/login" do |request|
92
96
  request.headers['Content-Type'] = 'application/x-www-form-urlencoded; charset=UTF-8'
97
+ request.headers['Cookie'] = cookie if cookie
93
98
  request.body = "username=#{login}&password=#{CGI.escape(password)}"
94
99
  connection.port = 443
95
100
  end
@@ -1,5 +1,5 @@
1
1
  module Scooter
2
2
  module Version
3
- STRING = '4.5.3'
3
+ STRING = '4.5.4'
4
4
  end
5
5
  end
@@ -28,6 +28,12 @@ module Scooter
28
28
 
29
29
  context '"signin with a page that returns a token' do
30
30
  before do
31
+ stub_request(:get, /auth\/login/).
32
+ to_return(status: 200,
33
+ body: '',
34
+ headers: {
35
+ "set-cookie"=>"__HOST-somecookie=something;Secure;Path=/",
36
+ })
31
37
  stub_request(:post, /auth\/login/).
32
38
  to_return(status: 200,
33
39
  body: '',
@@ -35,7 +41,7 @@ module Scooter
35
41
  "date"=>"Tue, 29 Nov 2016 22:05:41 GMT",
36
42
  "content-length"=>"0",
37
43
  "connection"=>"close",
38
- "set-cookie"=>"JSESSIONID=b05e9b11-5e9f-4d6a-9faf-e28a0415197d; Path=/; Secure; HttpOnly, rememberMe=deleteMe; Path=/auth; Max-Age=0; Expires=Mon, 28-Nov-2016 22:05:41 GMT, pl_ssti=0CeHhpz5PPLna7kpaEMcTHjJ62z9eizHTzsxEXNK8W20;Secure;Path=/",
44
+ "set-cookie"=>"pl_ssti=0CeHhpz5PPLna7kpaEMcTHjJ62z9eizHTzsxEXNK8W20;Secure;Path=/",
39
45
  "location"=>"/",
40
46
  "x-frame-options"=>"DENY"})
41
47
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scooter
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.5.3
4
+ version: 4.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppetlabs