rollout_control 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -3778,3 +3778,1419 @@ Completed 204 No Content in 0ms
3778
3778
  ------------------------------------------------
3779
3779
  RolloutControl::FeaturesControllerTest: test_wat
3780
3780
  ------------------------------------------------
3781
+ ---------------------------------------------
3782
+ RolloutControlTest: test_add_group_to_feature
3783
+ ---------------------------------------------
3784
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3785
+ Processing by RolloutControl::GroupsController#create as HTML
3786
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
3787
+ Completed 204 No Content in 0ms
3788
+ --------------------------------------------
3789
+ RolloutControlTest: test_add_user_to_feature
3790
+ --------------------------------------------
3791
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3792
+ Processing by RolloutControl::UsersController#create as HTML
3793
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
3794
+ Completed 204 No Content in 0ms
3795
+ ------------------------------------------------------------------------------
3796
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
3797
+ ------------------------------------------------------------------------------
3798
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3799
+ Processing by RolloutControl::UsersController#create as HTML
3800
+ Parameters: {"feature_id"=>"potato_gun"}
3801
+ Completed 400 Bad Request in 0ms
3802
+ -----------------------------------------------------------------------------
3803
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
3804
+ -----------------------------------------------------------------------------
3805
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3806
+ Processing by RolloutControl::GroupsController#create as HTML
3807
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
3808
+ Completed 400 Bad Request in 0ms
3809
+ -----------------------------------
3810
+ RolloutControlTest: test_basic_auth
3811
+ -----------------------------------
3812
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3813
+ Processing by RolloutControl::FeaturesController#index as HTML
3814
+ Completed 200 OK in 0ms (Views: 0.1ms)
3815
+ --------------------------------------------
3816
+ RolloutControlTest: test_list_empty_features
3817
+ --------------------------------------------
3818
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3819
+ Processing by RolloutControl::FeaturesController#index as HTML
3820
+ Completed 200 OK in 0ms (Views: 0.0ms)
3821
+ -----------------------------------------------
3822
+ RolloutControlTest: test_list_existing_features
3823
+ -----------------------------------------------
3824
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3825
+ Processing by RolloutControl::FeaturesController#index as HTML
3826
+ Completed 200 OK in 0ms (Views: 0.0ms)
3827
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3828
+ Processing by RolloutControl::FeaturesController#index as HTML
3829
+ Completed 200 OK in 0ms (Views: 0.0ms)
3830
+ --------------------------------------------------
3831
+ RolloutControlTest: test_remove_group_from_feature
3832
+ --------------------------------------------------
3833
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3834
+ Processing by RolloutControl::GroupsController#destroy as HTML
3835
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
3836
+ Completed 204 No Content in 0ms
3837
+ -------------------------------------------------
3838
+ RolloutControlTest: test_remove_user_from_feature
3839
+ -------------------------------------------------
3840
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3841
+ Processing by RolloutControl::UsersController#destroy as HTML
3842
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
3843
+ Completed 204 No Content in 0ms
3844
+ -------------------------------------
3845
+ RolloutControlTest: test_show_feature
3846
+ -------------------------------------
3847
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3848
+ Processing by RolloutControl::FeaturesController#show as HTML
3849
+ Parameters: {"id"=>"kittens"}
3850
+ Completed 200 OK in 0ms (Views: 0.1ms)
3851
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3852
+ Processing by RolloutControl::FeaturesController#show as HTML
3853
+ Parameters: {"id"=>"kittens"}
3854
+ Completed 200 OK in 0ms (Views: 0.1ms)
3855
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3856
+ Processing by RolloutControl::FeaturesController#show as HTML
3857
+ Parameters: {"id"=>"kittens"}
3858
+ Completed 200 OK in 0ms (Views: 0.1ms)
3859
+ --------------------------------------------------
3860
+ RolloutControlTest: test_update_feature_percentage
3861
+ --------------------------------------------------
3862
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:03:32 -0800
3863
+ Processing by RolloutControl::FeaturesController#update as HTML
3864
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
3865
+ Completed 204 No Content in 0ms
3866
+ ------------------------------------------------
3867
+ RolloutControl::FeaturesControllerTest: test_wat
3868
+ ------------------------------------------------
3869
+ ---------------------------------------------
3870
+ RolloutControlTest: test_add_group_to_feature
3871
+ ---------------------------------------------
3872
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3873
+ Processing by RolloutControl::GroupsController#create as HTML
3874
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
3875
+ Completed 204 No Content in 0ms
3876
+ --------------------------------------------
3877
+ RolloutControlTest: test_add_user_to_feature
3878
+ --------------------------------------------
3879
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3880
+ Processing by RolloutControl::UsersController#create as HTML
3881
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
3882
+ Completed 204 No Content in 0ms
3883
+ ------------------------------------------------------------------------------
3884
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
3885
+ ------------------------------------------------------------------------------
3886
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3887
+ Processing by RolloutControl::UsersController#create as HTML
3888
+ Parameters: {"feature_id"=>"potato_gun"}
3889
+ Completed 400 Bad Request in 0ms
3890
+ -----------------------------------------------------------------------------
3891
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
3892
+ -----------------------------------------------------------------------------
3893
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3894
+ Processing by RolloutControl::GroupsController#create as HTML
3895
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
3896
+ Completed 400 Bad Request in 0ms
3897
+ -----------------------------------
3898
+ RolloutControlTest: test_basic_auth
3899
+ -----------------------------------
3900
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3901
+ Processing by RolloutControl::FeaturesController#index as HTML
3902
+ Filter chain halted as :authenticate rendered or redirected
3903
+ Completed 401 Unauthorized in 0ms
3904
+ --------------------------------------------
3905
+ RolloutControlTest: test_list_empty_features
3906
+ --------------------------------------------
3907
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3908
+ Processing by RolloutControl::FeaturesController#index as HTML
3909
+ Completed 200 OK in 0ms (Views: 0.1ms)
3910
+ -----------------------------------------------
3911
+ RolloutControlTest: test_list_existing_features
3912
+ -----------------------------------------------
3913
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3914
+ Processing by RolloutControl::FeaturesController#index as HTML
3915
+ Completed 200 OK in 0ms (Views: 0.0ms)
3916
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3917
+ Processing by RolloutControl::FeaturesController#index as HTML
3918
+ Completed 200 OK in 0ms (Views: 0.0ms)
3919
+ --------------------------------------------------
3920
+ RolloutControlTest: test_remove_group_from_feature
3921
+ --------------------------------------------------
3922
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3923
+ Processing by RolloutControl::GroupsController#destroy as HTML
3924
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
3925
+ Completed 204 No Content in 0ms
3926
+ -------------------------------------------------
3927
+ RolloutControlTest: test_remove_user_from_feature
3928
+ -------------------------------------------------
3929
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3930
+ Processing by RolloutControl::UsersController#destroy as HTML
3931
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
3932
+ Completed 204 No Content in 0ms
3933
+ -------------------------------------
3934
+ RolloutControlTest: test_show_feature
3935
+ -------------------------------------
3936
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3937
+ Processing by RolloutControl::FeaturesController#show as HTML
3938
+ Parameters: {"id"=>"kittens"}
3939
+ Completed 200 OK in 0ms (Views: 0.1ms)
3940
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3941
+ Processing by RolloutControl::FeaturesController#show as HTML
3942
+ Parameters: {"id"=>"kittens"}
3943
+ Completed 200 OK in 0ms (Views: 0.1ms)
3944
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3945
+ Processing by RolloutControl::FeaturesController#show as HTML
3946
+ Parameters: {"id"=>"kittens"}
3947
+ Completed 200 OK in 0ms (Views: 0.1ms)
3948
+ --------------------------------------------------
3949
+ RolloutControlTest: test_update_feature_percentage
3950
+ --------------------------------------------------
3951
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:05:21 -0800
3952
+ Processing by RolloutControl::FeaturesController#update as HTML
3953
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
3954
+ Completed 204 No Content in 0ms
3955
+ ------------------------------------------------
3956
+ RolloutControl::FeaturesControllerTest: test_wat
3957
+ ------------------------------------------------
3958
+ ------------------------------------------------
3959
+ RolloutControl::FeaturesControllerTest: test_wat
3960
+ ------------------------------------------------
3961
+ ---------------------------------------------
3962
+ RolloutControlTest: test_add_group_to_feature
3963
+ ---------------------------------------------
3964
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:12:45 -0800
3965
+ Processing by RolloutControl::GroupsController#create as HTML
3966
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
3967
+ Completed 204 No Content in 0ms
3968
+ --------------------------------------------
3969
+ RolloutControlTest: test_add_user_to_feature
3970
+ --------------------------------------------
3971
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:12:45 -0800
3972
+ Processing by RolloutControl::UsersController#create as HTML
3973
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
3974
+ Completed 204 No Content in 0ms
3975
+ ------------------------------------------------------------------------------
3976
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
3977
+ ------------------------------------------------------------------------------
3978
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:12:45 -0800
3979
+ Processing by RolloutControl::UsersController#create as HTML
3980
+ Parameters: {"feature_id"=>"potato_gun"}
3981
+ Completed 400 Bad Request in 0ms
3982
+ -----------------------------------------------------------------------------
3983
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
3984
+ -----------------------------------------------------------------------------
3985
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:12:45 -0800
3986
+ Processing by RolloutControl::GroupsController#create as HTML
3987
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
3988
+ Completed 400 Bad Request in 0ms
3989
+ ------------------------------------------------------------------------
3990
+ RolloutControlTest: test_can_login_with_configured_username_and_password
3991
+ ------------------------------------------------------------------------
3992
+ --------------------------------------------
3993
+ RolloutControlTest: test_list_empty_features
3994
+ --------------------------------------------
3995
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:12:45 -0800
3996
+ Processing by RolloutControl::FeaturesController#index as HTML
3997
+ Filter chain halted as :authenticate rendered or redirected
3998
+ Completed 401 Unauthorized in 0ms
3999
+ -----------------------------------------------
4000
+ RolloutControlTest: test_list_existing_features
4001
+ -----------------------------------------------
4002
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:12:45 -0800
4003
+ Processing by RolloutControl::FeaturesController#index as HTML
4004
+ Filter chain halted as :authenticate rendered or redirected
4005
+ Completed 401 Unauthorized in 0ms
4006
+ ----------------------------------------------------
4007
+ RolloutControlTest: test_protect_API_with_basic_auth
4008
+ ----------------------------------------------------
4009
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:12:45 -0800
4010
+ Processing by RolloutControl::FeaturesController#index as HTML
4011
+ Filter chain halted as :authenticate rendered or redirected
4012
+ Completed 401 Unauthorized in 0ms
4013
+ --------------------------------------------------
4014
+ RolloutControlTest: test_remove_group_from_feature
4015
+ --------------------------------------------------
4016
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:12:45 -0800
4017
+ Processing by RolloutControl::GroupsController#destroy as HTML
4018
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
4019
+ Completed 204 No Content in 0ms
4020
+ -------------------------------------------------
4021
+ RolloutControlTest: test_remove_user_from_feature
4022
+ -------------------------------------------------
4023
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:12:45 -0800
4024
+ Processing by RolloutControl::UsersController#destroy as HTML
4025
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
4026
+ Completed 204 No Content in 0ms
4027
+ -------------------------------------
4028
+ RolloutControlTest: test_show_feature
4029
+ -------------------------------------
4030
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:12:45 -0800
4031
+ Processing by RolloutControl::FeaturesController#show as HTML
4032
+ Parameters: {"id"=>"kittens"}
4033
+ Completed 200 OK in 0ms (Views: 0.2ms)
4034
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:12:45 -0800
4035
+ Processing by RolloutControl::FeaturesController#show as HTML
4036
+ Parameters: {"id"=>"kittens"}
4037
+ Completed 200 OK in 0ms (Views: 0.1ms)
4038
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:12:45 -0800
4039
+ Processing by RolloutControl::FeaturesController#show as HTML
4040
+ Parameters: {"id"=>"kittens"}
4041
+ Completed 200 OK in 0ms (Views: 0.1ms)
4042
+ --------------------------------------------------
4043
+ RolloutControlTest: test_update_feature_percentage
4044
+ --------------------------------------------------
4045
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:12:45 -0800
4046
+ Processing by RolloutControl::FeaturesController#update as HTML
4047
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
4048
+ Completed 204 No Content in 0ms
4049
+ ---------------------------------------------
4050
+ RolloutControlTest: test_add_group_to_feature
4051
+ ---------------------------------------------
4052
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:13:12 -0800
4053
+ Processing by RolloutControl::GroupsController#create as HTML
4054
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
4055
+ Completed 204 No Content in 0ms
4056
+ --------------------------------------------
4057
+ RolloutControlTest: test_add_user_to_feature
4058
+ --------------------------------------------
4059
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:13:12 -0800
4060
+ Processing by RolloutControl::UsersController#create as HTML
4061
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
4062
+ Completed 204 No Content in 0ms
4063
+ ------------------------------------------------------------------------------
4064
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
4065
+ ------------------------------------------------------------------------------
4066
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:13:12 -0800
4067
+ Processing by RolloutControl::UsersController#create as HTML
4068
+ Parameters: {"feature_id"=>"potato_gun"}
4069
+ Completed 400 Bad Request in 0ms
4070
+ -----------------------------------------------------------------------------
4071
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
4072
+ -----------------------------------------------------------------------------
4073
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:13:12 -0800
4074
+ Processing by RolloutControl::GroupsController#create as HTML
4075
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
4076
+ Completed 400 Bad Request in 0ms
4077
+ ------------------------------------------------------------------------
4078
+ RolloutControlTest: test_can_login_with_configured_username_and_password
4079
+ ------------------------------------------------------------------------
4080
+ --------------------------------------------
4081
+ RolloutControlTest: test_list_empty_features
4082
+ --------------------------------------------
4083
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:16:53 -0800
4084
+ Processing by RolloutControl::FeaturesController#index as HTML
4085
+ Filter chain halted as :authenticate rendered or redirected
4086
+ Completed 401 Unauthorized in 0ms
4087
+ -----------------------------------------------
4088
+ RolloutControlTest: test_list_existing_features
4089
+ -----------------------------------------------
4090
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:16:53 -0800
4091
+ Processing by RolloutControl::FeaturesController#index as HTML
4092
+ Filter chain halted as :authenticate rendered or redirected
4093
+ Completed 401 Unauthorized in 0ms
4094
+ ----------------------------------------------------
4095
+ RolloutControlTest: test_protect_API_with_basic_auth
4096
+ ----------------------------------------------------
4097
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:16:53 -0800
4098
+ Processing by RolloutControl::FeaturesController#index as HTML
4099
+ Filter chain halted as :authenticate rendered or redirected
4100
+ Completed 401 Unauthorized in 0ms
4101
+ --------------------------------------------------
4102
+ RolloutControlTest: test_remove_group_from_feature
4103
+ --------------------------------------------------
4104
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:16:53 -0800
4105
+ Processing by RolloutControl::GroupsController#destroy as HTML
4106
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
4107
+ Completed 204 No Content in 0ms
4108
+ -------------------------------------------------
4109
+ RolloutControlTest: test_remove_user_from_feature
4110
+ -------------------------------------------------
4111
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:16:53 -0800
4112
+ Processing by RolloutControl::UsersController#destroy as HTML
4113
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
4114
+ Completed 204 No Content in 0ms
4115
+ -------------------------------------
4116
+ RolloutControlTest: test_show_feature
4117
+ -------------------------------------
4118
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:16:53 -0800
4119
+ Processing by RolloutControl::FeaturesController#show as HTML
4120
+ Parameters: {"id"=>"kittens"}
4121
+ Completed 200 OK in 0ms (Views: 0.2ms)
4122
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:16:53 -0800
4123
+ Processing by RolloutControl::FeaturesController#show as HTML
4124
+ Parameters: {"id"=>"kittens"}
4125
+ Completed 200 OK in 0ms (Views: 0.1ms)
4126
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:16:53 -0800
4127
+ Processing by RolloutControl::FeaturesController#show as HTML
4128
+ Parameters: {"id"=>"kittens"}
4129
+ Completed 200 OK in 0ms (Views: 0.1ms)
4130
+ --------------------------------------------------
4131
+ RolloutControlTest: test_update_feature_percentage
4132
+ --------------------------------------------------
4133
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:16:53 -0800
4134
+ Processing by RolloutControl::FeaturesController#update as HTML
4135
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
4136
+ Completed 204 No Content in 0ms
4137
+ ------------------------------------------------
4138
+ RolloutControl::FeaturesControllerTest: test_wat
4139
+ ------------------------------------------------
4140
+ ---------------------------------------------
4141
+ RolloutControlTest: test_add_group_to_feature
4142
+ ---------------------------------------------
4143
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:16:56 -0800
4144
+ Processing by RolloutControl::GroupsController#create as HTML
4145
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
4146
+ Completed 204 No Content in 0ms
4147
+ --------------------------------------------
4148
+ RolloutControlTest: test_add_user_to_feature
4149
+ --------------------------------------------
4150
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:16:56 -0800
4151
+ Processing by RolloutControl::UsersController#create as HTML
4152
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
4153
+ Completed 204 No Content in 0ms
4154
+ ------------------------------------------------------------------------------
4155
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
4156
+ ------------------------------------------------------------------------------
4157
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:16:56 -0800
4158
+ Processing by RolloutControl::UsersController#create as HTML
4159
+ Parameters: {"feature_id"=>"potato_gun"}
4160
+ Completed 400 Bad Request in 0ms
4161
+ -----------------------------------------------------------------------------
4162
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
4163
+ -----------------------------------------------------------------------------
4164
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:16:56 -0800
4165
+ Processing by RolloutControl::GroupsController#create as HTML
4166
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
4167
+ Completed 400 Bad Request in 0ms
4168
+ ------------------------------------------------------------------------
4169
+ RolloutControlTest: test_can_login_with_configured_username_and_password
4170
+ ------------------------------------------------------------------------
4171
+ --------------------------------------------
4172
+ RolloutControlTest: test_list_empty_features
4173
+ --------------------------------------------
4174
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:16:56 -0800
4175
+ Processing by RolloutControl::FeaturesController#index as HTML
4176
+ Filter chain halted as :authenticate rendered or redirected
4177
+ Completed 401 Unauthorized in 0ms
4178
+ -----------------------------------------------
4179
+ RolloutControlTest: test_list_existing_features
4180
+ -----------------------------------------------
4181
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:16:56 -0800
4182
+ Processing by RolloutControl::FeaturesController#index as HTML
4183
+ Filter chain halted as :authenticate rendered or redirected
4184
+ Completed 401 Unauthorized in 0ms
4185
+ ----------------------------------------------------
4186
+ RolloutControlTest: test_protect_API_with_basic_auth
4187
+ ----------------------------------------------------
4188
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:16:56 -0800
4189
+ Processing by RolloutControl::FeaturesController#index as HTML
4190
+ Filter chain halted as :authenticate rendered or redirected
4191
+ Completed 401 Unauthorized in 0ms
4192
+ --------------------------------------------------
4193
+ RolloutControlTest: test_remove_group_from_feature
4194
+ --------------------------------------------------
4195
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:16:56 -0800
4196
+ Processing by RolloutControl::GroupsController#destroy as HTML
4197
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
4198
+ Completed 204 No Content in 0ms
4199
+ -------------------------------------------------
4200
+ RolloutControlTest: test_remove_user_from_feature
4201
+ -------------------------------------------------
4202
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:16:56 -0800
4203
+ Processing by RolloutControl::UsersController#destroy as HTML
4204
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
4205
+ Completed 204 No Content in 0ms
4206
+ -------------------------------------
4207
+ RolloutControlTest: test_show_feature
4208
+ -------------------------------------
4209
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:16:56 -0800
4210
+ Processing by RolloutControl::FeaturesController#show as HTML
4211
+ Parameters: {"id"=>"kittens"}
4212
+ Completed 200 OK in 0ms (Views: 0.1ms)
4213
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:16:56 -0800
4214
+ Processing by RolloutControl::FeaturesController#show as HTML
4215
+ Parameters: {"id"=>"kittens"}
4216
+ Completed 200 OK in 0ms (Views: 0.1ms)
4217
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:16:56 -0800
4218
+ Processing by RolloutControl::FeaturesController#show as HTML
4219
+ Parameters: {"id"=>"kittens"}
4220
+ Completed 200 OK in 0ms (Views: 0.1ms)
4221
+ --------------------------------------------------
4222
+ RolloutControlTest: test_update_feature_percentage
4223
+ --------------------------------------------------
4224
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:16:56 -0800
4225
+ Processing by RolloutControl::FeaturesController#update as HTML
4226
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
4227
+ Completed 204 No Content in 0ms
4228
+ ------------------------------------------------
4229
+ RolloutControl::FeaturesControllerTest: test_wat
4230
+ ------------------------------------------------
4231
+ ------------------------------------------------
4232
+ RolloutControl::FeaturesControllerTest: test_wat
4233
+ ------------------------------------------------
4234
+ ---------------------------------------------
4235
+ RolloutControlTest: test_add_group_to_feature
4236
+ ---------------------------------------------
4237
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:17:21 -0800
4238
+ Processing by RolloutControl::GroupsController#create as HTML
4239
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
4240
+ Completed 204 No Content in 0ms
4241
+ --------------------------------------------
4242
+ RolloutControlTest: test_add_user_to_feature
4243
+ --------------------------------------------
4244
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:17:21 -0800
4245
+ Processing by RolloutControl::UsersController#create as HTML
4246
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
4247
+ Completed 204 No Content in 0ms
4248
+ ------------------------------------------------------------------------------
4249
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
4250
+ ------------------------------------------------------------------------------
4251
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:17:21 -0800
4252
+ Processing by RolloutControl::UsersController#create as HTML
4253
+ Parameters: {"feature_id"=>"potato_gun"}
4254
+ Completed 400 Bad Request in 0ms
4255
+ -----------------------------------------------------------------------------
4256
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
4257
+ -----------------------------------------------------------------------------
4258
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:17:21 -0800
4259
+ Processing by RolloutControl::GroupsController#create as HTML
4260
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
4261
+ Completed 400 Bad Request in 0ms
4262
+ ------------------------------------------------------------------------
4263
+ RolloutControlTest: test_can_login_with_configured_username_and_password
4264
+ ------------------------------------------------------------------------
4265
+ --------------------------------------------
4266
+ RolloutControlTest: test_list_empty_features
4267
+ --------------------------------------------
4268
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:17:35 -0800
4269
+ Processing by RolloutControl::FeaturesController#index as HTML
4270
+ Filter chain halted as :authenticate rendered or redirected
4271
+ Completed 401 Unauthorized in 0ms
4272
+ -----------------------------------------------
4273
+ RolloutControlTest: test_list_existing_features
4274
+ -----------------------------------------------
4275
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:17:35 -0800
4276
+ Processing by RolloutControl::FeaturesController#index as HTML
4277
+ Filter chain halted as :authenticate rendered or redirected
4278
+ Completed 401 Unauthorized in 0ms
4279
+ ----------------------------------------------------
4280
+ RolloutControlTest: test_protect_API_with_basic_auth
4281
+ ----------------------------------------------------
4282
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:17:35 -0800
4283
+ Processing by RolloutControl::FeaturesController#index as HTML
4284
+ Filter chain halted as :authenticate rendered or redirected
4285
+ Completed 401 Unauthorized in 0ms
4286
+ --------------------------------------------------
4287
+ RolloutControlTest: test_remove_group_from_feature
4288
+ --------------------------------------------------
4289
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:17:35 -0800
4290
+ Processing by RolloutControl::GroupsController#destroy as HTML
4291
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
4292
+ Completed 204 No Content in 0ms
4293
+ -------------------------------------------------
4294
+ RolloutControlTest: test_remove_user_from_feature
4295
+ -------------------------------------------------
4296
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:17:35 -0800
4297
+ Processing by RolloutControl::UsersController#destroy as HTML
4298
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
4299
+ Completed 204 No Content in 0ms
4300
+ -------------------------------------
4301
+ RolloutControlTest: test_show_feature
4302
+ -------------------------------------
4303
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:17:35 -0800
4304
+ Processing by RolloutControl::FeaturesController#show as HTML
4305
+ Parameters: {"id"=>"kittens"}
4306
+ Completed 200 OK in 0ms (Views: 0.2ms)
4307
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:17:35 -0800
4308
+ Processing by RolloutControl::FeaturesController#show as HTML
4309
+ Parameters: {"id"=>"kittens"}
4310
+ Completed 200 OK in 0ms (Views: 0.1ms)
4311
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:17:35 -0800
4312
+ Processing by RolloutControl::FeaturesController#show as HTML
4313
+ Parameters: {"id"=>"kittens"}
4314
+ Completed 200 OK in 0ms (Views: 0.1ms)
4315
+ --------------------------------------------------
4316
+ RolloutControlTest: test_update_feature_percentage
4317
+ --------------------------------------------------
4318
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:17:35 -0800
4319
+ Processing by RolloutControl::FeaturesController#update as HTML
4320
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
4321
+ Completed 204 No Content in 0ms
4322
+ ---------------------------------------------
4323
+ RolloutControlTest: test_add_group_to_feature
4324
+ ---------------------------------------------
4325
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:17:47 -0800
4326
+ Processing by RolloutControl::GroupsController#create as HTML
4327
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
4328
+ Completed 204 No Content in 0ms
4329
+ --------------------------------------------
4330
+ RolloutControlTest: test_add_user_to_feature
4331
+ --------------------------------------------
4332
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:17:47 -0800
4333
+ Processing by RolloutControl::UsersController#create as HTML
4334
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
4335
+ Completed 204 No Content in 0ms
4336
+ ------------------------------------------------------------------------------
4337
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
4338
+ ------------------------------------------------------------------------------
4339
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:17:47 -0800
4340
+ Processing by RolloutControl::UsersController#create as HTML
4341
+ Parameters: {"feature_id"=>"potato_gun"}
4342
+ Completed 400 Bad Request in 0ms
4343
+ -----------------------------------------------------------------------------
4344
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
4345
+ -----------------------------------------------------------------------------
4346
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:17:47 -0800
4347
+ Processing by RolloutControl::GroupsController#create as HTML
4348
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
4349
+ Completed 400 Bad Request in 0ms
4350
+ ------------------------------------------------------------------------
4351
+ RolloutControlTest: test_can_login_with_configured_username_and_password
4352
+ ------------------------------------------------------------------------
4353
+ --------------------------------------------
4354
+ RolloutControlTest: test_list_empty_features
4355
+ --------------------------------------------
4356
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:17:47 -0800
4357
+ Processing by RolloutControl::FeaturesController#index as HTML
4358
+ Filter chain halted as :authenticate rendered or redirected
4359
+ Completed 401 Unauthorized in 0ms
4360
+ -----------------------------------------------
4361
+ RolloutControlTest: test_list_existing_features
4362
+ -----------------------------------------------
4363
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:17:47 -0800
4364
+ Processing by RolloutControl::FeaturesController#index as HTML
4365
+ Filter chain halted as :authenticate rendered or redirected
4366
+ Completed 401 Unauthorized in 0ms
4367
+ ----------------------------------------------------
4368
+ RolloutControlTest: test_protect_API_with_basic_auth
4369
+ ----------------------------------------------------
4370
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:17:47 -0800
4371
+ Processing by RolloutControl::FeaturesController#index as HTML
4372
+ Filter chain halted as :authenticate rendered or redirected
4373
+ Completed 401 Unauthorized in 0ms
4374
+ --------------------------------------------------
4375
+ RolloutControlTest: test_remove_group_from_feature
4376
+ --------------------------------------------------
4377
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:17:47 -0800
4378
+ Processing by RolloutControl::GroupsController#destroy as HTML
4379
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
4380
+ Completed 204 No Content in 0ms
4381
+ -------------------------------------------------
4382
+ RolloutControlTest: test_remove_user_from_feature
4383
+ -------------------------------------------------
4384
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:17:47 -0800
4385
+ Processing by RolloutControl::UsersController#destroy as HTML
4386
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
4387
+ Completed 204 No Content in 0ms
4388
+ -------------------------------------
4389
+ RolloutControlTest: test_show_feature
4390
+ -------------------------------------
4391
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:17:47 -0800
4392
+ Processing by RolloutControl::FeaturesController#show as HTML
4393
+ Parameters: {"id"=>"kittens"}
4394
+ Completed 200 OK in 0ms (Views: 0.2ms)
4395
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:17:47 -0800
4396
+ Processing by RolloutControl::FeaturesController#show as HTML
4397
+ Parameters: {"id"=>"kittens"}
4398
+ Completed 200 OK in 0ms (Views: 0.1ms)
4399
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:17:47 -0800
4400
+ Processing by RolloutControl::FeaturesController#show as HTML
4401
+ Parameters: {"id"=>"kittens"}
4402
+ Completed 200 OK in 0ms (Views: 0.1ms)
4403
+ --------------------------------------------------
4404
+ RolloutControlTest: test_update_feature_percentage
4405
+ --------------------------------------------------
4406
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:17:47 -0800
4407
+ Processing by RolloutControl::FeaturesController#update as HTML
4408
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
4409
+ Completed 204 No Content in 0ms
4410
+ ------------------------------------------------
4411
+ RolloutControl::FeaturesControllerTest: test_wat
4412
+ ------------------------------------------------
4413
+ ---------------------------------------------
4414
+ RolloutControlTest: test_add_group_to_feature
4415
+ ---------------------------------------------
4416
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:17:59 -0800
4417
+ Processing by RolloutControl::GroupsController#create as HTML
4418
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
4419
+ Completed 204 No Content in 0ms
4420
+ --------------------------------------------
4421
+ RolloutControlTest: test_add_user_to_feature
4422
+ --------------------------------------------
4423
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:17:59 -0800
4424
+ Processing by RolloutControl::UsersController#create as HTML
4425
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
4426
+ Completed 204 No Content in 0ms
4427
+ ------------------------------------------------------------------------------
4428
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
4429
+ ------------------------------------------------------------------------------
4430
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:17:59 -0800
4431
+ Processing by RolloutControl::UsersController#create as HTML
4432
+ Parameters: {"feature_id"=>"potato_gun"}
4433
+ Completed 400 Bad Request in 0ms
4434
+ -----------------------------------------------------------------------------
4435
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
4436
+ -----------------------------------------------------------------------------
4437
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:17:59 -0800
4438
+ Processing by RolloutControl::GroupsController#create as HTML
4439
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
4440
+ Completed 400 Bad Request in 0ms
4441
+ ------------------------------------------------------------------------
4442
+ RolloutControlTest: test_can_login_with_configured_username_and_password
4443
+ ------------------------------------------------------------------------
4444
+ --------------------------------------------
4445
+ RolloutControlTest: test_list_empty_features
4446
+ --------------------------------------------
4447
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:33:47 -0800
4448
+ Processing by RolloutControl::FeaturesController#index as HTML
4449
+ Filter chain halted as :authenticate rendered or redirected
4450
+ Completed 401 Unauthorized in 0ms
4451
+ -----------------------------------------------
4452
+ RolloutControlTest: test_list_existing_features
4453
+ -----------------------------------------------
4454
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:33:47 -0800
4455
+ Processing by RolloutControl::FeaturesController#index as HTML
4456
+ Filter chain halted as :authenticate rendered or redirected
4457
+ Completed 401 Unauthorized in 0ms
4458
+ ----------------------------------------------------
4459
+ RolloutControlTest: test_protect_API_with_basic_auth
4460
+ ----------------------------------------------------
4461
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:33:47 -0800
4462
+ Processing by RolloutControl::FeaturesController#index as HTML
4463
+ Filter chain halted as :authenticate rendered or redirected
4464
+ Completed 401 Unauthorized in 0ms
4465
+ --------------------------------------------------
4466
+ RolloutControlTest: test_remove_group_from_feature
4467
+ --------------------------------------------------
4468
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:33:47 -0800
4469
+ Processing by RolloutControl::GroupsController#destroy as HTML
4470
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
4471
+ Completed 204 No Content in 0ms
4472
+ -------------------------------------------------
4473
+ RolloutControlTest: test_remove_user_from_feature
4474
+ -------------------------------------------------
4475
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:33:47 -0800
4476
+ Processing by RolloutControl::UsersController#destroy as HTML
4477
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
4478
+ Completed 204 No Content in 0ms
4479
+ -------------------------------------
4480
+ RolloutControlTest: test_show_feature
4481
+ -------------------------------------
4482
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:33:47 -0800
4483
+ Processing by RolloutControl::FeaturesController#show as HTML
4484
+ Parameters: {"id"=>"kittens"}
4485
+ Completed 200 OK in 0ms (Views: 0.2ms)
4486
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:33:47 -0800
4487
+ Processing by RolloutControl::FeaturesController#show as HTML
4488
+ Parameters: {"id"=>"kittens"}
4489
+ Completed 200 OK in 0ms (Views: 0.1ms)
4490
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:33:47 -0800
4491
+ Processing by RolloutControl::FeaturesController#show as HTML
4492
+ Parameters: {"id"=>"kittens"}
4493
+ Completed 200 OK in 0ms (Views: 0.1ms)
4494
+ --------------------------------------------------
4495
+ RolloutControlTest: test_update_feature_percentage
4496
+ --------------------------------------------------
4497
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:33:47 -0800
4498
+ Processing by RolloutControl::FeaturesController#update as HTML
4499
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
4500
+ Completed 204 No Content in 0ms
4501
+ ------------------------------------------------
4502
+ RolloutControl::FeaturesControllerTest: test_wat
4503
+ ------------------------------------------------
4504
+ ------------------------------------------------
4505
+ RolloutControl::FeaturesControllerTest: test_wat
4506
+ ------------------------------------------------
4507
+ ---------------------------------------------
4508
+ RolloutControlTest: test_add_group_to_feature
4509
+ ---------------------------------------------
4510
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4511
+ Processing by RolloutControl::GroupsController#create as HTML
4512
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
4513
+ Completed 204 No Content in 0ms
4514
+ --------------------------------------------
4515
+ RolloutControlTest: test_add_user_to_feature
4516
+ --------------------------------------------
4517
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4518
+ Processing by RolloutControl::UsersController#create as HTML
4519
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
4520
+ Completed 204 No Content in 0ms
4521
+ ------------------------------------------------------------------------------
4522
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
4523
+ ------------------------------------------------------------------------------
4524
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4525
+ Processing by RolloutControl::UsersController#create as HTML
4526
+ Parameters: {"feature_id"=>"potato_gun"}
4527
+ Completed 400 Bad Request in 0ms
4528
+ -----------------------------------------------------------------------------
4529
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
4530
+ -----------------------------------------------------------------------------
4531
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4532
+ Processing by RolloutControl::GroupsController#create as HTML
4533
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
4534
+ Completed 400 Bad Request in 0ms
4535
+ ------------------------------------------------------------------------
4536
+ RolloutControlTest: test_can_login_with_configured_username_and_password
4537
+ ------------------------------------------------------------------------
4538
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4539
+ Processing by RolloutControl::FeaturesController#index as JSON
4540
+ Completed 200 OK in 0ms (Views: 0.1ms)
4541
+ --------------------------------------------
4542
+ RolloutControlTest: test_list_empty_features
4543
+ --------------------------------------------
4544
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4545
+ Processing by RolloutControl::FeaturesController#index as HTML
4546
+ Completed 200 OK in 0ms (Views: 0.0ms)
4547
+ -----------------------------------------------
4548
+ RolloutControlTest: test_list_existing_features
4549
+ -----------------------------------------------
4550
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4551
+ Processing by RolloutControl::FeaturesController#index as HTML
4552
+ Completed 200 OK in 0ms (Views: 0.0ms)
4553
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4554
+ Processing by RolloutControl::FeaturesController#index as HTML
4555
+ Completed 200 OK in 0ms (Views: 0.0ms)
4556
+ ----------------------------------------------------
4557
+ RolloutControlTest: test_protect_API_with_basic_auth
4558
+ ----------------------------------------------------
4559
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4560
+ Processing by RolloutControl::FeaturesController#index as HTML
4561
+ Filter chain halted as :authenticate rendered or redirected
4562
+ Completed 401 Unauthorized in 0ms
4563
+ --------------------------------------------------
4564
+ RolloutControlTest: test_remove_group_from_feature
4565
+ --------------------------------------------------
4566
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4567
+ Processing by RolloutControl::GroupsController#destroy as HTML
4568
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
4569
+ Completed 204 No Content in 0ms
4570
+ -------------------------------------------------
4571
+ RolloutControlTest: test_remove_user_from_feature
4572
+ -------------------------------------------------
4573
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4574
+ Processing by RolloutControl::UsersController#destroy as HTML
4575
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
4576
+ Completed 204 No Content in 0ms
4577
+ -------------------------------------
4578
+ RolloutControlTest: test_show_feature
4579
+ -------------------------------------
4580
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4581
+ Processing by RolloutControl::FeaturesController#show as HTML
4582
+ Parameters: {"id"=>"kittens"}
4583
+ Completed 200 OK in 0ms (Views: 0.1ms)
4584
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4585
+ Processing by RolloutControl::FeaturesController#show as HTML
4586
+ Parameters: {"id"=>"kittens"}
4587
+ Completed 200 OK in 0ms (Views: 0.1ms)
4588
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4589
+ Processing by RolloutControl::FeaturesController#show as HTML
4590
+ Parameters: {"id"=>"kittens"}
4591
+ Completed 200 OK in 0ms (Views: 0.1ms)
4592
+ --------------------------------------------------
4593
+ RolloutControlTest: test_update_feature_percentage
4594
+ --------------------------------------------------
4595
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:34:15 -0800
4596
+ Processing by RolloutControl::FeaturesController#update as HTML
4597
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
4598
+ Completed 204 No Content in 0ms
4599
+ ---------------------------------------------
4600
+ RolloutControlTest: test_add_group_to_feature
4601
+ ---------------------------------------------
4602
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4603
+ Processing by RolloutControl::GroupsController#create as HTML
4604
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
4605
+ Completed 204 No Content in 0ms
4606
+ --------------------------------------------
4607
+ RolloutControlTest: test_add_user_to_feature
4608
+ --------------------------------------------
4609
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4610
+ Processing by RolloutControl::UsersController#create as HTML
4611
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
4612
+ Completed 204 No Content in 0ms
4613
+ ------------------------------------------------------------------------------
4614
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
4615
+ ------------------------------------------------------------------------------
4616
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4617
+ Processing by RolloutControl::UsersController#create as HTML
4618
+ Parameters: {"feature_id"=>"potato_gun"}
4619
+ Completed 400 Bad Request in 0ms
4620
+ -----------------------------------------------------------------------------
4621
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
4622
+ -----------------------------------------------------------------------------
4623
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4624
+ Processing by RolloutControl::GroupsController#create as HTML
4625
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
4626
+ Completed 400 Bad Request in 0ms
4627
+ ------------------------------------------------------------------------
4628
+ RolloutControlTest: test_can_login_with_configured_username_and_password
4629
+ ------------------------------------------------------------------------
4630
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4631
+ Processing by RolloutControl::FeaturesController#index as JSON
4632
+ Filter chain halted as :authenticate rendered or redirected
4633
+ Completed 401 Unauthorized in 0ms
4634
+ --------------------------------------------
4635
+ RolloutControlTest: test_list_empty_features
4636
+ --------------------------------------------
4637
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4638
+ Processing by RolloutControl::FeaturesController#index as HTML
4639
+ Filter chain halted as :authenticate rendered or redirected
4640
+ Completed 401 Unauthorized in 0ms
4641
+ -----------------------------------------------
4642
+ RolloutControlTest: test_list_existing_features
4643
+ -----------------------------------------------
4644
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4645
+ Processing by RolloutControl::FeaturesController#index as HTML
4646
+ Filter chain halted as :authenticate rendered or redirected
4647
+ Completed 401 Unauthorized in 0ms
4648
+ ----------------------------------------------------
4649
+ RolloutControlTest: test_protect_API_with_basic_auth
4650
+ ----------------------------------------------------
4651
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4652
+ Processing by RolloutControl::FeaturesController#index as HTML
4653
+ Filter chain halted as :authenticate rendered or redirected
4654
+ Completed 401 Unauthorized in 0ms
4655
+ --------------------------------------------------
4656
+ RolloutControlTest: test_remove_group_from_feature
4657
+ --------------------------------------------------
4658
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4659
+ Processing by RolloutControl::GroupsController#destroy as HTML
4660
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
4661
+ Completed 204 No Content in 0ms
4662
+ -------------------------------------------------
4663
+ RolloutControlTest: test_remove_user_from_feature
4664
+ -------------------------------------------------
4665
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4666
+ Processing by RolloutControl::UsersController#destroy as HTML
4667
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
4668
+ Completed 204 No Content in 0ms
4669
+ -------------------------------------
4670
+ RolloutControlTest: test_show_feature
4671
+ -------------------------------------
4672
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4673
+ Processing by RolloutControl::FeaturesController#show as HTML
4674
+ Parameters: {"id"=>"kittens"}
4675
+ Completed 200 OK in 0ms (Views: 0.2ms)
4676
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4677
+ Processing by RolloutControl::FeaturesController#show as HTML
4678
+ Parameters: {"id"=>"kittens"}
4679
+ Completed 200 OK in 0ms (Views: 0.1ms)
4680
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4681
+ Processing by RolloutControl::FeaturesController#show as HTML
4682
+ Parameters: {"id"=>"kittens"}
4683
+ Completed 200 OK in 0ms (Views: 0.1ms)
4684
+ --------------------------------------------------
4685
+ RolloutControlTest: test_update_feature_percentage
4686
+ --------------------------------------------------
4687
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:34:40 -0800
4688
+ Processing by RolloutControl::FeaturesController#update as HTML
4689
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
4690
+ Completed 204 No Content in 0ms
4691
+ ------------------------------------------------
4692
+ RolloutControl::FeaturesControllerTest: test_wat
4693
+ ------------------------------------------------
4694
+ ------------------------------------------------
4695
+ RolloutControl::FeaturesControllerTest: test_wat
4696
+ ------------------------------------------------
4697
+ ---------------------------------------------
4698
+ RolloutControlTest: test_add_group_to_feature
4699
+ ---------------------------------------------
4700
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4701
+ Processing by RolloutControl::GroupsController#create as HTML
4702
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
4703
+ Completed 204 No Content in 0ms
4704
+ --------------------------------------------
4705
+ RolloutControlTest: test_add_user_to_feature
4706
+ --------------------------------------------
4707
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4708
+ Processing by RolloutControl::UsersController#create as HTML
4709
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
4710
+ Completed 204 No Content in 0ms
4711
+ ------------------------------------------------------------------------------
4712
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
4713
+ ------------------------------------------------------------------------------
4714
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4715
+ Processing by RolloutControl::UsersController#create as HTML
4716
+ Parameters: {"feature_id"=>"potato_gun"}
4717
+ Completed 400 Bad Request in 0ms
4718
+ -----------------------------------------------------------------------------
4719
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
4720
+ -----------------------------------------------------------------------------
4721
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4722
+ Processing by RolloutControl::GroupsController#create as HTML
4723
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
4724
+ Completed 400 Bad Request in 0ms
4725
+ ------------------------------------------------------------------------
4726
+ RolloutControlTest: test_can_login_with_configured_username_and_password
4727
+ ------------------------------------------------------------------------
4728
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4729
+ Processing by RolloutControl::FeaturesController#index as JSON
4730
+ Completed 200 OK in 0ms (Views: 0.1ms)
4731
+ --------------------------------------------
4732
+ RolloutControlTest: test_list_empty_features
4733
+ --------------------------------------------
4734
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4735
+ Processing by RolloutControl::FeaturesController#index as HTML
4736
+ Completed 200 OK in 0ms (Views: 0.1ms)
4737
+ -----------------------------------------------
4738
+ RolloutControlTest: test_list_existing_features
4739
+ -----------------------------------------------
4740
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4741
+ Processing by RolloutControl::FeaturesController#index as HTML
4742
+ Completed 200 OK in 0ms (Views: 0.0ms)
4743
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4744
+ Processing by RolloutControl::FeaturesController#index as HTML
4745
+ Completed 200 OK in 0ms (Views: 0.0ms)
4746
+ ----------------------------------------------------
4747
+ RolloutControlTest: test_protect_API_with_basic_auth
4748
+ ----------------------------------------------------
4749
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4750
+ Processing by RolloutControl::FeaturesController#index as HTML
4751
+ Filter chain halted as :authenticate rendered or redirected
4752
+ Completed 401 Unauthorized in 0ms
4753
+ --------------------------------------------------
4754
+ RolloutControlTest: test_remove_group_from_feature
4755
+ --------------------------------------------------
4756
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4757
+ Processing by RolloutControl::GroupsController#destroy as HTML
4758
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
4759
+ Completed 204 No Content in 0ms
4760
+ -------------------------------------------------
4761
+ RolloutControlTest: test_remove_user_from_feature
4762
+ -------------------------------------------------
4763
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4764
+ Processing by RolloutControl::UsersController#destroy as HTML
4765
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
4766
+ Completed 204 No Content in 0ms
4767
+ -------------------------------------
4768
+ RolloutControlTest: test_show_feature
4769
+ -------------------------------------
4770
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4771
+ Processing by RolloutControl::FeaturesController#show as HTML
4772
+ Parameters: {"id"=>"kittens"}
4773
+ Completed 200 OK in 0ms (Views: 0.1ms)
4774
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4775
+ Processing by RolloutControl::FeaturesController#show as HTML
4776
+ Parameters: {"id"=>"kittens"}
4777
+ Completed 200 OK in 0ms (Views: 0.1ms)
4778
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4779
+ Processing by RolloutControl::FeaturesController#show as HTML
4780
+ Parameters: {"id"=>"kittens"}
4781
+ Completed 200 OK in 0ms (Views: 0.1ms)
4782
+ --------------------------------------------------
4783
+ RolloutControlTest: test_update_feature_percentage
4784
+ --------------------------------------------------
4785
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:34:56 -0800
4786
+ Processing by RolloutControl::FeaturesController#update as HTML
4787
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
4788
+ Completed 204 No Content in 0ms
4789
+ ------------------------------------------------
4790
+ RolloutControl::FeaturesControllerTest: test_wat
4791
+ ------------------------------------------------
4792
+ ---------------------------------------------
4793
+ RolloutControlTest: test_add_group_to_feature
4794
+ ---------------------------------------------
4795
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4796
+ Processing by RolloutControl::GroupsController#create as HTML
4797
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
4798
+ Completed 204 No Content in 0ms
4799
+ --------------------------------------------
4800
+ RolloutControlTest: test_add_user_to_feature
4801
+ --------------------------------------------
4802
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4803
+ Processing by RolloutControl::UsersController#create as HTML
4804
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
4805
+ Completed 204 No Content in 0ms
4806
+ ------------------------------------------------------------------------------
4807
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
4808
+ ------------------------------------------------------------------------------
4809
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4810
+ Processing by RolloutControl::UsersController#create as HTML
4811
+ Parameters: {"feature_id"=>"potato_gun"}
4812
+ Completed 400 Bad Request in 0ms
4813
+ -----------------------------------------------------------------------------
4814
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
4815
+ -----------------------------------------------------------------------------
4816
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4817
+ Processing by RolloutControl::GroupsController#create as HTML
4818
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
4819
+ Completed 400 Bad Request in 0ms
4820
+ ------------------------------------------------------------------------
4821
+ RolloutControlTest: test_can_login_with_configured_username_and_password
4822
+ ------------------------------------------------------------------------
4823
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4824
+ Processing by RolloutControl::FeaturesController#index as JSON
4825
+ Completed 200 OK in 0ms (Views: 0.1ms)
4826
+ --------------------------------------------
4827
+ RolloutControlTest: test_list_empty_features
4828
+ --------------------------------------------
4829
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4830
+ Processing by RolloutControl::FeaturesController#index as HTML
4831
+ Completed 200 OK in 0ms (Views: 0.0ms)
4832
+ -----------------------------------------------
4833
+ RolloutControlTest: test_list_existing_features
4834
+ -----------------------------------------------
4835
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4836
+ Processing by RolloutControl::FeaturesController#index as HTML
4837
+ Completed 200 OK in 0ms (Views: 0.0ms)
4838
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4839
+ Processing by RolloutControl::FeaturesController#index as HTML
4840
+ Completed 200 OK in 0ms (Views: 0.0ms)
4841
+ ----------------------------------------------------
4842
+ RolloutControlTest: test_protect_API_with_basic_auth
4843
+ ----------------------------------------------------
4844
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4845
+ Processing by RolloutControl::FeaturesController#index as HTML
4846
+ Filter chain halted as :authenticate rendered or redirected
4847
+ Completed 401 Unauthorized in 0ms
4848
+ --------------------------------------------------
4849
+ RolloutControlTest: test_remove_group_from_feature
4850
+ --------------------------------------------------
4851
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4852
+ Processing by RolloutControl::GroupsController#destroy as HTML
4853
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
4854
+ Completed 204 No Content in 0ms
4855
+ -------------------------------------------------
4856
+ RolloutControlTest: test_remove_user_from_feature
4857
+ -------------------------------------------------
4858
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4859
+ Processing by RolloutControl::UsersController#destroy as HTML
4860
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
4861
+ Completed 204 No Content in 0ms
4862
+ -------------------------------------
4863
+ RolloutControlTest: test_show_feature
4864
+ -------------------------------------
4865
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4866
+ Processing by RolloutControl::FeaturesController#show as HTML
4867
+ Parameters: {"id"=>"kittens"}
4868
+ Completed 200 OK in 0ms (Views: 0.1ms)
4869
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4870
+ Processing by RolloutControl::FeaturesController#show as HTML
4871
+ Parameters: {"id"=>"kittens"}
4872
+ Completed 200 OK in 0ms (Views: 0.1ms)
4873
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4874
+ Processing by RolloutControl::FeaturesController#show as HTML
4875
+ Parameters: {"id"=>"kittens"}
4876
+ Completed 200 OK in 0ms (Views: 0.1ms)
4877
+ ------------------------------------------------------------------------------------
4878
+ RolloutControlTest: test_unset_basic_auth_username_and_password_does_not_allow_login
4879
+ ------------------------------------------------------------------------------------
4880
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4881
+ Processing by RolloutControl::FeaturesController#index as JSON
4882
+ Filter chain halted as :authenticate rendered or redirected
4883
+ Completed 401 Unauthorized in 0ms
4884
+ --------------------------------------------------
4885
+ RolloutControlTest: test_update_feature_percentage
4886
+ --------------------------------------------------
4887
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:37:04 -0800
4888
+ Processing by RolloutControl::FeaturesController#update as HTML
4889
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
4890
+ Completed 204 No Content in 0ms
4891
+ ---------------------------------------------
4892
+ RolloutControlTest: test_add_group_to_feature
4893
+ ---------------------------------------------
4894
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4895
+ Processing by RolloutControl::GroupsController#create as HTML
4896
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
4897
+ Completed 204 No Content in 0ms
4898
+ --------------------------------------------
4899
+ RolloutControlTest: test_add_user_to_feature
4900
+ --------------------------------------------
4901
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4902
+ Processing by RolloutControl::UsersController#create as HTML
4903
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
4904
+ Completed 204 No Content in 0ms
4905
+ ------------------------------------------------------------------------------
4906
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
4907
+ ------------------------------------------------------------------------------
4908
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4909
+ Processing by RolloutControl::UsersController#create as HTML
4910
+ Parameters: {"feature_id"=>"potato_gun"}
4911
+ Completed 400 Bad Request in 0ms
4912
+ -----------------------------------------------------------------------------
4913
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
4914
+ -----------------------------------------------------------------------------
4915
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4916
+ Processing by RolloutControl::GroupsController#create as HTML
4917
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
4918
+ Completed 400 Bad Request in 0ms
4919
+ ------------------------------------------------------------------------
4920
+ RolloutControlTest: test_can_login_with_configured_username_and_password
4921
+ ------------------------------------------------------------------------
4922
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4923
+ Processing by RolloutControl::FeaturesController#index as JSON
4924
+ Completed 200 OK in 0ms (Views: 0.1ms)
4925
+ --------------------------------------------
4926
+ RolloutControlTest: test_list_empty_features
4927
+ --------------------------------------------
4928
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4929
+ Processing by RolloutControl::FeaturesController#index as HTML
4930
+ Completed 200 OK in 0ms (Views: 0.1ms)
4931
+ -----------------------------------------------
4932
+ RolloutControlTest: test_list_existing_features
4933
+ -----------------------------------------------
4934
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4935
+ Processing by RolloutControl::FeaturesController#index as HTML
4936
+ Completed 200 OK in 0ms (Views: 0.0ms)
4937
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4938
+ Processing by RolloutControl::FeaturesController#index as HTML
4939
+ Completed 200 OK in 0ms (Views: 0.0ms)
4940
+ ----------------------------------------------------
4941
+ RolloutControlTest: test_protect_API_with_basic_auth
4942
+ ----------------------------------------------------
4943
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4944
+ Processing by RolloutControl::FeaturesController#index as HTML
4945
+ Filter chain halted as :authenticate rendered or redirected
4946
+ Completed 401 Unauthorized in 0ms
4947
+ --------------------------------------------------
4948
+ RolloutControlTest: test_remove_group_from_feature
4949
+ --------------------------------------------------
4950
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4951
+ Processing by RolloutControl::GroupsController#destroy as HTML
4952
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
4953
+ Completed 204 No Content in 0ms
4954
+ -------------------------------------------------
4955
+ RolloutControlTest: test_remove_user_from_feature
4956
+ -------------------------------------------------
4957
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4958
+ Processing by RolloutControl::UsersController#destroy as HTML
4959
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
4960
+ Completed 204 No Content in 0ms
4961
+ -------------------------------------
4962
+ RolloutControlTest: test_show_feature
4963
+ -------------------------------------
4964
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4965
+ Processing by RolloutControl::FeaturesController#show as HTML
4966
+ Parameters: {"id"=>"kittens"}
4967
+ Completed 200 OK in 0ms (Views: 0.1ms)
4968
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4969
+ Processing by RolloutControl::FeaturesController#show as HTML
4970
+ Parameters: {"id"=>"kittens"}
4971
+ Completed 200 OK in 0ms (Views: 0.1ms)
4972
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4973
+ Processing by RolloutControl::FeaturesController#show as HTML
4974
+ Parameters: {"id"=>"kittens"}
4975
+ Completed 200 OK in 0ms (Views: 0.1ms)
4976
+ ------------------------------------------------------------------------------------
4977
+ RolloutControlTest: test_unset_basic_auth_username_and_password_does_not_allow_login
4978
+ ------------------------------------------------------------------------------------
4979
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4980
+ Processing by RolloutControl::FeaturesController#index as JSON
4981
+ Filter chain halted as :authenticate rendered or redirected
4982
+ Completed 401 Unauthorized in 0ms
4983
+ --------------------------------------------------
4984
+ RolloutControlTest: test_update_feature_percentage
4985
+ --------------------------------------------------
4986
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:37:52 -0800
4987
+ Processing by RolloutControl::FeaturesController#update as HTML
4988
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
4989
+ Completed 204 No Content in 0ms
4990
+ ------------------------------------------------
4991
+ RolloutControl::FeaturesControllerTest: test_wat
4992
+ ------------------------------------------------
4993
+ ---------------------------------------------
4994
+ RolloutControlTest: test_add_group_to_feature
4995
+ ---------------------------------------------
4996
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
4997
+ Processing by RolloutControl::GroupsController#create as HTML
4998
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
4999
+ Completed 204 No Content in 0ms
5000
+ --------------------------------------------
5001
+ RolloutControlTest: test_add_user_to_feature
5002
+ --------------------------------------------
5003
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5004
+ Processing by RolloutControl::UsersController#create as HTML
5005
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
5006
+ Completed 204 No Content in 0ms
5007
+ ------------------------------------------------------------------------------
5008
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
5009
+ ------------------------------------------------------------------------------
5010
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5011
+ Processing by RolloutControl::UsersController#create as HTML
5012
+ Parameters: {"feature_id"=>"potato_gun"}
5013
+ Completed 400 Bad Request in 0ms
5014
+ -----------------------------------------------------------------------------
5015
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
5016
+ -----------------------------------------------------------------------------
5017
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5018
+ Processing by RolloutControl::GroupsController#create as HTML
5019
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
5020
+ Completed 400 Bad Request in 0ms
5021
+ ------------------------------------------------------------------------
5022
+ RolloutControlTest: test_can_login_with_configured_username_and_password
5023
+ ------------------------------------------------------------------------
5024
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5025
+ Processing by RolloutControl::FeaturesController#index as JSON
5026
+ Completed 200 OK in 0ms (Views: 0.1ms)
5027
+ --------------------------------------------
5028
+ RolloutControlTest: test_list_empty_features
5029
+ --------------------------------------------
5030
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5031
+ Processing by RolloutControl::FeaturesController#index as HTML
5032
+ Completed 200 OK in 0ms (Views: 0.0ms)
5033
+ -----------------------------------------------
5034
+ RolloutControlTest: test_list_existing_features
5035
+ -----------------------------------------------
5036
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5037
+ Processing by RolloutControl::FeaturesController#index as HTML
5038
+ Completed 200 OK in 0ms (Views: 0.0ms)
5039
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5040
+ Processing by RolloutControl::FeaturesController#index as HTML
5041
+ Completed 200 OK in 0ms (Views: 0.0ms)
5042
+ ----------------------------------------------------
5043
+ RolloutControlTest: test_protect_API_with_basic_auth
5044
+ ----------------------------------------------------
5045
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5046
+ Processing by RolloutControl::FeaturesController#index as HTML
5047
+ Filter chain halted as :authenticate rendered or redirected
5048
+ Completed 401 Unauthorized in 0ms
5049
+ --------------------------------------------------
5050
+ RolloutControlTest: test_remove_group_from_feature
5051
+ --------------------------------------------------
5052
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5053
+ Processing by RolloutControl::GroupsController#destroy as HTML
5054
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
5055
+ Completed 204 No Content in 0ms
5056
+ -------------------------------------------------
5057
+ RolloutControlTest: test_remove_user_from_feature
5058
+ -------------------------------------------------
5059
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5060
+ Processing by RolloutControl::UsersController#destroy as HTML
5061
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
5062
+ Completed 204 No Content in 0ms
5063
+ -------------------------------------
5064
+ RolloutControlTest: test_show_feature
5065
+ -------------------------------------
5066
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5067
+ Processing by RolloutControl::FeaturesController#show as HTML
5068
+ Parameters: {"id"=>"kittens"}
5069
+ Completed 200 OK in 0ms (Views: 0.1ms)
5070
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5071
+ Processing by RolloutControl::FeaturesController#show as HTML
5072
+ Parameters: {"id"=>"kittens"}
5073
+ Completed 200 OK in 0ms (Views: 0.1ms)
5074
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5075
+ Processing by RolloutControl::FeaturesController#show as HTML
5076
+ Parameters: {"id"=>"kittens"}
5077
+ Completed 200 OK in 0ms (Views: 0.1ms)
5078
+ ------------------------------------------------------------------------------------
5079
+ RolloutControlTest: test_unset_basic_auth_username_and_password_does_not_allow_login
5080
+ ------------------------------------------------------------------------------------
5081
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5082
+ Processing by RolloutControl::FeaturesController#index as JSON
5083
+ Filter chain halted as :authenticate rendered or redirected
5084
+ Completed 401 Unauthorized in 0ms
5085
+ --------------------------------------------------
5086
+ RolloutControlTest: test_update_feature_percentage
5087
+ --------------------------------------------------
5088
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:44:11 -0800
5089
+ Processing by RolloutControl::FeaturesController#update as HTML
5090
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
5091
+ Completed 204 No Content in 0ms
5092
+ ------------------------------------------------
5093
+ RolloutControl::FeaturesControllerTest: test_wat
5094
+ ------------------------------------------------
5095
+ ---------------------------------------------
5096
+ RolloutControlTest: test_add_group_to_feature
5097
+ ---------------------------------------------
5098
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5099
+ Processing by RolloutControl::GroupsController#create as HTML
5100
+ Parameters: {"group"=>"experienced_chefs", "feature_id"=>"extra_sharp_knives"}
5101
+ Completed 204 No Content in 0ms
5102
+ --------------------------------------------
5103
+ RolloutControlTest: test_add_user_to_feature
5104
+ --------------------------------------------
5105
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5106
+ Processing by RolloutControl::UsersController#create as HTML
5107
+ Parameters: {"user_id"=>"45", "feature_id"=>"potato_gun"}
5108
+ Completed 204 No Content in 0ms
5109
+ ------------------------------------------------------------------------------
5110
+ RolloutControlTest: test_attempt_to_activate_user_to_feature_without_a_user_id
5111
+ ------------------------------------------------------------------------------
5112
+ Started POST "/rollout/features/potato_gun/users" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5113
+ Processing by RolloutControl::UsersController#create as HTML
5114
+ Parameters: {"feature_id"=>"potato_gun"}
5115
+ Completed 400 Bad Request in 0ms
5116
+ -----------------------------------------------------------------------------
5117
+ RolloutControlTest: test_attempt_to_add_group_to_feature_without_a_group_name
5118
+ -----------------------------------------------------------------------------
5119
+ Started POST "/rollout/features/extra_sharp_knives/groups" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5120
+ Processing by RolloutControl::GroupsController#create as HTML
5121
+ Parameters: {"feature_id"=>"extra_sharp_knives"}
5122
+ Completed 400 Bad Request in 0ms
5123
+ ------------------------------------------------------------------------
5124
+ RolloutControlTest: test_can_login_with_configured_username_and_password
5125
+ ------------------------------------------------------------------------
5126
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5127
+ Processing by RolloutControl::FeaturesController#index as JSON
5128
+ Completed 200 OK in 4ms (Views: 3.7ms)
5129
+ --------------------------------------------
5130
+ RolloutControlTest: test_list_empty_features
5131
+ --------------------------------------------
5132
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5133
+ Processing by RolloutControl::FeaturesController#index as HTML
5134
+ Completed 200 OK in 0ms (Views: 0.1ms)
5135
+ -----------------------------------------------
5136
+ RolloutControlTest: test_list_existing_features
5137
+ -----------------------------------------------
5138
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5139
+ Processing by RolloutControl::FeaturesController#index as HTML
5140
+ Completed 200 OK in 0ms (Views: 0.0ms)
5141
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5142
+ Processing by RolloutControl::FeaturesController#index as HTML
5143
+ Completed 200 OK in 0ms (Views: 0.0ms)
5144
+ ----------------------------------------------------
5145
+ RolloutControlTest: test_protect_API_with_basic_auth
5146
+ ----------------------------------------------------
5147
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5148
+ Processing by RolloutControl::FeaturesController#index as HTML
5149
+ Filter chain halted as :authenticate rendered or redirected
5150
+ Completed 401 Unauthorized in 0ms
5151
+ --------------------------------------------------
5152
+ RolloutControlTest: test_remove_group_from_feature
5153
+ --------------------------------------------------
5154
+ Started DELETE "/rollout/features/extra_sharp_knives/groups/experienced_chefs" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5155
+ Processing by RolloutControl::GroupsController#destroy as HTML
5156
+ Parameters: {"feature_id"=>"extra_sharp_knives", "id"=>"experienced_chefs"}
5157
+ Completed 204 No Content in 0ms
5158
+ -------------------------------------------------
5159
+ RolloutControlTest: test_remove_user_from_feature
5160
+ -------------------------------------------------
5161
+ Started DELETE "/rollout/features/potato_gun/users/45" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5162
+ Processing by RolloutControl::UsersController#destroy as HTML
5163
+ Parameters: {"feature_id"=>"potato_gun", "id"=>"45"}
5164
+ Completed 204 No Content in 0ms
5165
+ -------------------------------------
5166
+ RolloutControlTest: test_show_feature
5167
+ -------------------------------------
5168
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5169
+ Processing by RolloutControl::FeaturesController#show as HTML
5170
+ Parameters: {"id"=>"kittens"}
5171
+ Completed 200 OK in 0ms (Views: 0.1ms)
5172
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5173
+ Processing by RolloutControl::FeaturesController#show as HTML
5174
+ Parameters: {"id"=>"kittens"}
5175
+ Completed 200 OK in 0ms (Views: 0.1ms)
5176
+ Started GET "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5177
+ Processing by RolloutControl::FeaturesController#show as HTML
5178
+ Parameters: {"id"=>"kittens"}
5179
+ Completed 200 OK in 0ms (Views: 0.1ms)
5180
+ ------------------------------------------------------------------------------------
5181
+ RolloutControlTest: test_unset_basic_auth_username_and_password_does_not_allow_login
5182
+ ------------------------------------------------------------------------------------
5183
+ Started GET "/rollout/features" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5184
+ Processing by RolloutControl::FeaturesController#index as JSON
5185
+ Filter chain halted as :authenticate rendered or redirected
5186
+ Completed 401 Unauthorized in 0ms
5187
+ --------------------------------------------------
5188
+ RolloutControlTest: test_update_feature_percentage
5189
+ --------------------------------------------------
5190
+ Started PATCH "/rollout/features/kittens" for 127.0.0.1 at 2014-11-12 13:45:12 -0800
5191
+ Processing by RolloutControl::FeaturesController#update as HTML
5192
+ Parameters: {"percentage"=>"65", "id"=>"kittens"}
5193
+ Completed 204 No Content in 0ms
5194
+ ------------------------------------------------
5195
+ RolloutControl::FeaturesControllerTest: test_wat
5196
+ ------------------------------------------------