71 lines
1.6 KiB
Ruby
71 lines
1.6 KiB
Ruby
require 'sequel'
|
|
require 'rack/test'
|
|
require 'json'
|
|
require_relative '../../spec_helper'
|
|
|
|
def app
|
|
CartoDB::Application.new
|
|
end #app
|
|
|
|
describe Admin::TablesController do
|
|
include Rack::Test::Methods
|
|
include Warden::Test::Helpers
|
|
|
|
before(:all) do
|
|
CartoDB::Varnish.any_instance.stubs(:send_command).returns(true)
|
|
|
|
@user = FactoryGirl.create(:valid_user)
|
|
|
|
@api_key = @user.api_key
|
|
@user.stubs(:should_load_common_data?).returns(false)
|
|
end
|
|
|
|
after(:all) do
|
|
@user.destroy
|
|
end
|
|
|
|
before(:each) do
|
|
bypass_named_maps
|
|
CartoDB::Varnish.any_instance.stubs(:send_command).returns(true)
|
|
@db = SequelRails.connection
|
|
delete_user_data @user
|
|
@headers = {
|
|
'CONTENT_TYPE' => 'application/json',
|
|
}
|
|
host! "#{@user.username}.localhost.lan"
|
|
end
|
|
|
|
after(:all) do
|
|
bypass_named_maps
|
|
delete_user_data(@user)
|
|
@user.destroy
|
|
end
|
|
|
|
describe 'GET /dashboard' do
|
|
it 'returns a list of tables' do
|
|
# we use this to avoid generating the static assets in CI
|
|
Admin::VisualizationsController.any_instance.stubs(:render).returns('')
|
|
|
|
login_as(@user, scope: @user.username)
|
|
|
|
get "/dashboard", {}, @headers
|
|
last_response.status.should == 200
|
|
end
|
|
end # GET /tables
|
|
|
|
describe 'GET /tables/:id' do
|
|
it 'returns a table' do
|
|
id = factory.id
|
|
login_as(@user, scope: @user.username)
|
|
|
|
get "/tables/#{id}", {}, @headers
|
|
last_response.status.should == 200
|
|
end
|
|
end # GET /tables/:id
|
|
|
|
def factory
|
|
new_table(user_id: @user.id).save.reload
|
|
end #table_attributes
|
|
|
|
end # Admin::TablesController
|