3843cab643
* update Gemfile to rails 5 and ruby 2.3.0 * fiddle with javascripts and add sprockets manifest file * update config directory for rails 5 * fix some errors with controllers/serializers * fix travis and rspec * new serializers renamed to serializers * module Api::V1 * reusable embedding code * add index/collections/paging. overriding most of snorlax now |:) * raml api documentation + rspec tests to verify schemas/examples * add sorting by ?sort and searching by ?q. Add pagination Link headers * api v1 => v2 * fill out synapse api * alphabetize map policy * fix page thing * fill out maps api * formParameters => properties, and fiddle with map api * more raml 1.0 stuff i'm learning about * deprecate v1 api * rails 5 uses ApplicationRecord class for app-wide model config * Update topic spec for api v2 * workaround for user_preference.rb issue * get ready for token api docs. also TODO is mapping api docs * spec out mapping api * map/mapping/synapse spec, plus other bugs * awesome, token specs/apis are done * add sanity checks to the api tests * more cleanup * devise fix * fix starred map error
80 lines
2.1 KiB
Ruby
80 lines
2.1 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe MappingsController, type: :controller do
|
|
let(:user) { create(:user) }
|
|
let!(:mapping) { create(:mapping, user: user) }
|
|
let(:valid_attributes) { mapping.attributes.except('id') }
|
|
let(:invalid_attributes) { { id: mapping.id } }
|
|
before :each do
|
|
sign_in user
|
|
end
|
|
|
|
describe 'POST #create' do
|
|
context 'with valid params' do
|
|
it 'creates a new Mapping' do
|
|
expect do
|
|
post :create, params: {
|
|
mapping: valid_attributes
|
|
}
|
|
end.to change(Mapping, :count).by(1)
|
|
end
|
|
|
|
it 'assigns a newly created mapping as @mapping' do
|
|
post :create, params: {
|
|
mapping: valid_attributes
|
|
}
|
|
expect(comparable(Mapping.last)).to eq comparable(mapping)
|
|
end
|
|
end
|
|
|
|
context 'with invalid params' do
|
|
it 'assigns a newly created but unsaved mapping as @mapping' do
|
|
post :create, params: {
|
|
mapping: invalid_attributes
|
|
}
|
|
# for some reason, the first mapping is still persisted
|
|
# TODO: fixme??
|
|
expect(Mapping.count).to eq 1
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'PUT #update' do
|
|
context 'with valid params' do
|
|
let(:new_attributes) { build(:mapping_random_location).attributes.except('id') }
|
|
|
|
it 'updates the requested mapping' do
|
|
put :update, params: {
|
|
id: mapping.to_param, mapping: new_attributes
|
|
}
|
|
mapping.reload
|
|
end
|
|
|
|
it 'assigns the requested mapping as @mapping' do
|
|
put :update, params: {
|
|
id: mapping.to_param, mapping: valid_attributes
|
|
}
|
|
expect(Mapping.last).to eq mapping
|
|
end
|
|
end
|
|
|
|
context 'with invalid params' do
|
|
it 'assigns the mapping as @mapping' do
|
|
put :update, params: {
|
|
id: mapping.to_param, mapping: invalid_attributes
|
|
}
|
|
expect(Mapping.last).to eq mapping
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'DELETE #destroy' do
|
|
it 'destroys the requested mapping' do
|
|
expect do
|
|
delete :destroy, params: {
|
|
id: mapping.to_param
|
|
}
|
|
end.to change(Mapping, :count).by(-1)
|
|
end
|
|
end
|
|
end
|