57 lines
1.3 KiB
Ruby
57 lines
1.3 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe Admin::ApiController do
|
|
|
|
it "is a subclass of AdminController" do
|
|
(Admin::ApiController < Admin::AdminController).should be_true
|
|
end
|
|
|
|
let!(:user) { log_in(:admin) }
|
|
|
|
context '.index' do
|
|
it "succeeds" do
|
|
xhr :get, :index
|
|
response.should be_success
|
|
end
|
|
end
|
|
|
|
context '.regenerate_key' do
|
|
let(:api_key) { Fabricate(:api_key) }
|
|
|
|
it "returns 404 when there is no key" do
|
|
xhr :put, :regenerate_key, id: 1234
|
|
response.should_not be_success
|
|
response.status.should == 404
|
|
end
|
|
|
|
it "delegates to the api key's `regenerate!` method" do
|
|
ApiKey.any_instance.expects(:regenerate!)
|
|
xhr :put, :regenerate_key, id: api_key.id
|
|
end
|
|
end
|
|
|
|
context '.revoke_key' do
|
|
let(:api_key) { Fabricate(:api_key) }
|
|
|
|
it "returns 404 when there is no key" do
|
|
xhr :delete, :revoke_key, id: 1234
|
|
response.should_not be_success
|
|
response.status.should == 404
|
|
end
|
|
|
|
it "delegates to the api key's `regenerate!` method" do
|
|
ApiKey.any_instance.expects(:destroy)
|
|
xhr :delete, :revoke_key, id: api_key.id
|
|
end
|
|
end
|
|
|
|
context '.create_master_key' do
|
|
it "creates a record" do
|
|
lambda {
|
|
xhr :post, :create_master_key
|
|
}.should change(ApiKey, :count).by(1)
|
|
end
|
|
end
|
|
|
|
end
|