12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- require 'spec_helper'
- describe ServicesController do
- before do
- sign_in users(:bob)
- OmniAuth.config.test_mode = true
- request.env["omniauth.auth"] = JSON.parse(File.read(Rails.root.join('spec/data_fixtures/services/twitter.json')))
- end
- describe "GET index" do
- it "only returns sevices of the current user" do
- get :index
- expect(assigns(:services).all? {|i| expect(i.user).to eq(users(:bob)) }).to eq(true)
- end
- end
- describe "POST toggle_availability" do
- it "should work for service of the user" do
- post :toggle_availability, :id => services(:generic).to_param
- expect(assigns(:service)).to eq(services(:generic))
- redirect_to(services_path)
- end
- it "should not work for a service of another user" do
- expect {
- post :toggle_availability, :id => services(:global).to_param
- }.to raise_error(ActiveRecord::RecordNotFound)
- end
- end
- describe "DELETE destroy" do
- it "destroys only services owned by the current user" do
- expect {
- delete :destroy, :id => services(:generic).to_param
- }.to change(Service, :count).by(-1)
- expect {
- delete :destroy, :id => services(:global).to_param
- }.to raise_error(ActiveRecord::RecordNotFound)
- end
- end
- describe "accepting a callback url" do
- it "should update the user's credentials" do
- expect {
- get :callback, provider: 'twitter'
- }.to change { users(:bob).services.count }.by(1)
- end
- it "should work with an unknown provider (for now)" do
- request.env["omniauth.auth"]['provider'] = 'unknown'
- expect {
- get :callback, provider: 'unknown'
- }.to change { users(:bob).services.count }.by(1)
- expect(users(:bob).services.first.provider).to eq('unknown')
- end
- end
- end
|