[refs #796] group specs

This commit is contained in:
Alexander Machehin 2012-12-26 20:35:15 +06:00
parent a280007964
commit 277bfd4260
1 changed files with 58 additions and 52 deletions

View File

@ -27,58 +27,64 @@ describe ApiDefender do
@system_user = FactoryGirl.create :user, :uname => 'rosa_system'
end
it "should return the total limit" do
get "/api/v1/users/#{@user.id}.json"
response.headers['X-RateLimit-Limit'].should == @rate_limit.to_s
end
it "should return the correct limit usage for anonymous user" do
get "/api/v1/users/#{@user.id}.json"
response.headers['X-RateLimit-Remaining'].should == (@rate_limit-1).to_s
end
it "should return the correct limit usage for auth user" do
get("/api/v1/users/#{@user.id}.json", {'HTTP_AUTHORIZATION' => get_basic_auth})
response.headers['X-RateLimit-Remaining'].should == (@rate_limit-1).to_s
end
it "should return the correct limit usage for auth user after anonymous access" do
get "/api/v1/users/#{@user.id}.json"
get("/api/v1/users/#{@user.id}.json", {}, {'HTTP_AUTHORIZATION' => get_basic_auth})
response.headers['X-RateLimit-Remaining'].should == (@rate_limit-1).to_s
end
it "should return the correct limit usage for anonymous user after authenticated access" do
get("/api/v1/users/#{@user.id}.json", {}, {'HTTP_AUTHORIZATION' => get_basic_auth})
get "/api/v1/users/#{@user.id}.json"
response.headers['X-RateLimit-Remaining'].should == (@rate_limit-2).to_s
end
it "should forbidden anonymous user after exceeding limit rate" do
(@rate_limit+1).times {get "/api/v1/users/#{@user.id}.json"}
response.status.should == 403
end
it "should forbidden user after exceeding limit rate" do
(@rate_limit+1).times {get "/api/v1/users/#{@user.id}.json", {}, {'HTTP_AUTHORIZATION' => get_basic_auth}}
response.status.should == 403
end
it "should not forbidden user after exceeding limit rate of the anonymous" do
(@rate_limit+1).times {get "/api/v1/users/#{@user.id}.json"}
get("/api/v1/users/#{@user.id}.json", {}, {'HTTP_AUTHORIZATION' => get_basic_auth})
response.status.should == 200
end
it "should not return the limit usage for system user" do
get("/api/v1/users/#{@user.id}.json", {}, {'HTTP_AUTHORIZATION' => get_basic_auth(@system_user, true)})
response.headers['X-RateLimit-Limit'].should_not == @rate_limit.to_s
end
it "should not forbidden system user" do
(@rate_limit+1).times do
get "/api/v1/users/#{@user.id}.json", {}, {'HTTP_AUTHORIZATION' => get_basic_auth(@system_user, true)}
context 'for anonymous user' do
it "should return the total limit" do
get "/api/v1/users/#{@user.id}.json"
response.headers['X-RateLimit-Limit'].should == @rate_limit.to_s
end
it "should return the correct limit usage for anonymous user" do
get "/api/v1/users/#{@user.id}.json"
response.headers['X-RateLimit-Remaining'].should == (@rate_limit-1).to_s
end
it "should return the correct limit usage for anonymous user after authenticated access" do
get("/api/v1/users/#{@user.id}.json", {}, {'HTTP_AUTHORIZATION' => get_basic_auth})
get "/api/v1/users/#{@user.id}.json"
response.headers['X-RateLimit-Remaining'].should == (@rate_limit-2).to_s
end
it "should forbidden anonymous user after exceeding limit rate" do
(@rate_limit+1).times {get "/api/v1/users/#{@user.id}.json"}
response.status.should == 403
end
end
context 'for user' do
it "should return the correct limit usage for auth user" do
get("/api/v1/users/#{@user.id}.json", {'HTTP_AUTHORIZATION' => get_basic_auth})
response.headers['X-RateLimit-Remaining'].should == (@rate_limit-1).to_s
end
it "should return the correct limit usage for auth user after anonymous access" do
get "/api/v1/users/#{@user.id}.json"
get("/api/v1/users/#{@user.id}.json", {}, {'HTTP_AUTHORIZATION' => get_basic_auth})
response.headers['X-RateLimit-Remaining'].should == (@rate_limit-1).to_s
end
it "should forbidden user after exceeding limit rate" do
(@rate_limit+1).times {get "/api/v1/users/#{@user.id}.json", {}, {'HTTP_AUTHORIZATION' => get_basic_auth}}
response.status.should == 403
end
it "should not forbidden user after exceeding limit rate of the anonymous" do
(@rate_limit+1).times {get "/api/v1/users/#{@user.id}.json"}
get("/api/v1/users/#{@user.id}.json", {}, {'HTTP_AUTHORIZATION' => get_basic_auth})
response.status.should == 200
end
end
context 'for system user' do
it "should not return the limit usage for system user" do
get("/api/v1/users/#{@user.id}.json", {}, {'HTTP_AUTHORIZATION' => get_basic_auth(@system_user, true)})
response.headers['X-RateLimit-Limit'].should_not == @rate_limit.to_s
end
it "should not forbidden system user" do
(@rate_limit+1).times do
get "/api/v1/users/#{@user.id}.json", {}, {'HTTP_AUTHORIZATION' => get_basic_auth(@system_user, true)}
end
response.status.should == 200
end
response.status.should == 200
end
end