angular_rails_csrf 4.0.1 → 4.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +47 -3
- data/Rakefile +1 -2
- data/lib/angular_rails_csrf/concern.rb +26 -9
- data/lib/angular_rails_csrf/version.rb +1 -1
- data/test/angular_rails_csrf_skip_test.rb +14 -0
- data/test/angular_rails_csrf_test.rb +77 -7
- data/test/dummy/app/controllers/api_controller.rb +7 -0
- data/test/dummy/config.ru +1 -1
- data/test/dummy/config/routes.rb +2 -0
- data/test/dummy/log/test.log +1521 -0
- metadata +10 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fbbe5d4e901a8407bab7ff813f821b21461330470f2e6002d4e3d1a818eea858
|
4
|
+
data.tar.gz: 0e69f2eefcb28ae04e1b3de4ba04d00e6e3977235b725fa26d83d46ce33bcd3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ab71939bec130bfc22e79dabff8e904591990c178b03de610cb5592aa41bb6aeab73cf34340efe77592179c94b1b455029ee50f94955eca2f2bb28955f4f3f1
|
7
|
+
data.tar.gz: 0571fe4d59a0ed421942c37f357d34b3fd05f2fa8f5a98801d327d9054bf8cb5123f4b2c833053a34e82d96d103e53300d29c3303628c1c6d2a2d63bd43c07b7
|
data/README.md
CHANGED
@@ -10,7 +10,7 @@ This project adds direct support for this scheme to your Rails application witho
|
|
10
10
|
|
11
11
|
Note that there is nothing AngularJS specific here, and this will work with any other front-end that implements the same scheme.
|
12
12
|
|
13
|
-
Check [version compatibility](https://github.com/jsanders/angular_rails_csrf/wiki/Version-
|
13
|
+
Check [version compatibility](https://github.com/jsanders/angular_rails_csrf/wiki/Version-Compatibility) to learn which Rails/Rubies are currently supported.
|
14
14
|
|
15
15
|
## Installation
|
16
16
|
|
@@ -52,6 +52,50 @@ end
|
|
52
52
|
|
53
53
|
If `angular_rails_csrf_domain` is not set, it defaults to `nil`.
|
54
54
|
|
55
|
+
### Secure Cookie
|
56
|
+
|
57
|
+
To set a "secure" flag for the cookie, set the `angular_rails_csrf_secure` option to `true`:
|
58
|
+
|
59
|
+
```ruby
|
60
|
+
# application.rb
|
61
|
+
class Application < Rails::Application
|
62
|
+
#...
|
63
|
+
config.angular_rails_csrf_secure = true
|
64
|
+
end
|
65
|
+
```
|
66
|
+
|
67
|
+
`angular_rails_csrf_secure` defaults to `false`.
|
68
|
+
|
69
|
+
### SameSite
|
70
|
+
|
71
|
+
The SameSite attribute defaults to `:lax`. You can override this in the config:
|
72
|
+
|
73
|
+
```ruby
|
74
|
+
# application.rb
|
75
|
+
class Application < Rails::Application
|
76
|
+
#...
|
77
|
+
config.angular_rails_csrf_same_site = :strict
|
78
|
+
end
|
79
|
+
```
|
80
|
+
|
81
|
+
**NOTE**: When using `config.angular_rails_csrf_same_site = :none`, this gem automatically sets the cookie to `Secure` (`config.angular_rails_csrf_secure = true`) to comply with [the specifications](https://tools.ietf.org/html/draft-west-cookie-incrementalism-00).
|
82
|
+
|
83
|
+
Please note that [Safari is known to have issues](https://bugs.webkit.org/show_bug.cgi?id=198181) with SameSite attribute set to `:none`.
|
84
|
+
|
85
|
+
### HttpOnly Cookie
|
86
|
+
|
87
|
+
To set the ["httponly" flag](https://owasp.org/www-community/HttpOnly) for your cookie, set the `angular_rails_csrf_httponly` option to `true`:
|
88
|
+
|
89
|
+
```ruby
|
90
|
+
# application.rb
|
91
|
+
class Application < Rails::Application
|
92
|
+
#...
|
93
|
+
config.angular_rails_csrf_httponly = true
|
94
|
+
end
|
95
|
+
```
|
96
|
+
|
97
|
+
`angular_rails_csrf_httponly` defaults to `false`.
|
98
|
+
|
55
99
|
### Exclusions
|
56
100
|
|
57
101
|
Sometimes you will want to skip setting the XSRF token for certain controllers (for example, when using SSE or ActionCable, as discussed [here](https://github.com/jsanders/angular_rails_csrf/issues/7)):
|
@@ -59,7 +103,7 @@ Sometimes you will want to skip setting the XSRF token for certain controllers (
|
|
59
103
|
```ruby
|
60
104
|
class ExclusionsController < ApplicationController
|
61
105
|
exclude_xsrf_token_cookie
|
62
|
-
|
106
|
+
|
63
107
|
# your actions here...
|
64
108
|
end
|
65
109
|
```
|
@@ -78,6 +122,6 @@ and then
|
|
78
122
|
$ rake test
|
79
123
|
```
|
80
124
|
|
81
|
-
## License
|
125
|
+
## License
|
82
126
|
|
83
127
|
Licensed under the [MIT License](https://github.com/jsanders/angular_rails_csrf/blob/master/LICENSE).
|
data/Rakefile
CHANGED
@@ -9,20 +9,37 @@ module AngularRailsCsrf
|
|
9
9
|
end
|
10
10
|
|
11
11
|
def set_xsrf_token_cookie
|
12
|
-
return unless protect_against_forgery? && !respond_to?(:__exclude_xsrf_token_cookie?)
|
12
|
+
return unless defined?(protect_against_forgery?) && protect_against_forgery? && !respond_to?(:__exclude_xsrf_token_cookie?)
|
13
13
|
|
14
14
|
config = Rails.application.config
|
15
|
-
|
16
|
-
|
17
|
-
|
15
|
+
|
16
|
+
secure = option_from config, :angular_rails_csrf_secure
|
17
|
+
same_site = option_from config, :angular_rails_csrf_same_site, :lax
|
18
|
+
|
19
|
+
cookie_options = {
|
20
|
+
value: form_authenticity_token,
|
21
|
+
domain: option_from(config, :angular_rails_csrf_domain),
|
22
|
+
same_site: same_site,
|
23
|
+
httponly: option_from(config, :angular_rails_csrf_httponly, false),
|
24
|
+
secure: same_site.eql?(:none) || secure
|
25
|
+
}
|
26
|
+
|
27
|
+
cookie_name = option_from(config,
|
28
|
+
:angular_rails_csrf_cookie_name,
|
29
|
+
'XSRF-TOKEN')
|
30
|
+
cookies[cookie_name] = cookie_options
|
18
31
|
end
|
19
32
|
|
20
33
|
def verified_request?
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
34
|
+
super || valid_authenticity_token?(session, request.headers['X-XSRF-TOKEN'])
|
35
|
+
end
|
36
|
+
|
37
|
+
private
|
38
|
+
|
39
|
+
# Fetches the given option from config
|
40
|
+
# If the option is not set, return a default value
|
41
|
+
def option_from(config, option, default = nil)
|
42
|
+
config.respond_to?(option) ? config.send(option) : default
|
26
43
|
end
|
27
44
|
|
28
45
|
module ClassMethods
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'test_helper'
|
4
|
+
|
5
|
+
class AngularRailsCsrfSkipTest < ActionController::TestCase
|
6
|
+
tests ApiController
|
7
|
+
|
8
|
+
test 'csrf-cookie is not set and no error if protect_against_forgery? is not defined' do
|
9
|
+
refute @controller.respond_to?(:protect_against_forgery?)
|
10
|
+
get :index
|
11
|
+
assert_nil cookies['XSRF-TOKEN']
|
12
|
+
assert_response :success
|
13
|
+
end
|
14
|
+
end
|
@@ -31,6 +31,15 @@ class AngularRailsCsrfTest < ActionController::TestCase
|
|
31
31
|
assert_response :success
|
32
32
|
end
|
33
33
|
|
34
|
+
test 'csrf-cookie is not set if exclusion is enabled' do
|
35
|
+
refute @controller.respond_to?(:__exclude_xsrf_token_cookie?)
|
36
|
+
@controller.class_eval { exclude_xsrf_token_cookie }
|
37
|
+
get :index
|
38
|
+
assert_valid_cookie present: false
|
39
|
+
assert @controller.__exclude_xsrf_token_cookie?
|
40
|
+
assert_response :success
|
41
|
+
end
|
42
|
+
|
34
43
|
test 'the domain is used if present' do
|
35
44
|
config = Rails.application.config
|
36
45
|
def config.angular_rails_csrf_domain
|
@@ -41,17 +50,80 @@ class AngularRailsCsrfTest < ActionController::TestCase
|
|
41
50
|
assert @response.headers['Set-Cookie'].include?('.test.host')
|
42
51
|
assert_valid_cookie
|
43
52
|
assert_response :success
|
53
|
+
ensure
|
54
|
+
config.instance_eval('undef :angular_rails_csrf_domain', __FILE__, __LINE__)
|
55
|
+
end
|
56
|
+
|
57
|
+
test 'the secure flag is set if configured' do
|
58
|
+
@request.headers['HTTPS'] = 'on'
|
59
|
+
|
60
|
+
config = Rails.application.config
|
61
|
+
config.define_singleton_method(:angular_rails_csrf_secure) { true }
|
62
|
+
|
63
|
+
get :index
|
64
|
+
assert @response.headers['Set-Cookie'].include?('secure')
|
65
|
+
assert_valid_cookie
|
66
|
+
assert_response :success
|
67
|
+
ensure
|
68
|
+
@request.headers['HTTPS'] = nil
|
69
|
+
config.instance_eval('undef :angular_rails_csrf_secure', __FILE__, __LINE__)
|
44
70
|
end
|
45
71
|
|
46
72
|
test 'a custom name is used if present' do
|
47
73
|
use_custom_cookie_name do
|
48
74
|
get :index
|
49
75
|
assert @response.headers['Set-Cookie'].include?('CUSTOM-COOKIE-NAME')
|
50
|
-
assert_valid_cookie
|
76
|
+
assert_valid_cookie name: 'CUSTOM-COOKIE-NAME'
|
51
77
|
assert_response :success
|
52
78
|
end
|
53
79
|
end
|
54
80
|
|
81
|
+
test 'the httponly flag is set if configured' do
|
82
|
+
config = Rails.application.config
|
83
|
+
config.define_singleton_method(:angular_rails_csrf_httponly) { true }
|
84
|
+
|
85
|
+
get :index
|
86
|
+
assert @response.headers['Set-Cookie'].include?('HttpOnly')
|
87
|
+
assert_valid_cookie
|
88
|
+
assert_response :success
|
89
|
+
ensure
|
90
|
+
config.instance_eval('undef :angular_rails_csrf_httponly', __FILE__, __LINE__)
|
91
|
+
end
|
92
|
+
|
93
|
+
test 'same_site is set to Lax by default' do
|
94
|
+
get :index
|
95
|
+
assert @response.headers['Set-Cookie'].include?('SameSite=Lax')
|
96
|
+
assert_valid_cookie
|
97
|
+
assert_response :success
|
98
|
+
end
|
99
|
+
|
100
|
+
test 'same_site can be configured' do
|
101
|
+
config = Rails.application.config
|
102
|
+
config.define_singleton_method(:angular_rails_csrf_same_site) { :strict }
|
103
|
+
|
104
|
+
get :index
|
105
|
+
assert @response.headers['Set-Cookie'].include?('SameSite=Strict')
|
106
|
+
assert_valid_cookie
|
107
|
+
assert_response :success
|
108
|
+
ensure
|
109
|
+
config.instance_eval('undef :angular_rails_csrf_same_site', __FILE__, __LINE__)
|
110
|
+
end
|
111
|
+
|
112
|
+
test 'secure is set automatically when same_site is set to none' do
|
113
|
+
@request.headers['HTTPS'] = 'on'
|
114
|
+
|
115
|
+
config = Rails.application.config
|
116
|
+
config.define_singleton_method(:angular_rails_csrf_same_site) { :none }
|
117
|
+
|
118
|
+
get :index
|
119
|
+
assert @response.headers['Set-Cookie'].include?('SameSite=None')
|
120
|
+
assert @response.headers['Set-Cookie'].include?('secure')
|
121
|
+
assert_valid_cookie
|
122
|
+
assert_response :success
|
123
|
+
ensure
|
124
|
+
config.instance_eval('undef :angular_rails_csrf_same_site', __FILE__, __LINE__)
|
125
|
+
end
|
126
|
+
|
55
127
|
private
|
56
128
|
|
57
129
|
# Helpers
|
@@ -60,12 +132,10 @@ class AngularRailsCsrfTest < ActionController::TestCase
|
|
60
132
|
@request.headers['X-XSRF-TOKEN'] = value
|
61
133
|
end
|
62
134
|
|
63
|
-
def assert_valid_cookie(name
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
assert_equal @controller.send(:form_authenticity_token), cookies['XSRF-TOKEN']
|
68
|
-
end
|
135
|
+
def assert_valid_cookie(name: 'XSRF-TOKEN', present: true)
|
136
|
+
cookie_valid = @controller.send(:valid_authenticity_token?, session, cookies[name])
|
137
|
+
cookie_valid = !cookie_valid unless present
|
138
|
+
assert cookie_valid
|
69
139
|
end
|
70
140
|
|
71
141
|
def use_custom_cookie_name
|
data/test/dummy/config.ru
CHANGED
data/test/dummy/config/routes.rb
CHANGED
data/test/dummy/log/test.log
CHANGED
@@ -701,3 +701,1524 @@ AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
|
701
701
|
-----------------------------------------------------------------------------
|
702
702
|
Processing by ApplicationController#create as HTML
|
703
703
|
Completed 200 OK in 0ms (Allocations: 136)
|
704
|
+
----------------------------------------------------------------------------
|
705
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
706
|
+
----------------------------------------------------------------------------
|
707
|
+
Processing by ExclusionsController#index as HTML
|
708
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
709
|
+
-----------------------------------------------------------------------------------------------------
|
710
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
711
|
+
-----------------------------------------------------------------------------------------------------
|
712
|
+
Processing by ApplicationController#create as HTML
|
713
|
+
Can't verify CSRF token authenticity.
|
714
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 117)
|
715
|
+
-----------------------------------------------------------------------------
|
716
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
717
|
+
-----------------------------------------------------------------------------
|
718
|
+
Processing by ApplicationController#create as HTML
|
719
|
+
Completed 200 OK in 1ms (Allocations: 128)
|
720
|
+
--------------------------------------------------------------------------------------------------------
|
721
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
722
|
+
--------------------------------------------------------------------------------------------------------
|
723
|
+
Processing by ApplicationController#index as HTML
|
724
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
725
|
+
-------------------------------------------------------------------------------------
|
726
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
727
|
+
-------------------------------------------------------------------------------------
|
728
|
+
Processing by ApplicationController#create as HTML
|
729
|
+
Can't verify CSRF token authenticity.
|
730
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
731
|
+
---------------------------------------------------------------
|
732
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
733
|
+
---------------------------------------------------------------
|
734
|
+
Processing by ApplicationController#index as HTML
|
735
|
+
Completed 200 OK in 1ms (Allocations: 106)
|
736
|
+
--------------------------------------------------------
|
737
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
738
|
+
--------------------------------------------------------
|
739
|
+
Processing by ApplicationController#index as HTML
|
740
|
+
Completed 200 OK in 1ms (Allocations: 117)
|
741
|
+
-----------------------------------------------------------
|
742
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
743
|
+
-----------------------------------------------------------
|
744
|
+
Processing by ApplicationController#index as HTML
|
745
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
746
|
+
----------------------------------------------------------------------------
|
747
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
748
|
+
----------------------------------------------------------------------------
|
749
|
+
Processing by ExclusionsController#index as HTML
|
750
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
751
|
+
---------------------------------------------------------------
|
752
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
753
|
+
---------------------------------------------------------------
|
754
|
+
Processing by ApplicationController#index as HTML
|
755
|
+
Completed 200 OK in 0ms (Allocations: 107)
|
756
|
+
-----------------------------------------------------------------------------
|
757
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
758
|
+
-----------------------------------------------------------------------------
|
759
|
+
Processing by ApplicationController#create as HTML
|
760
|
+
Completed 200 OK in 0ms (Allocations: 131)
|
761
|
+
-------------------------------------------------------------
|
762
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
763
|
+
-------------------------------------------------------------
|
764
|
+
Processing by ApplicationController#index as HTML
|
765
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
766
|
+
--------------------------------------------------------------------------------------------------------
|
767
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
768
|
+
--------------------------------------------------------------------------------------------------------
|
769
|
+
Processing by ApplicationController#index as HTML
|
770
|
+
Completed 200 OK in 1ms (Allocations: 106)
|
771
|
+
-----------------------------------------------------------
|
772
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
773
|
+
-----------------------------------------------------------
|
774
|
+
Processing by ApplicationController#index as HTML
|
775
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
776
|
+
-----------------------------------------------------------------------------------------------------
|
777
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
778
|
+
-----------------------------------------------------------------------------------------------------
|
779
|
+
Processing by ApplicationController#create as HTML
|
780
|
+
Can't verify CSRF token authenticity.
|
781
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 110)
|
782
|
+
--------------------------------------------------------
|
783
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
784
|
+
--------------------------------------------------------
|
785
|
+
Processing by ApplicationController#index as HTML
|
786
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
787
|
+
------------------------------------------------------
|
788
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
789
|
+
------------------------------------------------------
|
790
|
+
Processing by ApplicationController#index as HTML
|
791
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
792
|
+
------------------------------------------------------------------------------------
|
793
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
794
|
+
------------------------------------------------------------------------------------
|
795
|
+
Processing by ApplicationController#index as HTML
|
796
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
797
|
+
-------------------------------------------------------------------------------------
|
798
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
799
|
+
-------------------------------------------------------------------------------------
|
800
|
+
Processing by ApplicationController#create as HTML
|
801
|
+
Can't verify CSRF token authenticity.
|
802
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
803
|
+
----------------------------------------------------------------------------
|
804
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
805
|
+
----------------------------------------------------------------------------
|
806
|
+
Processing by ExclusionsController#index as HTML
|
807
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
808
|
+
--------------------------------------------------------
|
809
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
810
|
+
--------------------------------------------------------
|
811
|
+
Processing by ApplicationController#index as HTML
|
812
|
+
Completed 200 OK in 0ms (Allocations: 122)
|
813
|
+
-----------------------------------------------------------
|
814
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
815
|
+
-----------------------------------------------------------
|
816
|
+
Processing by ApplicationController#index as HTML
|
817
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
818
|
+
---------------------------------------------------------------
|
819
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
820
|
+
---------------------------------------------------------------
|
821
|
+
Processing by ApplicationController#index as HTML
|
822
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
823
|
+
-------------------------------------------------------------------------------------
|
824
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
825
|
+
-------------------------------------------------------------------------------------
|
826
|
+
Processing by ApplicationController#create as HTML
|
827
|
+
Can't verify CSRF token authenticity.
|
828
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 111)
|
829
|
+
--------------------------------------------------------------------------------------------------------
|
830
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
831
|
+
--------------------------------------------------------------------------------------------------------
|
832
|
+
Processing by ApplicationController#index as HTML
|
833
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
834
|
+
------------------------------------------------------
|
835
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
836
|
+
------------------------------------------------------
|
837
|
+
Processing by ApplicationController#index as HTML
|
838
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
839
|
+
-------------------------------------------------------------
|
840
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
841
|
+
-------------------------------------------------------------
|
842
|
+
Processing by ApplicationController#index as HTML
|
843
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
844
|
+
-----------------------------------------------------------------------------------------------------
|
845
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
846
|
+
-----------------------------------------------------------------------------------------------------
|
847
|
+
Processing by ApplicationController#create as HTML
|
848
|
+
Can't verify CSRF token authenticity.
|
849
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 103)
|
850
|
+
------------------------------------------------------------------------------------
|
851
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
852
|
+
------------------------------------------------------------------------------------
|
853
|
+
Processing by ApplicationController#index as HTML
|
854
|
+
Completed 200 OK in 1ms (Allocations: 106)
|
855
|
+
-----------------------------------------------------------------------------
|
856
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
857
|
+
-----------------------------------------------------------------------------
|
858
|
+
Processing by ApplicationController#create as HTML
|
859
|
+
Completed 200 OK in 0ms (Allocations: 125)
|
860
|
+
----------------------------------------------------------------------------
|
861
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
862
|
+
----------------------------------------------------------------------------
|
863
|
+
Processing by ExclusionsController#index as HTML
|
864
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
865
|
+
----------------------------------
|
866
|
+
AngularRailsCsrfTest: test_exclude
|
867
|
+
----------------------------------
|
868
|
+
Processing by ApplicationController#index as HTML
|
869
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
870
|
+
-------------------------------------------------------------------------------------
|
871
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
872
|
+
-------------------------------------------------------------------------------------
|
873
|
+
Processing by ApplicationController#create as HTML
|
874
|
+
Can't verify CSRF token authenticity.
|
875
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 157)
|
876
|
+
-----------------------------------------------------------
|
877
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
878
|
+
-----------------------------------------------------------
|
879
|
+
Processing by ApplicationController#index as HTML
|
880
|
+
Completed 200 OK in 0ms (Allocations: 129)
|
881
|
+
---------------------------------------------------------------
|
882
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
883
|
+
---------------------------------------------------------------
|
884
|
+
Processing by ApplicationController#index as HTML
|
885
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
886
|
+
----------------------------------
|
887
|
+
AngularRailsCsrfTest: test_exclude
|
888
|
+
----------------------------------
|
889
|
+
Processing by ApplicationController#index as HTML
|
890
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
891
|
+
--------------------------------------------------------
|
892
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
893
|
+
--------------------------------------------------------
|
894
|
+
Processing by ApplicationController#index as HTML
|
895
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
896
|
+
------------------------------------------------------
|
897
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
898
|
+
------------------------------------------------------
|
899
|
+
Processing by ApplicationController#index as HTML
|
900
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
901
|
+
--------------------------------------------------------------------------------------------------------
|
902
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
903
|
+
--------------------------------------------------------------------------------------------------------
|
904
|
+
Processing by ApplicationController#index as HTML
|
905
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
906
|
+
-----------------------------------------------------------------------------------------------------
|
907
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
908
|
+
-----------------------------------------------------------------------------------------------------
|
909
|
+
Processing by ApplicationController#create as HTML
|
910
|
+
Can't verify CSRF token authenticity.
|
911
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 103)
|
912
|
+
-------------------------------------------------------------
|
913
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
914
|
+
-------------------------------------------------------------
|
915
|
+
Processing by ApplicationController#index as HTML
|
916
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
917
|
+
------------------------------------------------------------------------------------
|
918
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
919
|
+
------------------------------------------------------------------------------------
|
920
|
+
Processing by ApplicationController#index as HTML
|
921
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
922
|
+
-----------------------------------------------------------------------------
|
923
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
924
|
+
-----------------------------------------------------------------------------
|
925
|
+
Processing by ApplicationController#create as HTML
|
926
|
+
Completed 200 OK in 0ms (Allocations: 125)
|
927
|
+
----------------------------------------------------------------------------
|
928
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
929
|
+
----------------------------------------------------------------------------
|
930
|
+
Processing by ExclusionsController#index as HTML
|
931
|
+
Completed 200 OK in 0ms (Allocations: 71)
|
932
|
+
----------------------------------------------------------------------------
|
933
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
934
|
+
----------------------------------------------------------------------------
|
935
|
+
Processing by ExclusionsController#index as HTML
|
936
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
937
|
+
---------------------------------------------------------------
|
938
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
939
|
+
---------------------------------------------------------------
|
940
|
+
Processing by ApplicationController#index as HTML
|
941
|
+
Completed 200 OK in 0ms (Allocations: 111)
|
942
|
+
-------------------------------------------------------------------------------------
|
943
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
944
|
+
-------------------------------------------------------------------------------------
|
945
|
+
Processing by ApplicationController#create as HTML
|
946
|
+
Can't verify CSRF token authenticity.
|
947
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 111)
|
948
|
+
------------------------------------------------------------------------------------
|
949
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
950
|
+
------------------------------------------------------------------------------------
|
951
|
+
Processing by ApplicationController#index as HTML
|
952
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
953
|
+
-----------------------------------------------------------------------------------------------------
|
954
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
955
|
+
-----------------------------------------------------------------------------------------------------
|
956
|
+
Processing by ApplicationController#create as HTML
|
957
|
+
Can't verify CSRF token authenticity.
|
958
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 103)
|
959
|
+
-----------------------------------------------------------------------------
|
960
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
961
|
+
-----------------------------------------------------------------------------
|
962
|
+
Processing by ApplicationController#create as HTML
|
963
|
+
Completed 200 OK in 0ms (Allocations: 125)
|
964
|
+
-----------------------------------------------------------
|
965
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
966
|
+
-----------------------------------------------------------
|
967
|
+
Processing by ApplicationController#index as HTML
|
968
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
969
|
+
--------------------------------------------------------
|
970
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
971
|
+
--------------------------------------------------------
|
972
|
+
Processing by ApplicationController#index as HTML
|
973
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
974
|
+
----------------------------------
|
975
|
+
AngularRailsCsrfTest: test_exclude
|
976
|
+
----------------------------------
|
977
|
+
Processing by ApplicationController#index as HTML
|
978
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
979
|
+
-------------------------------------------------------------
|
980
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
981
|
+
-------------------------------------------------------------
|
982
|
+
Processing by ApplicationController#index as HTML
|
983
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
984
|
+
--------------------------------------------------------------------------------------------------------
|
985
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
986
|
+
--------------------------------------------------------------------------------------------------------
|
987
|
+
Processing by ApplicationController#index as HTML
|
988
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
989
|
+
------------------------------------------------------
|
990
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
991
|
+
------------------------------------------------------
|
992
|
+
Processing by ApplicationController#index as HTML
|
993
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
994
|
+
-----------------------------------------------------------------------------------------------------
|
995
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
996
|
+
-----------------------------------------------------------------------------------------------------
|
997
|
+
Processing by ApplicationController#create as HTML
|
998
|
+
Can't verify CSRF token authenticity.
|
999
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 162)
|
1000
|
+
-----------------------------------------------------------
|
1001
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1002
|
+
-----------------------------------------------------------
|
1003
|
+
Processing by ApplicationController#index as HTML
|
1004
|
+
Completed 200 OK in 0ms (Allocations: 129)
|
1005
|
+
-----------------------------------------------------------------------------
|
1006
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1007
|
+
-----------------------------------------------------------------------------
|
1008
|
+
Processing by ApplicationController#create as HTML
|
1009
|
+
Completed 200 OK in 0ms (Allocations: 125)
|
1010
|
+
-------------------------------------------------------------
|
1011
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1012
|
+
-------------------------------------------------------------
|
1013
|
+
Processing by ApplicationController#index as HTML
|
1014
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1015
|
+
------------------------------------------------------------------------------------
|
1016
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1017
|
+
------------------------------------------------------------------------------------
|
1018
|
+
Processing by ApplicationController#index as HTML
|
1019
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1020
|
+
---------------------------------------------------------------
|
1021
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1022
|
+
---------------------------------------------------------------
|
1023
|
+
Processing by ApplicationController#index as HTML
|
1024
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1025
|
+
------------------------------------------------------
|
1026
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1027
|
+
------------------------------------------------------
|
1028
|
+
Processing by ApplicationController#index as HTML
|
1029
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1030
|
+
--------------------------------------------------------------------------------------------------------
|
1031
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1032
|
+
--------------------------------------------------------------------------------------------------------
|
1033
|
+
Processing by ApplicationController#index as HTML
|
1034
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1035
|
+
----------------------------------
|
1036
|
+
AngularRailsCsrfTest: test_exclude
|
1037
|
+
----------------------------------
|
1038
|
+
Processing by ApplicationController#index as HTML
|
1039
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1040
|
+
-------------------------------------------------------------------------------------
|
1041
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1042
|
+
-------------------------------------------------------------------------------------
|
1043
|
+
Processing by ApplicationController#create as HTML
|
1044
|
+
Can't verify CSRF token authenticity.
|
1045
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
1046
|
+
--------------------------------------------------------
|
1047
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1048
|
+
--------------------------------------------------------
|
1049
|
+
Processing by ApplicationController#index as HTML
|
1050
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
1051
|
+
----------------------------------------------------------------------------
|
1052
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1053
|
+
----------------------------------------------------------------------------
|
1054
|
+
Processing by ExclusionsController#index as HTML
|
1055
|
+
Completed 200 OK in 0ms (Allocations: 71)
|
1056
|
+
----------------------------------------------------------------------------
|
1057
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1058
|
+
----------------------------------------------------------------------------
|
1059
|
+
Processing by ExclusionsController#index as HTML
|
1060
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
1061
|
+
-----------------------------------------------------------------------------------------------------
|
1062
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1063
|
+
-----------------------------------------------------------------------------------------------------
|
1064
|
+
Processing by ApplicationController#create as HTML
|
1065
|
+
Can't verify CSRF token authenticity.
|
1066
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 117)
|
1067
|
+
-------------------------------------------------------------------------
|
1068
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1069
|
+
-------------------------------------------------------------------------
|
1070
|
+
Processing by ApplicationController#index as HTML
|
1071
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1072
|
+
--------------------------------------------------------
|
1073
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1074
|
+
--------------------------------------------------------
|
1075
|
+
Processing by ApplicationController#index as HTML
|
1076
|
+
Completed 200 OK in 0ms (Allocations: 122)
|
1077
|
+
------------------------------------------------------------------------------------
|
1078
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1079
|
+
------------------------------------------------------------------------------------
|
1080
|
+
Processing by ApplicationController#index as HTML
|
1081
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1082
|
+
------------------------------------------------------
|
1083
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1084
|
+
------------------------------------------------------
|
1085
|
+
Processing by ApplicationController#index as HTML
|
1086
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1087
|
+
--------------------------------------------------------------------------------------------------------
|
1088
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1089
|
+
--------------------------------------------------------------------------------------------------------
|
1090
|
+
Processing by ApplicationController#index as HTML
|
1091
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1092
|
+
-----------------------------------------------------------
|
1093
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1094
|
+
-----------------------------------------------------------
|
1095
|
+
Processing by ApplicationController#index as HTML
|
1096
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1097
|
+
---------------------------------------------------------------
|
1098
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1099
|
+
---------------------------------------------------------------
|
1100
|
+
Processing by ApplicationController#index as HTML
|
1101
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1102
|
+
-----------------------------------------------------------------------------
|
1103
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1104
|
+
-----------------------------------------------------------------------------
|
1105
|
+
Processing by ApplicationController#create as HTML
|
1106
|
+
Completed 200 OK in 0ms (Allocations: 125)
|
1107
|
+
-------------------------------------------------------------------------------------
|
1108
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1109
|
+
-------------------------------------------------------------------------------------
|
1110
|
+
Processing by ApplicationController#create as HTML
|
1111
|
+
Can't verify CSRF token authenticity.
|
1112
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
1113
|
+
-------------------------------------------------------------
|
1114
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1115
|
+
-------------------------------------------------------------
|
1116
|
+
Processing by ApplicationController#index as HTML
|
1117
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1118
|
+
------------------------------------------------------
|
1119
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1120
|
+
------------------------------------------------------
|
1121
|
+
Processing by ApplicationController#index as HTML
|
1122
|
+
Completed 200 OK in 0ms (Allocations: 174)
|
1123
|
+
-------------------------------------------------------------------------
|
1124
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1125
|
+
-------------------------------------------------------------------------
|
1126
|
+
Processing by ApplicationController#index as HTML
|
1127
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1128
|
+
-----------------------------------------------------------
|
1129
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1130
|
+
-----------------------------------------------------------
|
1131
|
+
Processing by ApplicationController#index as HTML
|
1132
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1133
|
+
--------------------------------------------------------------------------------------------------------
|
1134
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1135
|
+
--------------------------------------------------------------------------------------------------------
|
1136
|
+
Processing by ApplicationController#index as HTML
|
1137
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1138
|
+
-------------------------------------------------------------
|
1139
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1140
|
+
-------------------------------------------------------------
|
1141
|
+
Processing by ApplicationController#index as HTML
|
1142
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1143
|
+
------------------------------------------------------------------------------------
|
1144
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1145
|
+
------------------------------------------------------------------------------------
|
1146
|
+
Processing by ApplicationController#index as HTML
|
1147
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1148
|
+
-----------------------------------------------------------------------------
|
1149
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1150
|
+
-----------------------------------------------------------------------------
|
1151
|
+
Processing by ApplicationController#create as HTML
|
1152
|
+
Completed 200 OK in 0ms (Allocations: 131)
|
1153
|
+
-----------------------------------------------------------------------------------------------------
|
1154
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1155
|
+
-----------------------------------------------------------------------------------------------------
|
1156
|
+
Processing by ApplicationController#create as HTML
|
1157
|
+
Can't verify CSRF token authenticity.
|
1158
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 110)
|
1159
|
+
-------------------------------------------------------------------------------------
|
1160
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1161
|
+
-------------------------------------------------------------------------------------
|
1162
|
+
Processing by ApplicationController#create as HTML
|
1163
|
+
Can't verify CSRF token authenticity.
|
1164
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
1165
|
+
---------------------------------------------------------------
|
1166
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1167
|
+
---------------------------------------------------------------
|
1168
|
+
Processing by ApplicationController#index as HTML
|
1169
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1170
|
+
--------------------------------------------------------
|
1171
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1172
|
+
--------------------------------------------------------
|
1173
|
+
Processing by ApplicationController#index as HTML
|
1174
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
1175
|
+
----------------------------------------------------------------------------
|
1176
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1177
|
+
----------------------------------------------------------------------------
|
1178
|
+
Processing by ExclusionsController#index as HTML
|
1179
|
+
Completed 200 OK in 0ms (Allocations: 71)
|
1180
|
+
--------------------------------------------------------------------------------------------------------
|
1181
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1182
|
+
--------------------------------------------------------------------------------------------------------
|
1183
|
+
Processing by ApplicationController#index as HTML
|
1184
|
+
Completed 200 OK in 0ms (Allocations: 174)
|
1185
|
+
------------------------------------------------------
|
1186
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1187
|
+
------------------------------------------------------
|
1188
|
+
Processing by ApplicationController#index as HTML
|
1189
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1190
|
+
--------------------------------------------------------
|
1191
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1192
|
+
--------------------------------------------------------
|
1193
|
+
Processing by ApplicationController#index as HTML
|
1194
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
1195
|
+
-------------------------------------------------------------------------------------
|
1196
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1197
|
+
-------------------------------------------------------------------------------------
|
1198
|
+
Processing by ApplicationController#create as HTML
|
1199
|
+
Can't verify CSRF token authenticity.
|
1200
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 111)
|
1201
|
+
-----------------------------------------------------------
|
1202
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1203
|
+
-----------------------------------------------------------
|
1204
|
+
Processing by ApplicationController#index as HTML
|
1205
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1206
|
+
---------------------------------------------------------------
|
1207
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1208
|
+
---------------------------------------------------------------
|
1209
|
+
Processing by ApplicationController#index as HTML
|
1210
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1211
|
+
-----------------------------------------------------------------------------------------------------
|
1212
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1213
|
+
-----------------------------------------------------------------------------------------------------
|
1214
|
+
Processing by ApplicationController#create as HTML
|
1215
|
+
Can't verify CSRF token authenticity.
|
1216
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 103)
|
1217
|
+
-------------------------------------------------------------
|
1218
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1219
|
+
-------------------------------------------------------------
|
1220
|
+
Processing by ApplicationController#index as HTML
|
1221
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1222
|
+
-------------------------------------------------------------------------
|
1223
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1224
|
+
-------------------------------------------------------------------------
|
1225
|
+
Processing by ApplicationController#index as HTML
|
1226
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1227
|
+
-----------------------------------------------------------------------------
|
1228
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1229
|
+
-----------------------------------------------------------------------------
|
1230
|
+
Processing by ApplicationController#create as HTML
|
1231
|
+
Completed 200 OK in 0ms (Allocations: 125)
|
1232
|
+
------------------------------------------------------------------------------------
|
1233
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1234
|
+
------------------------------------------------------------------------------------
|
1235
|
+
Processing by ApplicationController#index as HTML
|
1236
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1237
|
+
----------------------------------------------------------------------------
|
1238
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1239
|
+
----------------------------------------------------------------------------
|
1240
|
+
Processing by ExclusionsController#index as HTML
|
1241
|
+
Completed 200 OK in 0ms (Allocations: 71)
|
1242
|
+
--------------------------------------------------------------------------------------------------------
|
1243
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1244
|
+
--------------------------------------------------------------------------------------------------------
|
1245
|
+
Processing by ApplicationController#index as HTML
|
1246
|
+
Completed 200 OK in 0ms (Allocations: 174)
|
1247
|
+
-------------------------------------------------------------------------
|
1248
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1249
|
+
-------------------------------------------------------------------------
|
1250
|
+
Processing by ApplicationController#index as HTML
|
1251
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1252
|
+
-------------------------------------------------------------
|
1253
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1254
|
+
-------------------------------------------------------------
|
1255
|
+
Processing by ApplicationController#index as HTML
|
1256
|
+
Completed 200 OK in 0ms (Allocations: 174)
|
1257
|
+
---------------------------------------------------------------
|
1258
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1259
|
+
---------------------------------------------------------------
|
1260
|
+
Processing by ApplicationController#index as HTML
|
1261
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1262
|
+
-------------------------------------------------------------------------
|
1263
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1264
|
+
-------------------------------------------------------------------------
|
1265
|
+
--------------------------------------------------------
|
1266
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1267
|
+
--------------------------------------------------------
|
1268
|
+
Processing by ApplicationController#index as HTML
|
1269
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
1270
|
+
-----------------------------------------------------------------------------
|
1271
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1272
|
+
-----------------------------------------------------------------------------
|
1273
|
+
Processing by ApplicationController#create as HTML
|
1274
|
+
Completed 200 OK in 0ms (Allocations: 131)
|
1275
|
+
-----------------------------------------------------------------------------------------------------
|
1276
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1277
|
+
-----------------------------------------------------------------------------------------------------
|
1278
|
+
Processing by ApplicationController#create as HTML
|
1279
|
+
Can't verify CSRF token authenticity.
|
1280
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 110)
|
1281
|
+
--------------------------------------------------------------------------------------------------------
|
1282
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1283
|
+
--------------------------------------------------------------------------------------------------------
|
1284
|
+
Processing by ApplicationController#index as HTML
|
1285
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1286
|
+
-----------------------------------------------------------
|
1287
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1288
|
+
-----------------------------------------------------------
|
1289
|
+
Processing by ApplicationController#index as HTML
|
1290
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1291
|
+
-------------------------------------------------------------------------------------
|
1292
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1293
|
+
-------------------------------------------------------------------------------------
|
1294
|
+
Processing by ApplicationController#create as HTML
|
1295
|
+
Can't verify CSRF token authenticity.
|
1296
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
1297
|
+
------------------------------------------------------
|
1298
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1299
|
+
------------------------------------------------------
|
1300
|
+
Processing by ApplicationController#index as HTML
|
1301
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1302
|
+
------------------------------------------------------------------------------------
|
1303
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1304
|
+
------------------------------------------------------------------------------------
|
1305
|
+
Processing by ApplicationController#index as HTML
|
1306
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1307
|
+
----------------------------------------------------------------------------
|
1308
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1309
|
+
----------------------------------------------------------------------------
|
1310
|
+
Processing by ExclusionsController#index as HTML
|
1311
|
+
Completed 200 OK in 0ms (Allocations: 71)
|
1312
|
+
----------------------------------------------------------------------------
|
1313
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1314
|
+
----------------------------------------------------------------------------
|
1315
|
+
Processing by ExclusionsController#index as HTML
|
1316
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
1317
|
+
--------------------------------------------------------
|
1318
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1319
|
+
--------------------------------------------------------
|
1320
|
+
Processing by ApplicationController#index as HTML
|
1321
|
+
Completed 200 OK in 0ms (Allocations: 122)
|
1322
|
+
-----------------------------------------------------------
|
1323
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1324
|
+
-----------------------------------------------------------
|
1325
|
+
Processing by ApplicationController#index as HTML
|
1326
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1327
|
+
------------------------------------------------------
|
1328
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1329
|
+
------------------------------------------------------
|
1330
|
+
Processing by ApplicationController#index as HTML
|
1331
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1332
|
+
-------------------------------------------------------------------------------------
|
1333
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1334
|
+
-------------------------------------------------------------------------------------
|
1335
|
+
Processing by ApplicationController#create as HTML
|
1336
|
+
Can't verify CSRF token authenticity.
|
1337
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 111)
|
1338
|
+
-------------------------------------------------------------
|
1339
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1340
|
+
-------------------------------------------------------------
|
1341
|
+
Processing by ApplicationController#index as HTML
|
1342
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1343
|
+
-----------------------------------------------------------------------------
|
1344
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1345
|
+
-----------------------------------------------------------------------------
|
1346
|
+
Processing by ApplicationController#create as HTML
|
1347
|
+
Completed 200 OK in 0ms (Allocations: 125)
|
1348
|
+
------------------------------------------------------------------------------------
|
1349
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1350
|
+
------------------------------------------------------------------------------------
|
1351
|
+
Processing by ApplicationController#index as HTML
|
1352
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1353
|
+
---------------------------------------------------------------
|
1354
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1355
|
+
---------------------------------------------------------------
|
1356
|
+
Processing by ApplicationController#index as HTML
|
1357
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1358
|
+
-------------------------------------------------------------------------
|
1359
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1360
|
+
-------------------------------------------------------------------------
|
1361
|
+
Processing by ApplicationController#index as HTML
|
1362
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1363
|
+
--------------------------------------------------------------------------------------------------------
|
1364
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1365
|
+
--------------------------------------------------------------------------------------------------------
|
1366
|
+
Processing by ApplicationController#index as HTML
|
1367
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1368
|
+
-----------------------------------------------------------------------------------------------------
|
1369
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1370
|
+
-----------------------------------------------------------------------------------------------------
|
1371
|
+
Processing by ApplicationController#create as HTML
|
1372
|
+
Can't verify CSRF token authenticity.
|
1373
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 103)
|
1374
|
+
----------------------------------------------------------------------------
|
1375
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1376
|
+
----------------------------------------------------------------------------
|
1377
|
+
Processing by ExclusionsController#index as HTML
|
1378
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
1379
|
+
-------------------------------------------------------------------------------------
|
1380
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1381
|
+
-------------------------------------------------------------------------------------
|
1382
|
+
Processing by ApplicationController#create as HTML
|
1383
|
+
Can't verify CSRF token authenticity.
|
1384
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 112)
|
1385
|
+
-----------------------------------------------------------------------------
|
1386
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1387
|
+
-----------------------------------------------------------------------------
|
1388
|
+
Processing by ApplicationController#create as HTML
|
1389
|
+
Completed 200 OK in 0ms (Allocations: 132)
|
1390
|
+
------------------------------------------------------------------------------------
|
1391
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1392
|
+
------------------------------------------------------------------------------------
|
1393
|
+
Processing by ApplicationController#index as HTML
|
1394
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1395
|
+
--------------------------------------------------------------------------------------------------------
|
1396
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1397
|
+
--------------------------------------------------------------------------------------------------------
|
1398
|
+
Processing by ApplicationController#index as HTML
|
1399
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1400
|
+
-----------------------------------------------------------
|
1401
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1402
|
+
-----------------------------------------------------------
|
1403
|
+
Processing by ApplicationController#index as HTML
|
1404
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1405
|
+
--------------------------------------------------------
|
1406
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1407
|
+
--------------------------------------------------------
|
1408
|
+
Processing by ApplicationController#index as HTML
|
1409
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
1410
|
+
-------------------------------------------------------------
|
1411
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1412
|
+
-------------------------------------------------------------
|
1413
|
+
Processing by ApplicationController#index as HTML
|
1414
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1415
|
+
-----------------------------------------------------------------------------------------------------
|
1416
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1417
|
+
-----------------------------------------------------------------------------------------------------
|
1418
|
+
Processing by ApplicationController#create as HTML
|
1419
|
+
Can't verify CSRF token authenticity.
|
1420
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 103)
|
1421
|
+
-------------------------------------------------------------------------
|
1422
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1423
|
+
-------------------------------------------------------------------------
|
1424
|
+
Processing by ApplicationController#index as HTML
|
1425
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1426
|
+
------------------------------------------------------
|
1427
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1428
|
+
------------------------------------------------------
|
1429
|
+
Processing by ApplicationController#index as HTML
|
1430
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1431
|
+
---------------------------------------------------------------
|
1432
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1433
|
+
---------------------------------------------------------------
|
1434
|
+
Processing by ApplicationController#index as HTML
|
1435
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1436
|
+
----------------------------------------------------------------------------
|
1437
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1438
|
+
----------------------------------------------------------------------------
|
1439
|
+
Processing by ExclusionsController#index as HTML
|
1440
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
1441
|
+
------------------------------------------------------
|
1442
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1443
|
+
------------------------------------------------------
|
1444
|
+
Processing by ApplicationController#index as HTML
|
1445
|
+
Completed 200 OK in 0ms (Allocations: 111)
|
1446
|
+
--------------------------------------------------------
|
1447
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1448
|
+
--------------------------------------------------------
|
1449
|
+
Processing by ApplicationController#index as HTML
|
1450
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
1451
|
+
-------------------------------------------------------------------------------------
|
1452
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1453
|
+
-------------------------------------------------------------------------------------
|
1454
|
+
Processing by ApplicationController#create as HTML
|
1455
|
+
Can't verify CSRF token authenticity.
|
1456
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 111)
|
1457
|
+
---------------------------------------------------------------
|
1458
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1459
|
+
---------------------------------------------------------------
|
1460
|
+
Processing by ApplicationController#index as HTML
|
1461
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1462
|
+
-----------------------------------------------------------------------------------------------------
|
1463
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1464
|
+
-----------------------------------------------------------------------------------------------------
|
1465
|
+
Processing by ApplicationController#create as HTML
|
1466
|
+
Can't verify CSRF token authenticity.
|
1467
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 103)
|
1468
|
+
-------------------------------------------------------------
|
1469
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1470
|
+
-------------------------------------------------------------
|
1471
|
+
Processing by ApplicationController#index as HTML
|
1472
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1473
|
+
-------------------------------------------------------------------------
|
1474
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1475
|
+
-------------------------------------------------------------------------
|
1476
|
+
Processing by ApplicationController#index as HTML
|
1477
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1478
|
+
------------------------------------------------------------------------------------
|
1479
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1480
|
+
------------------------------------------------------------------------------------
|
1481
|
+
Processing by ApplicationController#index as HTML
|
1482
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1483
|
+
-----------------------------------------------------------
|
1484
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1485
|
+
-----------------------------------------------------------
|
1486
|
+
Processing by ApplicationController#index as HTML
|
1487
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1488
|
+
-----------------------------------------------------------------------------
|
1489
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1490
|
+
-----------------------------------------------------------------------------
|
1491
|
+
Processing by ApplicationController#create as HTML
|
1492
|
+
Completed 200 OK in 0ms (Allocations: 125)
|
1493
|
+
--------------------------------------------------------------------------------------------------------
|
1494
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1495
|
+
--------------------------------------------------------------------------------------------------------
|
1496
|
+
Processing by ApplicationController#index as HTML
|
1497
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1498
|
+
----------------------------------------------------------------------------
|
1499
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1500
|
+
----------------------------------------------------------------------------
|
1501
|
+
Processing by ExclusionsController#index as HTML
|
1502
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
1503
|
+
------------------------------------------------------------------------------------
|
1504
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1505
|
+
------------------------------------------------------------------------------------
|
1506
|
+
Processing by ApplicationController#index as HTML
|
1507
|
+
Completed 200 OK in 0ms (Allocations: 111)
|
1508
|
+
-----------------------------------------------------------------------------
|
1509
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1510
|
+
-----------------------------------------------------------------------------
|
1511
|
+
Processing by ApplicationController#create as HTML
|
1512
|
+
Completed 200 OK in 0ms (Allocations: 131)
|
1513
|
+
-----------------------------------------------------------
|
1514
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1515
|
+
-----------------------------------------------------------
|
1516
|
+
Processing by ApplicationController#index as HTML
|
1517
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1518
|
+
--------------------------------------------------------------------------------------------------------
|
1519
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1520
|
+
--------------------------------------------------------------------------------------------------------
|
1521
|
+
Processing by ApplicationController#index as HTML
|
1522
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1523
|
+
-------------------------------------------------------------------------
|
1524
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1525
|
+
-------------------------------------------------------------------------
|
1526
|
+
Processing by ApplicationController#index as HTML
|
1527
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1528
|
+
---------------------------------------------------------------
|
1529
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1530
|
+
---------------------------------------------------------------
|
1531
|
+
Processing by ApplicationController#index as HTML
|
1532
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1533
|
+
-------------------------------------------------------------------------------------
|
1534
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1535
|
+
-------------------------------------------------------------------------------------
|
1536
|
+
Processing by ApplicationController#create as HTML
|
1537
|
+
Can't verify CSRF token authenticity.
|
1538
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 105)
|
1539
|
+
-----------------------------------------------------------------------------------------------------
|
1540
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1541
|
+
-----------------------------------------------------------------------------------------------------
|
1542
|
+
Processing by ApplicationController#create as HTML
|
1543
|
+
Can't verify CSRF token authenticity.
|
1544
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 103)
|
1545
|
+
--------------------------------------------------------
|
1546
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1547
|
+
--------------------------------------------------------
|
1548
|
+
Processing by ApplicationController#index as HTML
|
1549
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
1550
|
+
-------------------------------------------------------------
|
1551
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1552
|
+
-------------------------------------------------------------
|
1553
|
+
Processing by ApplicationController#index as HTML
|
1554
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1555
|
+
------------------------------------------------------
|
1556
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1557
|
+
------------------------------------------------------
|
1558
|
+
Processing by ApplicationController#index as HTML
|
1559
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1560
|
+
------------------------------------------------------
|
1561
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1562
|
+
------------------------------------------------------
|
1563
|
+
Processing by ApplicationController#index as HTML
|
1564
|
+
Completed 200 OK in 0ms (Allocations: 174)
|
1565
|
+
-------------------------------------------------------------------------------------
|
1566
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1567
|
+
-------------------------------------------------------------------------------------
|
1568
|
+
Processing by ApplicationController#create as HTML
|
1569
|
+
Can't verify CSRF token authenticity.
|
1570
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 111)
|
1571
|
+
-----------------------------------------------------------------------------
|
1572
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1573
|
+
-----------------------------------------------------------------------------
|
1574
|
+
Processing by ApplicationController#create as HTML
|
1575
|
+
Completed 200 OK in 0ms (Allocations: 125)
|
1576
|
+
-----------------------------------------------------------------------------------------------------
|
1577
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1578
|
+
-----------------------------------------------------------------------------------------------------
|
1579
|
+
Processing by ApplicationController#create as HTML
|
1580
|
+
Can't verify CSRF token authenticity.
|
1581
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 103)
|
1582
|
+
-------------------------------------------------------------
|
1583
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1584
|
+
-------------------------------------------------------------
|
1585
|
+
Processing by ApplicationController#index as HTML
|
1586
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1587
|
+
---------------------------------------------------------------
|
1588
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1589
|
+
---------------------------------------------------------------
|
1590
|
+
Processing by ApplicationController#index as HTML
|
1591
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1592
|
+
-------------------------------------------------------------------------
|
1593
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1594
|
+
-------------------------------------------------------------------------
|
1595
|
+
Processing by ApplicationController#index as HTML
|
1596
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1597
|
+
-----------------------------------------------------------
|
1598
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1599
|
+
-----------------------------------------------------------
|
1600
|
+
Processing by ApplicationController#index as HTML
|
1601
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1602
|
+
------------------------------------------------------------------------------------
|
1603
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1604
|
+
------------------------------------------------------------------------------------
|
1605
|
+
Processing by ApplicationController#index as HTML
|
1606
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1607
|
+
--------------------------------------------------------
|
1608
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1609
|
+
--------------------------------------------------------
|
1610
|
+
Processing by ApplicationController#index as HTML
|
1611
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
1612
|
+
--------------------------------------------------------------------------------------------------------
|
1613
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1614
|
+
--------------------------------------------------------------------------------------------------------
|
1615
|
+
Processing by ApplicationController#index as HTML
|
1616
|
+
Completed 200 OK in 0ms (Allocations: 106)
|
1617
|
+
----------------------------------------------------------------------------
|
1618
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1619
|
+
----------------------------------------------------------------------------
|
1620
|
+
Processing by ExclusionsController#index as HTML
|
1621
|
+
Completed 200 OK in 0ms (Allocations: 71)
|
1622
|
+
-------------------------------------------------------------------------
|
1623
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1624
|
+
-------------------------------------------------------------------------
|
1625
|
+
Processing by ApplicationController#index as HTML
|
1626
|
+
Completed 200 OK in 0ms (Allocations: 132)
|
1627
|
+
-----------------------------------------------------------------------------------------------------
|
1628
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1629
|
+
-----------------------------------------------------------------------------------------------------
|
1630
|
+
Processing by ApplicationController#create as HTML
|
1631
|
+
Can't verify CSRF token authenticity.
|
1632
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 116)
|
1633
|
+
-------------------------------------------------------------
|
1634
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1635
|
+
-------------------------------------------------------------
|
1636
|
+
Processing by ApplicationController#index as HTML
|
1637
|
+
Completed 200 OK in 0ms (Allocations: 121)
|
1638
|
+
------------------------------------------------------------------------------------
|
1639
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1640
|
+
------------------------------------------------------------------------------------
|
1641
|
+
Processing by ApplicationController#index as HTML
|
1642
|
+
Completed 200 OK in 0ms (Allocations: 108)
|
1643
|
+
-------------------------------------------------------------------------------------
|
1644
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1645
|
+
-------------------------------------------------------------------------------------
|
1646
|
+
Processing by ApplicationController#create as HTML
|
1647
|
+
Can't verify CSRF token authenticity.
|
1648
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
1649
|
+
---------------------------------------------------------------
|
1650
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1651
|
+
---------------------------------------------------------------
|
1652
|
+
Processing by ApplicationController#index as HTML
|
1653
|
+
Completed 200 OK in 0ms (Allocations: 108)
|
1654
|
+
-----------------------------------------------------------------------------
|
1655
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1656
|
+
-----------------------------------------------------------------------------
|
1657
|
+
Processing by ApplicationController#create as HTML
|
1658
|
+
Completed 200 OK in 0ms (Allocations: 129)
|
1659
|
+
------------------------------------------------------
|
1660
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1661
|
+
------------------------------------------------------
|
1662
|
+
Processing by ApplicationController#index as HTML
|
1663
|
+
Completed 200 OK in 0ms (Allocations: 108)
|
1664
|
+
-----------------------------------------------------------
|
1665
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1666
|
+
-----------------------------------------------------------
|
1667
|
+
Processing by ApplicationController#index as HTML
|
1668
|
+
Completed 200 OK in 0ms (Allocations: 108)
|
1669
|
+
--------------------------------------------------------------------------------------------------------
|
1670
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1671
|
+
--------------------------------------------------------------------------------------------------------
|
1672
|
+
Processing by ApplicationController#index as HTML
|
1673
|
+
Completed 200 OK in 0ms (Allocations: 108)
|
1674
|
+
--------------------------------------------------------
|
1675
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1676
|
+
--------------------------------------------------------
|
1677
|
+
Processing by ApplicationController#index as HTML
|
1678
|
+
Completed 200 OK in 0ms (Allocations: 119)
|
1679
|
+
----------------------------------------------------------------------------
|
1680
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1681
|
+
----------------------------------------------------------------------------
|
1682
|
+
Processing by ExclusionsController#index as HTML
|
1683
|
+
Completed 200 OK in 0ms (Allocations: 71)
|
1684
|
+
-----------------------------------------------------------------------------------------------------
|
1685
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1686
|
+
-----------------------------------------------------------------------------------------------------
|
1687
|
+
Processing by ApplicationController#create as HTML
|
1688
|
+
Can't verify CSRF token authenticity.
|
1689
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 162)
|
1690
|
+
-----------------------------------------------------------------------------
|
1691
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1692
|
+
-----------------------------------------------------------------------------
|
1693
|
+
Processing by ApplicationController#create as HTML
|
1694
|
+
Completed 200 OK in 0ms (Allocations: 148)
|
1695
|
+
--------------------------------------------------------
|
1696
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1697
|
+
--------------------------------------------------------
|
1698
|
+
Processing by ApplicationController#index as HTML
|
1699
|
+
Completed 200 OK in 0ms (Allocations: 120)
|
1700
|
+
-------------------------------------------------------------------------
|
1701
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1702
|
+
-------------------------------------------------------------------------
|
1703
|
+
Processing by ApplicationController#index as HTML
|
1704
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1705
|
+
-------------------------------------------------------------
|
1706
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1707
|
+
-------------------------------------------------------------
|
1708
|
+
Processing by ApplicationController#index as HTML
|
1709
|
+
Completed 200 OK in 0ms (Allocations: 108)
|
1710
|
+
-----------------------------------------------------------
|
1711
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1712
|
+
-----------------------------------------------------------
|
1713
|
+
Processing by ApplicationController#index as HTML
|
1714
|
+
Completed 200 OK in 0ms (Allocations: 108)
|
1715
|
+
--------------------------------------------------------------------------------------------------------
|
1716
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1717
|
+
--------------------------------------------------------------------------------------------------------
|
1718
|
+
Processing by ApplicationController#index as HTML
|
1719
|
+
Completed 200 OK in 0ms (Allocations: 108)
|
1720
|
+
------------------------------------------------------------------------------------
|
1721
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1722
|
+
------------------------------------------------------------------------------------
|
1723
|
+
Processing by ApplicationController#index as HTML
|
1724
|
+
Completed 200 OK in 0ms (Allocations: 108)
|
1725
|
+
-------------------------------------------------------------------------------------
|
1726
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1727
|
+
-------------------------------------------------------------------------------------
|
1728
|
+
Processing by ApplicationController#create as HTML
|
1729
|
+
Can't verify CSRF token authenticity.
|
1730
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
1731
|
+
------------------------------------------------------
|
1732
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1733
|
+
------------------------------------------------------
|
1734
|
+
Processing by ApplicationController#index as HTML
|
1735
|
+
Completed 200 OK in 0ms (Allocations: 108)
|
1736
|
+
---------------------------------------------------------------
|
1737
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1738
|
+
---------------------------------------------------------------
|
1739
|
+
Processing by ApplicationController#index as HTML
|
1740
|
+
Completed 200 OK in 0ms (Allocations: 108)
|
1741
|
+
----------------------------------------------------------------------------
|
1742
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1743
|
+
----------------------------------------------------------------------------
|
1744
|
+
Processing by ExclusionsController#index as HTML
|
1745
|
+
Completed 200 OK in 0ms (Allocations: 71)
|
1746
|
+
----------------------------------------------------------------------------
|
1747
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1748
|
+
----------------------------------------------------------------------------
|
1749
|
+
Processing by ExclusionsController#index as HTML
|
1750
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
1751
|
+
-------------------------------------------------------------
|
1752
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1753
|
+
-------------------------------------------------------------
|
1754
|
+
Processing by ApplicationController#index as HTML
|
1755
|
+
Completed 200 OK in 0ms (Allocations: 109)
|
1756
|
+
------------------------------------------------------------------------------------
|
1757
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1758
|
+
------------------------------------------------------------------------------------
|
1759
|
+
Processing by ApplicationController#index as HTML
|
1760
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1761
|
+
---------------------------------------------------------------
|
1762
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1763
|
+
---------------------------------------------------------------
|
1764
|
+
Processing by ApplicationController#index as HTML
|
1765
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1766
|
+
--------------------------------------------------------
|
1767
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1768
|
+
--------------------------------------------------------
|
1769
|
+
Processing by ApplicationController#index as HTML
|
1770
|
+
Completed 200 OK in 0ms (Allocations: 115)
|
1771
|
+
-------------------------------------------------------------------------
|
1772
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1773
|
+
-------------------------------------------------------------------------
|
1774
|
+
Processing by ApplicationController#index as HTML
|
1775
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1776
|
+
-----------------------------------------------------------------------------
|
1777
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1778
|
+
-----------------------------------------------------------------------------
|
1779
|
+
Processing by ApplicationController#create as HTML
|
1780
|
+
Completed 200 OK in 0ms (Allocations: 131)
|
1781
|
+
--------------------------------------------------------------------------------------------------------
|
1782
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1783
|
+
--------------------------------------------------------------------------------------------------------
|
1784
|
+
Processing by ApplicationController#index as HTML
|
1785
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1786
|
+
-----------------------------------------------------------
|
1787
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1788
|
+
-----------------------------------------------------------
|
1789
|
+
Processing by ApplicationController#index as HTML
|
1790
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1791
|
+
-----------------------------------------------------------------------------------------------------
|
1792
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1793
|
+
-----------------------------------------------------------------------------------------------------
|
1794
|
+
Processing by ApplicationController#create as HTML
|
1795
|
+
Can't verify CSRF token authenticity.
|
1796
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 110)
|
1797
|
+
-------------------------------------------------------------------------------------
|
1798
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1799
|
+
-------------------------------------------------------------------------------------
|
1800
|
+
Processing by ApplicationController#create as HTML
|
1801
|
+
Can't verify CSRF token authenticity.
|
1802
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
1803
|
+
------------------------------------------------------
|
1804
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1805
|
+
------------------------------------------------------
|
1806
|
+
Processing by ApplicationController#index as HTML
|
1807
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1808
|
+
----------------------------------------------------------------------------
|
1809
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1810
|
+
----------------------------------------------------------------------------
|
1811
|
+
Processing by ExclusionsController#index as HTML
|
1812
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
1813
|
+
-------------------------------------------------------------------------
|
1814
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1815
|
+
-------------------------------------------------------------------------
|
1816
|
+
Processing by ApplicationController#index as HTML
|
1817
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1818
|
+
-------------------------------------------------------------
|
1819
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1820
|
+
-------------------------------------------------------------
|
1821
|
+
Processing by ApplicationController#index as HTML
|
1822
|
+
Completed 200 OK in 0ms (Allocations: 109)
|
1823
|
+
-----------------------------------------------------------------------------------------------------
|
1824
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1825
|
+
-----------------------------------------------------------------------------------------------------
|
1826
|
+
Processing by ApplicationController#create as HTML
|
1827
|
+
Can't verify CSRF token authenticity.
|
1828
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 116)
|
1829
|
+
------------------------------------------------------
|
1830
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1831
|
+
------------------------------------------------------
|
1832
|
+
Processing by ApplicationController#index as HTML
|
1833
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1834
|
+
-------------------------------------------------------------------------------------
|
1835
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1836
|
+
-------------------------------------------------------------------------------------
|
1837
|
+
Processing by ApplicationController#create as HTML
|
1838
|
+
Can't verify CSRF token authenticity.
|
1839
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
1840
|
+
---------------------------------------------------------------
|
1841
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1842
|
+
---------------------------------------------------------------
|
1843
|
+
Processing by ApplicationController#index as HTML
|
1844
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1845
|
+
-----------------------------------------------------------
|
1846
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1847
|
+
-----------------------------------------------------------
|
1848
|
+
Processing by ApplicationController#index as HTML
|
1849
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1850
|
+
------------------------------------------------------------------------------------
|
1851
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1852
|
+
------------------------------------------------------------------------------------
|
1853
|
+
Processing by ApplicationController#index as HTML
|
1854
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1855
|
+
-----------------------------------------------------------------------------
|
1856
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1857
|
+
-----------------------------------------------------------------------------
|
1858
|
+
Processing by ApplicationController#create as HTML
|
1859
|
+
Completed 200 OK in 0ms (Allocations: 125)
|
1860
|
+
--------------------------------------------------------
|
1861
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1862
|
+
--------------------------------------------------------
|
1863
|
+
Processing by ApplicationController#index as HTML
|
1864
|
+
Completed 200 OK in 0ms (Allocations: 115)
|
1865
|
+
--------------------------------------------------------------------------------------------------------
|
1866
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1867
|
+
--------------------------------------------------------------------------------------------------------
|
1868
|
+
Processing by ApplicationController#index as HTML
|
1869
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1870
|
+
----------------------------------------------------------------------------
|
1871
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
1872
|
+
----------------------------------------------------------------------------
|
1873
|
+
Processing by ExclusionsController#index as HTML
|
1874
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
1875
|
+
--------------------------------------------------------
|
1876
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1877
|
+
--------------------------------------------------------
|
1878
|
+
Processing by ApplicationController#index as HTML
|
1879
|
+
Completed 200 OK in 0ms (Allocations: 120)
|
1880
|
+
-------------------------------------------------------------------------------------
|
1881
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
1882
|
+
-------------------------------------------------------------------------------------
|
1883
|
+
Processing by ApplicationController#create as HTML
|
1884
|
+
Can't verify CSRF token authenticity.
|
1885
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 111)
|
1886
|
+
------------------------------------------------------
|
1887
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1888
|
+
------------------------------------------------------
|
1889
|
+
Processing by ApplicationController#index as HTML
|
1890
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1891
|
+
---------------------------------------------------------------
|
1892
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1893
|
+
---------------------------------------------------------------
|
1894
|
+
Processing by ApplicationController#index as HTML
|
1895
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1896
|
+
------------------------------------------------------------------------------------
|
1897
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1898
|
+
------------------------------------------------------------------------------------
|
1899
|
+
Processing by ApplicationController#index as HTML
|
1900
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1901
|
+
-------------------------------------------------------------------------
|
1902
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1903
|
+
-------------------------------------------------------------------------
|
1904
|
+
Processing by ApplicationController#index as HTML
|
1905
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1906
|
+
-----------------------------------------------------------------------------
|
1907
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1908
|
+
-----------------------------------------------------------------------------
|
1909
|
+
Processing by ApplicationController#create as HTML
|
1910
|
+
Completed 200 OK in 0ms (Allocations: 125)
|
1911
|
+
-------------------------------------------------------------
|
1912
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1913
|
+
-------------------------------------------------------------
|
1914
|
+
Processing by ApplicationController#index as HTML
|
1915
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1916
|
+
--------------------------------------------------------------------------------------------------------
|
1917
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1918
|
+
--------------------------------------------------------------------------------------------------------
|
1919
|
+
Processing by ApplicationController#index as HTML
|
1920
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1921
|
+
-----------------------------------------------------------
|
1922
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1923
|
+
-----------------------------------------------------------
|
1924
|
+
Processing by ApplicationController#index as HTML
|
1925
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1926
|
+
-----------------------------------------------------------------------------------------------------
|
1927
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1928
|
+
-----------------------------------------------------------------------------------------------------
|
1929
|
+
Processing by ApplicationController#create as HTML
|
1930
|
+
Can't verify CSRF token authenticity.
|
1931
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 103)
|
1932
|
+
-------------------------------------------------------------------------------------------------------------
|
1933
|
+
AngularRailsCsrfSkipTest: test_csrf-cookie_is_not_set_and_no_error_if_protect_against_forgery?_is_not_defined
|
1934
|
+
-------------------------------------------------------------------------------------------------------------
|
1935
|
+
Processing by ApiController#index as HTML
|
1936
|
+
Completed 200 OK in 0ms (Allocations: 84)
|
1937
|
+
-------------------------------------------------------------------------------------------------------------
|
1938
|
+
AngularRailsCsrfSkipTest: test_csrf-cookie_is_not_set_and_no_error_if_protect_against_forgery?_is_not_defined
|
1939
|
+
-------------------------------------------------------------------------------------------------------------
|
1940
|
+
Processing by ApiController#index as HTML
|
1941
|
+
Completed 200 OK in 0ms (Allocations: 88)
|
1942
|
+
-----------------------------------------------------------------------------
|
1943
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
1944
|
+
-----------------------------------------------------------------------------
|
1945
|
+
Processing by ApplicationController#create as HTML
|
1946
|
+
Completed 200 OK in 0ms (Allocations: 192)
|
1947
|
+
-----------------------------------------------------------------
|
1948
|
+
AngularRailsCsrfTest: test_the_httponly_flag_is_set_if_configured
|
1949
|
+
-----------------------------------------------------------------
|
1950
|
+
Processing by ApplicationController#index as HTML
|
1951
|
+
Completed 200 OK in 0ms (Allocations: 105)
|
1952
|
+
-------------------------------------------------------------------------
|
1953
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
1954
|
+
-------------------------------------------------------------------------
|
1955
|
+
Processing by ApplicationController#index as HTML
|
1956
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
1957
|
+
-------------------------------------------------------------
|
1958
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
1959
|
+
-------------------------------------------------------------
|
1960
|
+
Processing by ApplicationController#index as HTML
|
1961
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1962
|
+
--------------------------------------------------------
|
1963
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
1964
|
+
--------------------------------------------------------
|
1965
|
+
Processing by ApplicationController#index as HTML
|
1966
|
+
Completed 200 OK in 0ms (Allocations: 115)
|
1967
|
+
------------------------------------------------------------------------------------
|
1968
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
1969
|
+
------------------------------------------------------------------------------------
|
1970
|
+
Processing by ApplicationController#index as HTML
|
1971
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1972
|
+
--------------------------------------------------------------------------------------------------------
|
1973
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
1974
|
+
--------------------------------------------------------------------------------------------------------
|
1975
|
+
Processing by ApplicationController#index as HTML
|
1976
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1977
|
+
-----------------------------------------------------------
|
1978
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
1979
|
+
-----------------------------------------------------------
|
1980
|
+
Processing by ApplicationController#index as HTML
|
1981
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1982
|
+
---------------------------------------------------------------
|
1983
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
1984
|
+
---------------------------------------------------------------
|
1985
|
+
Processing by ApplicationController#index as HTML
|
1986
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1987
|
+
-----------------------------------------------------------------------------------------------------
|
1988
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
1989
|
+
-----------------------------------------------------------------------------------------------------
|
1990
|
+
Processing by ApplicationController#create as HTML
|
1991
|
+
Can't verify CSRF token authenticity.
|
1992
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 110)
|
1993
|
+
------------------------------------------------------
|
1994
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
1995
|
+
------------------------------------------------------
|
1996
|
+
Processing by ApplicationController#index as HTML
|
1997
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
1998
|
+
-------------------------------------------------------------------------------------
|
1999
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
2000
|
+
-------------------------------------------------------------------------------------
|
2001
|
+
Processing by ApplicationController#create as HTML
|
2002
|
+
Can't verify CSRF token authenticity.
|
2003
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
2004
|
+
----------------------------------------------------------------------------
|
2005
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
2006
|
+
----------------------------------------------------------------------------
|
2007
|
+
Processing by ExclusionsController#index as HTML
|
2008
|
+
Completed 200 OK in 0ms (Allocations: 71)
|
2009
|
+
-------------------------------------------------------------------------------------------------------------
|
2010
|
+
AngularRailsCsrfSkipTest: test_csrf-cookie_is_not_set_and_no_error_if_protect_against_forgery?_is_not_defined
|
2011
|
+
-------------------------------------------------------------------------------------------------------------
|
2012
|
+
Processing by ApiController#index as HTML
|
2013
|
+
Completed 200 OK in 0ms (Allocations: 88)
|
2014
|
+
-----------------------------------------------------------
|
2015
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
2016
|
+
-----------------------------------------------------------
|
2017
|
+
Processing by ApplicationController#index as HTML
|
2018
|
+
Completed 500 Internal Server Error in 12ms (Allocations: 3012)
|
2019
|
+
------------------------------------------------------
|
2020
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
2021
|
+
------------------------------------------------------
|
2022
|
+
Processing by ApplicationController#index as HTML
|
2023
|
+
Completed 500 Internal Server Error in 5ms (Allocations: 2927)
|
2024
|
+
-----------------------------------------------------------------------------------------------------
|
2025
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
2026
|
+
-----------------------------------------------------------------------------------------------------
|
2027
|
+
Processing by ApplicationController#create as HTML
|
2028
|
+
Can't verify CSRF token authenticity.
|
2029
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 111)
|
2030
|
+
--------------------------------------------------------------------------------------------------------
|
2031
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
2032
|
+
--------------------------------------------------------------------------------------------------------
|
2033
|
+
Processing by ApplicationController#index as HTML
|
2034
|
+
Completed 500 Internal Server Error in 6ms (Allocations: 2927)
|
2035
|
+
---------------------------------------------------------------
|
2036
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
2037
|
+
---------------------------------------------------------------
|
2038
|
+
Processing by ApplicationController#index as HTML
|
2039
|
+
Completed 500 Internal Server Error in 5ms (Allocations: 2927)
|
2040
|
+
------------------------------------------------------------------------------------
|
2041
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
2042
|
+
------------------------------------------------------------------------------------
|
2043
|
+
Processing by ApplicationController#index as HTML
|
2044
|
+
Completed 500 Internal Server Error in 5ms (Allocations: 2927)
|
2045
|
+
--------------------------------------------------------
|
2046
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
2047
|
+
--------------------------------------------------------
|
2048
|
+
Processing by ApplicationController#index as HTML
|
2049
|
+
Completed 500 Internal Server Error in 5ms (Allocations: 2927)
|
2050
|
+
-----------------------------------------------------------------------------
|
2051
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
2052
|
+
-----------------------------------------------------------------------------
|
2053
|
+
Processing by ApplicationController#create as HTML
|
2054
|
+
Completed 500 Internal Server Error in 6ms (Allocations: 3046)
|
2055
|
+
-------------------------------------------------------------
|
2056
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
2057
|
+
-------------------------------------------------------------
|
2058
|
+
Processing by ApplicationController#index as HTML
|
2059
|
+
Completed 500 Internal Server Error in 5ms (Allocations: 2927)
|
2060
|
+
-------------------------------------------------------------------------
|
2061
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
2062
|
+
-------------------------------------------------------------------------
|
2063
|
+
Processing by ApplicationController#index as HTML
|
2064
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
2065
|
+
-----------------------------------------------------------------
|
2066
|
+
AngularRailsCsrfTest: test_the_httponly_flag_is_set_if_configured
|
2067
|
+
-----------------------------------------------------------------
|
2068
|
+
Processing by ApplicationController#index as HTML
|
2069
|
+
Completed 500 Internal Server Error in 5ms (Allocations: 2927)
|
2070
|
+
-------------------------------------------------------------------------------------
|
2071
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
2072
|
+
-------------------------------------------------------------------------------------
|
2073
|
+
Processing by ApplicationController#create as HTML
|
2074
|
+
Can't verify CSRF token authenticity.
|
2075
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
2076
|
+
----------------------------------------------------------------------------
|
2077
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
2078
|
+
----------------------------------------------------------------------------
|
2079
|
+
Processing by ExclusionsController#index as HTML
|
2080
|
+
Completed 200 OK in 0ms (Allocations: 71)
|
2081
|
+
-------------------------------------------------------------------------------------------------------------
|
2082
|
+
AngularRailsCsrfSkipTest: test_csrf-cookie_is_not_set_and_no_error_if_protect_against_forgery?_is_not_defined
|
2083
|
+
-------------------------------------------------------------------------------------------------------------
|
2084
|
+
Processing by ApiController#index as HTML
|
2085
|
+
Completed 200 OK in 0ms (Allocations: 88)
|
2086
|
+
-------------------------------------------------------------------------
|
2087
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
2088
|
+
-------------------------------------------------------------------------
|
2089
|
+
Processing by ApplicationController#index as HTML
|
2090
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
2091
|
+
------------------------------------------------------------------------------------
|
2092
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
2093
|
+
------------------------------------------------------------------------------------
|
2094
|
+
Processing by ApplicationController#index as HTML
|
2095
|
+
Completed 200 OK in 0ms (Allocations: 114)
|
2096
|
+
-----------------------------------------------------------
|
2097
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
2098
|
+
-----------------------------------------------------------
|
2099
|
+
Processing by ApplicationController#index as HTML
|
2100
|
+
Completed 200 OK in 1ms (Allocations: 104)
|
2101
|
+
------------------------------------------------------
|
2102
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
2103
|
+
------------------------------------------------------
|
2104
|
+
Processing by ApplicationController#index as HTML
|
2105
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
2106
|
+
-----------------------------------------------------------------------------------------------------
|
2107
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
2108
|
+
-----------------------------------------------------------------------------------------------------
|
2109
|
+
Processing by ApplicationController#create as HTML
|
2110
|
+
Can't verify CSRF token authenticity.
|
2111
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 116)
|
2112
|
+
-----------------------------------------------------------------
|
2113
|
+
AngularRailsCsrfTest: test_the_httponly_flag_is_set_if_configured
|
2114
|
+
-----------------------------------------------------------------
|
2115
|
+
Processing by ApplicationController#index as HTML
|
2116
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
2117
|
+
--------------------------------------------------------
|
2118
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
2119
|
+
--------------------------------------------------------
|
2120
|
+
Processing by ApplicationController#index as HTML
|
2121
|
+
Completed 200 OK in 0ms (Allocations: 115)
|
2122
|
+
-------------------------------------------------------------------------------------
|
2123
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
2124
|
+
-------------------------------------------------------------------------------------
|
2125
|
+
Processing by ApplicationController#create as HTML
|
2126
|
+
Can't verify CSRF token authenticity.
|
2127
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
2128
|
+
--------------------------------------------------------------------------------------------------------
|
2129
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
2130
|
+
--------------------------------------------------------------------------------------------------------
|
2131
|
+
Processing by ApplicationController#index as HTML
|
2132
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
2133
|
+
---------------------------------------------------------------
|
2134
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
2135
|
+
---------------------------------------------------------------
|
2136
|
+
Processing by ApplicationController#index as HTML
|
2137
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
2138
|
+
-----------------------------------------------------------------------------
|
2139
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
2140
|
+
-----------------------------------------------------------------------------
|
2141
|
+
Processing by ApplicationController#create as HTML
|
2142
|
+
Completed 200 OK in 0ms (Allocations: 125)
|
2143
|
+
-------------------------------------------------------------
|
2144
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
2145
|
+
-------------------------------------------------------------
|
2146
|
+
Processing by ApplicationController#index as HTML
|
2147
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
2148
|
+
----------------------------------------------------------------------------
|
2149
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
2150
|
+
----------------------------------------------------------------------------
|
2151
|
+
Processing by ExclusionsController#index as HTML
|
2152
|
+
Completed 200 OK in 0ms (Allocations: 71)
|
2153
|
+
-------------------------------------------------------------------------------------------------------------
|
2154
|
+
AngularRailsCsrfSkipTest: test_csrf-cookie_is_not_set_and_no_error_if_protect_against_forgery?_is_not_defined
|
2155
|
+
-------------------------------------------------------------------------------------------------------------
|
2156
|
+
Processing by ApiController#index as HTML
|
2157
|
+
Completed 200 OK in 0ms (Allocations: 88)
|
2158
|
+
-----------------------------------------------------------------
|
2159
|
+
AngularRailsCsrfTest: test_the_httponly_flag_is_set_if_configured
|
2160
|
+
-----------------------------------------------------------------
|
2161
|
+
Processing by ApplicationController#index as HTML
|
2162
|
+
Completed 200 OK in 0ms (Allocations: 168)
|
2163
|
+
-----------------------------------------------------------------------------
|
2164
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
2165
|
+
-----------------------------------------------------------------------------
|
2166
|
+
Processing by ApplicationController#create as HTML
|
2167
|
+
Completed 200 OK in 0ms (Allocations: 131)
|
2168
|
+
-------------------------------------------------------------------------------------
|
2169
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
2170
|
+
-------------------------------------------------------------------------------------
|
2171
|
+
Processing by ApplicationController#create as HTML
|
2172
|
+
Can't verify CSRF token authenticity.
|
2173
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 105)
|
2174
|
+
---------------------------------------------------------------
|
2175
|
+
AngularRailsCsrfTest: test_the_secure_flag_is_set_if_configured
|
2176
|
+
---------------------------------------------------------------
|
2177
|
+
Processing by ApplicationController#index as HTML
|
2178
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
2179
|
+
--------------------------------------------------------------------------------------------------------
|
2180
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
2181
|
+
--------------------------------------------------------------------------------------------------------
|
2182
|
+
Processing by ApplicationController#index as HTML
|
2183
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
2184
|
+
-------------------------------------------------------------
|
2185
|
+
AngularRailsCsrfTest: test_same_site_is_set_to_Lax_by_default
|
2186
|
+
-------------------------------------------------------------
|
2187
|
+
Processing by ApplicationController#index as HTML
|
2188
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
2189
|
+
------------------------------------------------------------------------------------
|
2190
|
+
AngularRailsCsrfTest: test_secure_is_set_automatically_when_same_site_is_set_to_none
|
2191
|
+
------------------------------------------------------------------------------------
|
2192
|
+
Processing by ApplicationController#index as HTML
|
2193
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
2194
|
+
-----------------------------------------------------------
|
2195
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
2196
|
+
-----------------------------------------------------------
|
2197
|
+
Processing by ApplicationController#index as HTML
|
2198
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
2199
|
+
-----------------------------------------------------------------------------------------------------
|
2200
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
2201
|
+
-----------------------------------------------------------------------------------------------------
|
2202
|
+
Processing by ApplicationController#create as HTML
|
2203
|
+
Can't verify CSRF token authenticity.
|
2204
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 103)
|
2205
|
+
--------------------------------------------------------
|
2206
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
2207
|
+
--------------------------------------------------------
|
2208
|
+
Processing by ApplicationController#index as HTML
|
2209
|
+
Completed 200 OK in 0ms (Allocations: 115)
|
2210
|
+
-------------------------------------------------------------------------
|
2211
|
+
AngularRailsCsrfTest: test_csrf-cookie_is_not_set_if_exclusion_is_enabled
|
2212
|
+
-------------------------------------------------------------------------
|
2213
|
+
Processing by ApplicationController#index as HTML
|
2214
|
+
Completed 200 OK in 0ms (Allocations: 74)
|
2215
|
+
------------------------------------------------------
|
2216
|
+
AngularRailsCsrfTest: test_same_site_can_be_configured
|
2217
|
+
------------------------------------------------------
|
2218
|
+
Processing by ApplicationController#index as HTML
|
2219
|
+
Completed 200 OK in 0ms (Allocations: 104)
|
2220
|
+
----------------------------------------------------------------------------
|
2221
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
2222
|
+
----------------------------------------------------------------------------
|
2223
|
+
Processing by ExclusionsController#index as HTML
|
2224
|
+
Completed 200 OK in 0ms (Allocations: 71)
|