* Remove pro role on user, expose pro dashboard to all users as analytics * Remove pro from Elasticsearch mappings * Update user role docs to use :trusted over :pro * Remove pro from Role model spec * Remove more references to pro, as noted by @rhymes
98 lines
3.6 KiB
Ruby
98 lines
3.6 KiB
Ruby
RSpec.shared_examples "GET /api/analytics/:endpoint authorization examples" do |endpoint, params|
|
|
let(:user) { create(:user) }
|
|
let(:api_token) { create(:api_secret, user: user) }
|
|
let(:org_member) { create(:user, :org_member) }
|
|
let(:org_member_token) { create(:api_secret, user: org_member) }
|
|
let(:org) { org_member.organizations.first }
|
|
let(:article) { create(:article, user: user) }
|
|
let(:user_article) { create(:article, user: user) }
|
|
let(:org_article) { create(:article, user: user, organization: org) }
|
|
|
|
context "when an invalid token is given" do
|
|
before { get "/api/analytics/#{endpoint}?#{params}", headers: { "api-key" => "abadskajdlsak" } }
|
|
|
|
it "renders an error message: 'unauthorized' in JSON" do
|
|
expect(response.parsed_body).to include("error" => "unauthorized")
|
|
end
|
|
|
|
it "has a status 401" do
|
|
expect(response).to have_http_status(:unauthorized)
|
|
end
|
|
end
|
|
|
|
context "when a valid token is given" do
|
|
before { get "/api/analytics/#{endpoint}?#{params}", headers: { "api-key" => api_token.secret } }
|
|
|
|
it "renders JSON as the content type" do
|
|
expect(response.media_type).to eq "application/json"
|
|
end
|
|
end
|
|
|
|
context "when attempting to view organization analytics without belonging to the organization" do
|
|
before do
|
|
headers = { "api-key" => api_token.secret }
|
|
get "/api/analytics/#{endpoint}?organization_id=#{org.id}#{params}", headers: headers
|
|
end
|
|
|
|
it "renders an error message: 'unauthorized' in JSON" do
|
|
expect(response.parsed_body).to include("error" => "unauthorized")
|
|
end
|
|
|
|
it "has a status 401" do
|
|
expect(response).to have_http_status(:unauthorized)
|
|
end
|
|
end
|
|
|
|
context "when attempting to view organization analytics and being a member of the organization" do
|
|
before do
|
|
path = "/api/analytics/#{endpoint}?organization_id=#{org_member.organization_ids.first}#{params}"
|
|
get path, headers: { "api-key" => org_member_token.secret }
|
|
end
|
|
|
|
it "renders JSON as the content type" do
|
|
expect(response.media_type).to eq "application/json"
|
|
end
|
|
end
|
|
|
|
context "when attempting to view another organization analytics and not belonging to that organization" do
|
|
it "responds with status 401 unauthorized" do
|
|
org = create(:organization)
|
|
headers = { "api-key" => org_member_token.secret }
|
|
get "/api/analytics/#{endpoint}?organization_id=#{org.id}#{params}", headers: headers
|
|
expect(response).to have_http_status(:unauthorized)
|
|
end
|
|
end
|
|
|
|
context "when attempting to view someone else's article analytics" do
|
|
it "responds with status 401 unauthorized" do
|
|
get "/api/analytics/#{endpoint}?article_id=#{article.id}#{params}"
|
|
expect(response).to have_http_status(:unauthorized)
|
|
end
|
|
end
|
|
|
|
context "when viewing as current user" do
|
|
it "responds with status 200 OK" do
|
|
sign_in user
|
|
get "/api/analytics/#{endpoint}?#{params}"
|
|
expect(response).to have_http_status(:ok)
|
|
end
|
|
end
|
|
|
|
context "when viewing your own single article's analytics" do
|
|
it "responds with status 200 OK" do
|
|
sign_in user
|
|
get "/api/analytics/#{endpoint}?article_id=#{user_article.id}#{params}"
|
|
expect(response).to have_http_status(:ok)
|
|
end
|
|
end
|
|
|
|
context "when viewing your own organizaiton's single article's analytics" do
|
|
it "responds with status 200 OK" do
|
|
org_param = "&organization_id=#{org_article.organization.id}"
|
|
|
|
sign_in org_member
|
|
get "/api/analytics/#{endpoint}?article_id=#{org_article.id}#{params}#{org_param}"
|
|
expect(response).to have_http_status(:ok)
|
|
end
|
|
end
|
|
end
|