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/activities_controller_spec.rb

160 lines
5.6 KiB

#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2013 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 'spec_helper'
describe ActivitiesController do
before :each do
@controller.stub(:set_localization)
admin = FactoryGirl.create(:admin)
User.stub(:current).and_return admin
@params = {}
end
describe 'index' do
describe 'global' do
let(:work_package) { FactoryGirl.create(:work_package) }
let!(:journal) { FactoryGirl.create(:work_package_journal,
journable_id: work_package.id,
created_at: 3.days.ago.to_date.to_s(:db),
version: Journal.maximum(:version) + 1,
data: FactoryGirl.build(:journal_work_package_journal,
subject: work_package.subject,
status_id: work_package.status_id,
type_id: work_package.type_id,
project_id: work_package.project_id)) }
before { get 'index' }
it { expect(response).to be_success }
it { expect(response).to render_template 'index' }
11 years ago
it { expect(assigns(:events_by_day)).not_to be_empty }
describe 'view' do
render_views
it do
assert_tag tag: "h3",
:content => /#{3.day.ago.to_date.day}/,
sibling: { tag: "dl",
child: { tag: "dt",
attributes: { :class => /work_package/ },
child: { tag: "a",
:content => /#{ERB::Util.html_escape(work_package.subject)}/ } } }
end
end
end
describe 'with activated activity module' do
11 years ago
let(:project) { FactoryGirl.create(:project,
enabled_module_names: %w[activity wiki]) }
it 'renders activity' do
11 years ago
get 'index', project_id: project.id
response.should be_success
response.should render_template 'index'
end
end
describe 'without activated activity module' do
11 years ago
let(:project) { FactoryGirl.create(:project,
enabled_module_names: %w[wiki]) }
it 'renders 403' do
11 years ago
get 'index', project_id: project.id
response.status.should == 403
response.should render_template 'common/error'
end
end
11 years ago
describe :atom_feed do
let(:user) { FactoryGirl.create(:user) }
let(:project) { FactoryGirl.create(:project) }
11 years ago
context :work_package do
let!(:wp_1) { FactoryGirl.create(:work_package,
project: project,
author: user) }
11 years ago
describe 'global' do
render_views
11 years ago
before do
Setting.stub(:host_name).and_return 'test.host'
11 years ago
get 'index', format: 'atom'
end
it do
assert_tag tag: 'entry',
child: { tag: 'link',
attributes: { href: Regexp.new("http://test.host/work_packages/#{wp_1.id}") } }
end
end
describe 'list' do
let!(:wp_2) { FactoryGirl.create(:work_package,
project: project,
author: user) }
let(:params) { { project_id: project.id,
format: :atom } }
before { get :index, params }
it { expect(assigns(:items).count).to eq(2) }
it { expect(response).to render_template("common/feed") }
end
11 years ago
end
context :boards do
let(:board) { FactoryGirl.create(:board,
project: project) }
let!(:message_1) { FactoryGirl.create(:message,
board: board) }
let!(:message_2) { FactoryGirl.create(:message,
board: board) }
let(:params) { { project_id: project.id,
show_messages: 1,
format: :atom } }
before { get :index, params }
it { expect(assigns(:items).count).to eq(2) }
it { expect(response).to render_template("common/feed") }
end
11 years ago
end
end
end