angular_rails_csrf 4.0.0 → 4.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +34 -3
- data/Rakefile +3 -6
- data/lib/angular_rails_csrf.rb +2 -0
- data/lib/angular_rails_csrf/concern.rb +38 -12
- data/lib/angular_rails_csrf/railtie.rb +2 -0
- data/lib/angular_rails_csrf/version.rb +3 -1
- data/test/angular_rails_csrf_exception_test.rb +4 -2
- data/test/angular_rails_csrf_skip_test.rb +14 -0
- data/test/angular_rails_csrf_test.rb +85 -19
- data/test/dummy/app/assets/config/manifest.js +4 -0
- data/test/dummy/app/controllers/api_controller.rb +7 -0
- data/test/dummy/app/controllers/application_controller.rb +9 -2
- data/test/dummy/app/controllers/exclusions_controller.rb +6 -2
- data/test/dummy/config.ru +3 -1
- data/test/dummy/config/application.rb +5 -4
- data/test/dummy/config/boot.rb +3 -1
- data/test/dummy/config/environment.rb +3 -1
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/log/test.log +1381 -0
- data/test/test_helper.rb +16 -3
- metadata +70 -8
data/test/dummy/config/boot.rb
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# Set up gems listed in the Gemfile.
|
2
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('
|
4
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../Gemfile', __dir__)
|
3
5
|
|
4
6
|
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|
data/test/dummy/config/routes.rb
CHANGED
data/test/dummy/log/test.log
CHANGED
@@ -553,3 +553,1384 @@ AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
|
553
553
|
-----------------------------------------------------------
|
554
554
|
Processing by ApplicationController#index as HTML
|
555
555
|
Completed 200 OK in 0ms (Allocations: 116)
|
556
|
+
----------------------------------------------------------------------------
|
557
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
558
|
+
----------------------------------------------------------------------------
|
559
|
+
Processing by ExclusionsController#index as HTML
|
560
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
561
|
+
--------------------------------------------------------------------------------------------------------
|
562
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
563
|
+
--------------------------------------------------------------------------------------------------------
|
564
|
+
Processing by ApplicationController#index as HTML
|
565
|
+
Completed 200 OK in 0ms (Allocations: 110)
|
566
|
+
-----------------------------------------------------------------------------
|
567
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
568
|
+
-----------------------------------------------------------------------------
|
569
|
+
Processing by ApplicationController#create as HTML
|
570
|
+
Completed 200 OK in 0ms (Allocations: 135)
|
571
|
+
--------------------------------------------------------
|
572
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
573
|
+
--------------------------------------------------------
|
574
|
+
Processing by ApplicationController#index as HTML
|
575
|
+
Completed 200 OK in 0ms (Allocations: 120)
|
576
|
+
-------------------------------------------------------------------------------------
|
577
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
578
|
+
-------------------------------------------------------------------------------------
|
579
|
+
Processing by ApplicationController#create as HTML
|
580
|
+
Can't verify CSRF token authenticity.
|
581
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 106)
|
582
|
+
-----------------------------------------------------------
|
583
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
584
|
+
-----------------------------------------------------------
|
585
|
+
Processing by ApplicationController#index as HTML
|
586
|
+
Completed 200 OK in 0ms (Allocations: 118)
|
587
|
+
-----------------------------------------------------------------------------------------------------
|
588
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
589
|
+
-----------------------------------------------------------------------------------------------------
|
590
|
+
Processing by ApplicationController#create as HTML
|
591
|
+
Can't verify CSRF token authenticity.
|
592
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 104)
|
593
|
+
--------------------------------------------------------------------------------------------------------
|
594
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
595
|
+
--------------------------------------------------------------------------------------------------------
|
596
|
+
Processing by ApplicationController#index as HTML
|
597
|
+
Completed 200 OK in 0ms (Allocations: 172)
|
598
|
+
--------------------------------------------------------
|
599
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
600
|
+
--------------------------------------------------------
|
601
|
+
Processing by ApplicationController#index as HTML
|
602
|
+
Completed 200 OK in 0ms (Allocations: 119)
|
603
|
+
-----------------------------------------------------------
|
604
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
605
|
+
-----------------------------------------------------------
|
606
|
+
Processing by ApplicationController#index as HTML
|
607
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
608
|
+
-----------------------------------------------------------------------------------------------------
|
609
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
610
|
+
-----------------------------------------------------------------------------------------------------
|
611
|
+
Processing by ApplicationController#create as HTML
|
612
|
+
Can't verify CSRF token authenticity.
|
613
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 116)
|
614
|
+
-----------------------------------------------------------------------------
|
615
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
616
|
+
-----------------------------------------------------------------------------
|
617
|
+
Processing by ApplicationController#create as HTML
|
618
|
+
Completed 200 OK in 0ms (Allocations: 136)
|
619
|
+
-------------------------------------------------------------------------------------
|
620
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
621
|
+
-------------------------------------------------------------------------------------
|
622
|
+
Processing by ApplicationController#create as HTML
|
623
|
+
Can't verify CSRF token authenticity.
|
624
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 98)
|
625
|
+
----------------------------------------------------------------------------
|
626
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
627
|
+
----------------------------------------------------------------------------
|
628
|
+
Processing by ExclusionsController#index as HTML
|
629
|
+
Completed 200 OK in 0ms (Allocations: 71)
|
630
|
+
--------------------------------------------------------
|
631
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
632
|
+
--------------------------------------------------------
|
633
|
+
Processing by ApplicationController#index as HTML
|
634
|
+
Completed 200 OK in 0ms (Allocations: 183)
|
635
|
+
-------------------------------------------------------------------------------------
|
636
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
637
|
+
-------------------------------------------------------------------------------------
|
638
|
+
Processing by ApplicationController#create as HTML
|
639
|
+
Can't verify CSRF token authenticity.
|
640
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 111)
|
641
|
+
-----------------------------------------------------------------------------
|
642
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
643
|
+
-----------------------------------------------------------------------------
|
644
|
+
Processing by ApplicationController#create as HTML
|
645
|
+
Completed 200 OK in 0ms (Allocations: 136)
|
646
|
+
-----------------------------------------------------------------------------------------------------
|
647
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
648
|
+
-----------------------------------------------------------------------------------------------------
|
649
|
+
Processing by ApplicationController#create as HTML
|
650
|
+
Can't verify CSRF token authenticity.
|
651
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 103)
|
652
|
+
--------------------------------------------------------------------------------------------------------
|
653
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
654
|
+
--------------------------------------------------------------------------------------------------------
|
655
|
+
Processing by ApplicationController#index as HTML
|
656
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
657
|
+
-----------------------------------------------------------
|
658
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
659
|
+
-----------------------------------------------------------
|
660
|
+
Processing by ApplicationController#index as HTML
|
661
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
662
|
+
----------------------------------------------------------------------------
|
663
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
664
|
+
----------------------------------------------------------------------------
|
665
|
+
Processing by ExclusionsController#index as HTML
|
666
|
+
Completed 200 OK in 0ms (Allocations: 71)
|
667
|
+
----------------------------------------------------------------------------
|
668
|
+
AngularRailsCsrfExceptionTest: test_a_get_does_not_set_the_XSRF-TOKEN_cookie
|
669
|
+
----------------------------------------------------------------------------
|
670
|
+
Processing by ExclusionsController#index as HTML
|
671
|
+
Completed 200 OK in 0ms (Allocations: 128)
|
672
|
+
-----------------------------------------------------------
|
673
|
+
AngularRailsCsrfTest: test_a_custom_name_is_used_if_present
|
674
|
+
-----------------------------------------------------------
|
675
|
+
Processing by ApplicationController#index as HTML
|
676
|
+
Completed 200 OK in 0ms (Allocations: 109)
|
677
|
+
--------------------------------------------------------
|
678
|
+
AngularRailsCsrfTest: test_the_domain_is_used_if_present
|
679
|
+
--------------------------------------------------------
|
680
|
+
Processing by ApplicationController#index as HTML
|
681
|
+
Completed 200 OK in 0ms (Allocations: 119)
|
682
|
+
-------------------------------------------------------------------------------------
|
683
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_without_the_X-XSRF-TOKEN_header_set
|
684
|
+
-------------------------------------------------------------------------------------
|
685
|
+
Processing by ApplicationController#create as HTML
|
686
|
+
Can't verify CSRF token authenticity.
|
687
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 111)
|
688
|
+
--------------------------------------------------------------------------------------------------------
|
689
|
+
AngularRailsCsrfTest: test_a_get_sets_the_XSRF-TOKEN_cookie_but_does_not_require_the_X-XSRF-TOKEN_header
|
690
|
+
--------------------------------------------------------------------------------------------------------
|
691
|
+
Processing by ApplicationController#index as HTML
|
692
|
+
Completed 200 OK in 0ms (Allocations: 117)
|
693
|
+
-----------------------------------------------------------------------------------------------------
|
694
|
+
AngularRailsCsrfTest: test_a_post_raises_an_error_with_the_X-XSRF-TOKEN_header_set_to_the_wrong_value
|
695
|
+
-----------------------------------------------------------------------------------------------------
|
696
|
+
Processing by ApplicationController#create as HTML
|
697
|
+
Can't verify CSRF token authenticity.
|
698
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 103)
|
699
|
+
-----------------------------------------------------------------------------
|
700
|
+
AngularRailsCsrfTest: test_a_post_is_accepted_if_X-XSRF-TOKEN_is_set_properly
|
701
|
+
-----------------------------------------------------------------------------
|
702
|
+
Processing by ApplicationController#create as HTML
|
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)
|