Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix admin projects list #332

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions app/controllers/admin/projects_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Admin
class ProjectsController < Admin::ApplicationController
before_action :set_host_for_local_storage
include ActiveStorage::SetCurrent

def scoped_resource
resource_class.internal_projects
Expand All @@ -13,11 +13,5 @@ def destroy_image
image.purge
redirect_back(fallback_location: requested_resource)
end

private

def set_host_for_local_storage
ActiveStorage::Current.host = request.base_url if Rails.application.config.active_storage.service == :local
end
end
end
4 changes: 4 additions & 0 deletions spec/factories/project.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,9 @@
content_type: 'image/png')
end
end

factory :internal_project do
user_id { nil }
end
end
end
47 changes: 47 additions & 0 deletions spec/features/admin/admin_projects_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe 'Admin projects', type: :request do
let(:admin_user) { create(:admin_user) }

describe 'GET /projects' do
it 'responds 200' do
create(:project)

sign_in_as admin_user

get "/admin/projects"
expect(response).to have_http_status(:success)
end
end

describe 'GET /projects/:id' do
it 'responds 200 for an internal project' do
project = create(:internal_project)

sign_in_as admin_user

get "/admin/projects/#{project.id}"

expect(response).to have_http_status(:success)
end

it 'responds 404 for a user created project' do
project = create(:project)

sign_in_as admin_user

get "/admin/projects/#{project.id}"

expect(response).to have_http_status(:not_found)
end
end

private

def sign_in_as(user)
allow(User).to receive(:from_omniauth).and_return(admin_user)
get '/auth/callback'
end
end