#-- copyright # OpenProject is a project management system. # Copyright (C) 2012-2015 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 ::API::V3::RootRepresenter do include ::API::V3::Utilities::PathHelper let(:user) { FactoryGirl.build(:user) } let(:representer) { described_class.new({}, current_user: user) } let(:app_title) { 'Foo Project' } let(:version) { 'The version is over 9000!' } context 'generation' do subject { representer.to_json } before do allow(Setting).to receive(:app_title).and_return app_title allow(OpenProject::VERSION).to receive(:to_semver).and_return version end describe '_links' do it_behaves_like 'has an untitled link' do let(:link) { 'configuration' } let(:href) { api_v3_paths.configuration } end it_behaves_like 'has an untitled link' do let(:link) { 'priorities' } let(:href) { api_v3_paths.priorities } end it_behaves_like 'has an untitled link' do let(:link) { 'statuses' } let(:href) { api_v3_paths.statuses } end it_behaves_like 'has an untitled link' do let(:link) { 'types' } let(:href) { api_v3_paths.types } end it_behaves_like 'has an untitled link' do let(:link) { 'workPackages' } let(:href) { api_v3_paths.work_packages } end it_behaves_like 'has a titled link' do let(:link) { 'user' } let(:href) { api_v3_paths.user(user.id) } let(:title) { user.name } end it_behaves_like 'has an untitled link' do let(:link) { 'userPreferences' } let(:href) { api_v3_paths.my_preferences } end context 'anonymous user' do let(:representer) { described_class.new({}, current_user: User.anonymous) } it_behaves_like 'has no link' do let(:link) { 'user' } end it_behaves_like 'has no link' do let(:link) { 'userPreferences' } end end end it 'shows the name of the instance' do is_expected.to be_json_eql(app_title.to_json).at_path('instanceName') end it 'indicates the OpenProject version number' do is_expected.to be_json_eql(version.to_json).at_path('coreVersion') end end end