kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
122 lines
4.1 KiB
122 lines
4.1 KiB
9 years ago
|
#-- 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 OpenProject::Storage do
|
||
|
let(:subject) {}
|
||
|
|
||
|
before do
|
||
|
allow(Setting).to receive(:enabled_scm).and_return(enabled_scms)
|
||
|
allow(OpenProject::Configuration).to receive(:[]).and_call_original
|
||
|
allow(OpenProject::Configuration).to receive(:[]).with('scm').and_return(config)
|
||
|
end
|
||
|
|
||
|
context 'with no SCM configuration' do
|
||
|
let(:config) { {} }
|
||
|
let(:enabled_scms) { [] }
|
||
|
|
||
|
describe '#known_storage_paths' do
|
||
|
subject { OpenProject::Storage.known_storage_paths }
|
||
|
it 'should contain attachments path' do
|
||
|
expect(subject.length).to be == 1
|
||
|
expect(subject['attachments'])
|
||
|
.to eq(label: I18n.t('attributes.attachments'),
|
||
|
path: OpenProject::Configuration.attachments_storage_path.to_s)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe '#mount_information' do
|
||
|
subject { OpenProject::Storage.mount_information }
|
||
|
it 'should contain one fs entry' do
|
||
|
expect(subject.length).to be == 1
|
||
|
|
||
|
entry = subject.values.first
|
||
|
expect(entry[:labels]).to eq([I18n.t('attributes.attachments')])
|
||
|
expect(entry[:data]).not_to be_nil
|
||
|
expect(entry[:data][:free]).to be_kind_of(Integer)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context 'with SCM configuration' do
|
||
|
include_context 'with tmpdir'
|
||
|
|
||
|
let(:config) {
|
||
|
{
|
||
|
Git: { manages: File.join(tmpdir, 'git') }
|
||
|
}
|
||
|
}
|
||
|
let(:enabled_scms) { %w[Git] }
|
||
|
let(:returned_fs_info) { [{ id: 1, free: 1234 }] }
|
||
|
|
||
|
before do
|
||
|
# Mock filesystem info as we do not know there /tmp is mounted here.
|
||
|
allow(OpenProject::Storage).to receive(:read_fs_info).and_return(*returned_fs_info)
|
||
|
end
|
||
|
|
||
|
describe '#known_storage_paths' do
|
||
|
subject { OpenProject::Storage.known_storage_paths }
|
||
|
|
||
|
it 'contains both paths' do
|
||
|
expect(subject.length).to be == 2
|
||
|
|
||
|
labels = subject.values.map { |h| h[:label] }
|
||
|
expect(labels)
|
||
|
.to match_array([I18n.t(:label_managed_repositories_vendor, vendor: 'Git'),
|
||
|
I18n.t('attributes.attachments')])
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe '#mount_information' do
|
||
|
subject { OpenProject::Storage.mount_information }
|
||
|
it 'contains one entry' do
|
||
|
expect(subject.length).to eq(1)
|
||
|
|
||
|
entry = subject.values.first
|
||
|
expect(entry[:labels])
|
||
|
.to match_array([I18n.t(:label_managed_repositories_vendor, vendor: 'Git'),
|
||
|
I18n.t('attributes.attachments')])
|
||
|
end
|
||
|
|
||
|
context 'with multiple filesystem ids' do
|
||
|
let(:returned_fs_info) { [{ id: 1, free: 1234 }, { id: 2, free: 15 }] }
|
||
|
it 'contains two entries' do
|
||
|
expect(subject.length).to eq(2)
|
||
|
expect(subject)
|
||
|
.to eq(1 => { labels: [I18n.t(:label_managed_repositories_vendor, vendor: 'Git')],
|
||
|
data: returned_fs_info[0] },
|
||
|
2 => { labels: [I18n.t('attributes.attachments')],
|
||
|
data: returned_fs_info[1] }
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|