OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/spec/controllers/news_controller_spec.rb

194 lines
5.5 KiB

#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2017 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-2017 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 'spec_helper'
describe NewsController, type: :controller do
render_views
include BecomeMember
let(:user) {
user = FactoryGirl.create(:admin)
FactoryGirl.create(:user_preference, user: user, others: { no_self_notified: false })
user
}
let(:project) { FactoryGirl.create(:project) }
let(:news) { FactoryGirl.create(:news) }
before do
allow(User).to receive(:current).and_return user
end
describe '#index' do
it 'renders index' do
get :index
expect(response).to be_success
expect(response).to render_template 'index'
expect(assigns(:project)).to be_nil
expect(assigns(:newss)).not_to be_nil
end
it 'renders index with project' do
get :index, params: { project_id: project.id }
expect(response).to be_success
expect(response).to render_template 'index'
expect(assigns(:newss)).not_to be_nil
end
end
describe '#show' do
it 'renders show' do
get :show, params: { id: news.id }
expect(response).to be_success
expect(response).to render_template 'show'
expect(response.body).to have_selector('h2', text: news.title)
end
it 'renders show with slug' do
get :show, params: { id: "#{news.id}-some-news-title" }
expect(response).to be_success
expect(response).to render_template 'show'
expect(response.body).to have_selector('h2', text: news.title)
end
it 'renders error if news item is not found' do
get :show, params: { id: -1 }
expect(response).to be_not_found
end
end
describe '#new' do
it 'renders new' do
get :new, params: { project_id: project.id }
expect(response).to be_success
expect(response).to render_template 'new'
end
end
describe '#create' do
context 'with news_added notifications',
with_settings: { notified_events: %w(news_added) } do
it 'persists a news item and delivers email notifications' do
become_member_with_permissions(project, user)
post :create,
params: {
project_id: project.id,
news: {
title: 'NewsControllerTest',
description: 'This is the description',
summary: ''
}
}
expect(response).to redirect_to project_news_index_path(project)
news = News.find_by!(title: 'NewsControllerTest')
expect(news).not_to be_nil
expect(news.description).to eq 'This is the description'
expect(news.author).to eq user
expect(news.project).to eq project
expect(ActionMailer::Base.deliveries.size).to eq(1)
end
end
it "doesn't persist if validations fail" do
post :create,
params: {
project_id: project.id,
news: {
title: '',
description: 'This is the description',
summary: ''
}
}
expect(response).to be_success
expect(response).to render_template 'new'
expect(assigns(:news)).not_to be_nil
expect(assigns(:news)).to be_new_record
expect(response.body).to have_selector('div#errorExplanation', text: /1 error/)
end
end
describe '#edit' do
it 'renders edit' do
get :edit, params: { id: news.id }
expect(response).to be_success
expect(response).to render_template 'edit'
end
end
describe '#update' do
it 'updates the news element' do
put :update,
params: { id: news.id, news: { description: 'Description changed by test_post_edit' } }
expect(response).to redirect_to news_path(news)
news.reload
expect(news.description).to eq 'Description changed by test_post_edit'
end
end
describe '#destroy' do
it 'deletes the news element and redirects to the news overview page' do
delete :destroy, params: { id: news.id }
expect(response).to redirect_to project_news_index_path(news.project)
expect { news.reload }.to raise_error ActiveRecord::RecordNotFound
end
end
11 years ago
describe 'preview' do
let(:description) { 'News description' }
11 years ago
it_behaves_like 'valid preview' do
let(:preview_texts) { [description] }
let(:preview_params) { { news: { description: description } } }
end
it_behaves_like 'authorizes object access' do
let(:preview_params) { { id: news.id, news: {} } }
end
11 years ago
end
end