# frozen_string_literal: true require "spec_helper" describe Api::V1::ConversationsController do let(:auth) { FactoryGirl.create(:auth_with_read_and_write) } let!(:access_token) { auth.create_access_token.to_s } let(:auth_participant) { FactoryGirl.create(:auth_with_read_and_write) } let!(:access_token_participant) { auth_participant.create_access_token.to_s } before do auth.user.share_with bob.person, auth.user.aspects[0] auth.user.share_with alice.person, auth.user.aspects[0] alice.share_with auth.user.person, alice.aspects[0] @conversation = { author_id: auth.user.id, subject: "new conversation", body: "first message", recipients: [alice.person.id], access_token: access_token } end describe "#create" do context "with valid data" do it "creates the conversation" do post api_v1_conversations_path, params: @conversation @conversation_guid = JSON.parse(response.body)["conversation"]["guid"] conversation = JSON.parse(response.body)["conversation"] expect(response.status).to eq 201 expect(conversation["guid"]).to_not be_nil expect(conversation["subject"]).to eq @conversation[:subject] expect(conversation["created_at"]).to_not be_nil expect(conversation["participants"].length).to eq 2 conversation_service.find!(@conversation_guid) end end context "without valid data" do it "fails at creating the conversation" do post api_v1_conversations_path, params: {access_token: access_token} expect(response.status).to eq 422 end end end describe "#index" do before do post api_v1_conversations_path, params: @conversation post api_v1_conversations_path, params: @conversation sleep(1) post api_v1_conversations_path, params: @conversation conversation_guid = JSON.parse(response.body)["conversation"]["guid"] conversation = conversation_service.find!(conversation_guid) conversation.conversation_visibilities[0].unread = 1 conversation.conversation_visibilities[0].save! conversation.conversation_visibilities[1].unread = 1 conversation.conversation_visibilities[1].save! @date = conversation.created_at end it "returns all the user conversations" do get api_v1_conversations_path, params: {access_token: access_token} expect(response.status).to eq 200 expect(JSON.parse(response.body).length).to eq 3 end it "returns all the user unread conversations" do get( api_v1_conversations_path, params: {unread: true, access_token: access_token} ) expect(response.status).to eq 200 expect(JSON.parse(response.body).length).to eq 2 end it "returns all the user conversations after a given date" do get( api_v1_conversations_path, params: {only_after: @date, access_token: access_token} ) expect(response.status).to eq 200 expect(JSON.parse(response.body).length).to eq 1 end end describe "#show" do context "valid conversation ID" do before do post api_v1_conversations_path, params: @conversation end it "returns the corresponding conversation" do conversation_guid = JSON.parse(response.body)["conversation"]["guid"] get( api_v1_conversation_path(conversation_guid), params: {access_token: access_token} ) expect(response.status).to eq 200 conversation = JSON.parse(response.body)["conversation"] expect(conversation["guid"]).to eq conversation_guid expect(conversation["subject"]).to eq @conversation[:subject] expect(conversation["participants"].length).to eq 2 expect(conversation["read"]).to eq true end end context "non existing conversation ID" do it "returns a not found error (404)" do get( api_v1_conversation_path(42), params: {access_token: access_token} ) expect(response.status).to eq 404 end end end describe "#destroy " do before do auth.user.seed_aspects auth.user.share_with auth_participant.user.person, auth.user.aspects[1] auth_participant.user.share_with( auth.user.person, auth_participant.user.aspects[0] ) @conversation = { author_id: auth.user.id, subject: "new conversation", body: "first message", recipients: [auth_participant.user.person.id], access_token: access_token } post api_v1_conversations_path, params: @conversation @conversation_guid = JSON.parse(response.body)["conversation"]["guid"] end context "destroy" do it "destroys the first participant visibility" do delete( api_v1_conversation_path(@conversation_guid), params: {access_token: access_token} ) expect(response.status).to eq 204 get api_v1_conversation_path( @conversation_guid, params: {access_token: access_token} ) expect(response.status).to eq 404 get api_v1_conversation_path( @conversation_guid, params: {access_token: access_token_participant} ) expect(response.status).to eq 200 end end context "destroy all visibilities" do it "destroys the second participant visibilty and the conversation" do delete( api_v1_conversation_path(@conversation_guid), params: {access_token: access_token} ) delete( api_v1_conversation_path(@conversation_guid), params: {access_token: access_token_participant} ) expect(response.status).to eq 204 get api_v1_conversation_path( @conversation_guid, params: {access_token: access_token_participant} ) expect(response.status).to eq 404 expect { Conversation.find(guid: @conversation_guid) }.to raise_error(ActiveRecord::RecordNotFound) end end context "non existing conversation ID" do it "returns a not found error (404)" do delete( api_v1_conversation_path(42), params: {access_token: access_token} ) expect(response.status).to eq 404 end end end def conversation_service ConversationService.new(alice) end end