#-- copyright # OpenProject Documents Plugin # # Former OpenProject Core functionality extracted into a plugin. # # Copyright (C) 2009-2014 the OpenProject Foundation (OPF) # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. # # OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: # Copyright (C) 2006-2013 Jean-Philippe Lang # Copyright (C) 2010-2013 the ChiliProject Team # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # See doc/COPYRIGHT.rdoc for more details. #++ require File.dirname(__FILE__) + '/../spec_helper' describe DocumentsController do render_views let(:admin) { FactoryGirl.create(:admin)} let(:project) { FactoryGirl.create(:project, name: "Test Project")} let(:user) { FactoryGirl.create(:user)} let(:role) { FactoryGirl.create(:role, permissions: [:view_documents]) } let(:default_category){ FactoryGirl.create(:document_category, project: project, name: "Default Category") } let(:document) { FactoryGirl.create(:document, title: "Sample Document", project: project, category: default_category) } before do allow(User).to receive(:current).and_return admin end describe "index" do before do document.update_attributes(description:< { description: "sample file", file: file_attachment } } end it "should add an attachment" do document = Document.last expect(document.attachments.count).to eql 1 attachment = document.attachments.first expect(attachment.description).to eql "sample file" expect(attachment.filename).to eql "testfile.txt" end it "should redirect to the documents-page" do expect(response).to redirect_to project_documents_path(project.identifier) end it "should send out mails with notifications to members of the project with :view_documents-permission" do expect(ActionMailer::Base.deliveries.size).to eql 1 end end end describe 'show' do before do document get :show, id: document.id end it "should delete the document and redirect back to documents-page of the project" do expect(response).to be_success expect(response).to render_template('show') end end describe '#add_attachment' do before do document post :add_attachment, id: document.id, attachments: { '1' => { description: "sample file", file: file_attachment } } end it "should delete the document and redirect back to documents-page of the project" do expect(response).to be_redirect document.reload expect(document.attachments.length).to eq(1) end end describe "destroy" do before do document end it "should delete the document and redirect back to documents-page of the project" do expect{ delete :destroy, id: document.id }.to change{Document.count}.by -1 expect(response).to redirect_to "/projects/#{project.identifier}/documents" expect{Document.find(document.id)}.to raise_error ActiveRecord::RecordNotFound end end def file_attachment test_document = "#{OpenProject::Documents::Engine.root}/spec/assets/attachments/testfile.txt" Rack::Test::UploadedFile.new(test_document, "text/plain") end end