redmine_dmsf/test/unit/dmsf_file_revision_test.rb

340 lines
12 KiB
Ruby

# frozen_string_literal: true
# Redmine plugin for Document Management System "Features"
#
# Karel Pičman <karel.picman@kontron.com>
#
# This file is part of Redmine DMSF plugin.
#
# Redmine DMSF plugin 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 3 of the License, or (at your option) any
# later version.
#
# Redmine DMSF plugin 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 Redmine DMSF plugin. If not, see
# <https://www.gnu.org/licenses/>.
require File.expand_path('../../test_helper', __FILE__)
# File revision tests
class DmsfFileRevisionTest < RedmineDmsf::Test::UnitTest
include Redmine::I18n
def setup
super
@revision1 = DmsfFileRevision.find 1
@revision2 = DmsfFileRevision.find 2
@revision3 = DmsfFileRevision.find 3
@revision8 = DmsfFileRevision.find 8
@revision13 = DmsfFileRevision.find 13
@wf1 = DmsfWorkflow.find 1
end
def test_file_title_length_validation
file = DmsfFileRevision.new(title: Array.new(256).map { 'a' }.join,
name: 'Test Revision',
major_version: 1)
assert file.invalid?
assert_equal ['Title is too long (maximum is 255 characters)'], file.errors.full_messages
end
def test_file_name_length_validation
file = DmsfFileRevision.new(name: Array.new(256).map { 'a' }.join,
title: 'Test Revision',
major_version: 1)
assert file.invalid?
assert_equal ['Name is too long (maximum is 255 characters)'], file.errors.full_messages
end
def test_file_disk_filename_length_validation
file = DmsfFileRevision.new(disk_filename: Array.new(256).map { 'a' }.join,
title: 'Test Revision',
name: 'Test Revision',
major_version: 1)
assert file.invalid?
assert_equal ['Disk filename is too long (maximum is 255 characters)'], file.errors.full_messages
end
def test_delete_restore
@revision13.delete commit: false
assert @revision13.deleted?, "File revision #{@revision13.name} hasn't been deleted"
@revision13.restore
assert_not @revision13.deleted?, "File revision #{@revision13.name} hasn't been restored"
end
def test_destroy
@revision13.delete commit: true
assert_nil DmsfFileRevision.find_by(id: @revision13.id)
end
def test_new_storage_filename
# Create a file.
f = DmsfFile.new
f.project_id = 1
f.name = 'Testfile.txt'
f.dmsf_folder = nil
f.notification = RedmineDmsf.dmsf_default_notifications?
f.save
# Create two new revisions, r1 and r2
r1 = DmsfFileRevision.new
r1.minor_version = 0
r1.major_version = 1
r1.dmsf_file = f
r1.user = User.current
r1.name = 'Testfile.txt'
r1.title = DmsfFileRevision.filename_to_title(r1.name)
r1.description = nil
r1.comment = nil
r1.mime_type = nil
r1.size = 4
r2 = r1.clone
r2.minor_version = 1
assert r1.valid?
assert r2.valid?
# This is a very stupid since the generation and storing of files below must be done during the
# same second, so wait until the microsecond part of the DateTime is less than 10 ms, should be
# plenty of time to do the rest then.
wait_timeout = 2_000
while DateTime.current.usec > 10_000
wait_timeout -= 10
flunk 'Waited too long.' if wait_timeout <= 0
sleep 0.01
end
# First, generate the r1 storage filename and save the file
r1.disk_filename = r1.new_storage_filename
assert r1.save
# Just make sure the file exists
File.binwrite r1.disk_file, '1234'
# Directly after the file has been stored generate the r2 storage filename.
# Hopefully the seconds part of the DateTime.current has not changed and the generated filename will
# be on the same second but it should then be increased by 1.
r2.disk_filename = r2.new_storage_filename
assert_not_equal r1.disk_filename, r2.disk_filename, 'The disk filename should not be equal for two revisions.'
end
def test_invalid_filename_extension
with_settings(attachment_extensions_allowed: 'txt') do
r1 = DmsfFileRevision.new
r1.minor_version = 0
r1.major_version = 1
r1.dmsf_file = @file1 # name test.txt
r1.user = User.current
r1.name = 'test.txt.png'
r1.title = DmsfFileRevision.filename_to_title(r1.name)
r1.description = nil
r1.comment = nil
r1.mime_type = nil
r1.size = 4
assert r1.invalid?
message = ['Attachment extension .png is not allowed']
assert_equal message, r1.errors.full_messages
end
end
def test_workflow_tooltip
@revision2.set_workflow @wf1.id, 'start'
assert_equal @jsmith.name, @revision2.workflow_tooltip
end
def test_version
@revision1.major_version = 1
@revision1.minor_version = 0
assert_equal '1.0', @revision1.version
@revision1.major_version = -'A'.ord
@revision1.minor_version = -' '.ord
assert_equal 'A', @revision1.version
@revision1.major_version = -'A'.ord
@revision1.minor_version = 0
assert_equal 'A.0', @revision1.version
end
def test_increase_version
# 1.0.0 -> 1.0.1
@revision1.major_version = 1
@revision1.minor_version = 0
@revision1.increase_version DmsfFileRevision::PATCH_VERSION
assert_equal 1, @revision1.major_version
assert_equal 0, @revision1.minor_version
assert_equal 1, @revision1.patch_version
# 1.0 -> 1.1
@revision1.major_version = 1
@revision1.minor_version = 0
@revision1.increase_version DmsfFileRevision::MINOR_VERSION
assert_equal 1, @revision1.major_version
assert_equal 1, @revision1.minor_version
# 1.0 -> 2.0
@revision1.major_version = 1
@revision1.minor_version = 0
@revision1.increase_version DmsfFileRevision::MAJOR_VERSION
assert_equal 2, @revision1.major_version
assert_equal 0, @revision1.minor_version
# 1.1 -> 2.0
@revision1.major_version = 1
@revision1.minor_version = 1
@revision1.increase_version DmsfFileRevision::MAJOR_VERSION
assert_equal 2, @revision1.major_version
assert_equal 0, @revision1.minor_version
# A -> A.1
@revision1.major_version = -'A'.ord
@revision1.minor_version = -' '.ord
@revision1.increase_version DmsfFileRevision::MINOR_VERSION
assert_equal(-'A'.ord, @revision1.major_version)
assert_equal 1, @revision1.minor_version
# A -> B
@revision1.major_version = -'A'.ord
@revision1.minor_version = -' '.ord
@revision1.increase_version DmsfFileRevision::MAJOR_VERSION
assert_equal(-'B'.ord, @revision1.major_version)
assert_equal(-' '.ord, @revision1.minor_version)
# A.1 -> B
@revision1.major_version = -'A'.ord
@revision1.minor_version = 1
@revision1.increase_version DmsfFileRevision::MAJOR_VERSION
assert_equal(-'B'.ord, @revision1.major_version)
assert_equal(-' '.ord, @revision1.minor_version)
end
def test_description_max_length
@revision1.description = 'a' * 2.kilobytes
assert_not @revision1.save
@revision1.description = 'a' * 1.kilobyte
assert @revision1.save
end
def test_protocol_txt
assert_not @revision1.protocol
end
def test_protocol_doc
@revision1.mime_type = Redmine::MimeType.of('test.doc')
assert_equal 'ms-word', @revision1.protocol
end
def test_protocol_docx
@revision1.mime_type = Redmine::MimeType.of('test.docx')
assert_equal 'ms-word', @revision1.protocol
end
def test_protocol_odt
@revision1.mime_type = Redmine::MimeType.of('test.odt')
assert_equal 'ms-word', @revision1.protocol
end
def test_protocol_xls
@revision1.mime_type = Redmine::MimeType.of('test.xls')
assert_equal 'ms-excel', @revision1.protocol
end
def test_protocol_xlsx
@revision1.mime_type = Redmine::MimeType.of('test.xlsx')
assert_equal 'ms-excel', @revision1.protocol
end
def test_protocol_ods
@revision1.mime_type = Redmine::MimeType.of('test.ods')
assert_equal 'ms-excel', @revision1.protocol
end
def test_obsolete
assert @revision1.obsolete
assert_equal DmsfWorkflow::STATE_OBSOLETE, @revision1.workflow
end
def test_obsolete_locked
User.current = @admin
@revision1.dmsf_file.lock!
User.current = @jsmith
assert_not @revision1.obsolete
assert_equal 1, @revision1.errors.count
assert @revision1.errors.full_messages.to_sentence.include?(l(:error_file_is_locked))
end
def test_major_version_cannot_be_nil
@revision1.major_version = nil
assert_not @revision1.save
assert @revision1.errors.full_messages.to_sentence.include?('Major version cannot be blank')
end
def test_size_validation
Setting.attachment_max_size = '1'
@revision1.size = 2.kilobytes
assert_not @revision1.valid?
end
def test_visible
@revision1.deleted = DmsfFileRevision::STATUS_ACTIVE
assert @revision1.visible?
assert @revision1.visible?(@jsmith)
@revision1.deleted = DmsfFileRevision::STATUS_DELETED
assert_not @revision1.visible?
assert_not @revision1.visible?(@jsmith)
end
def test_params_to_hash
parameters = ActionController::Parameters.new({
'78': 'A',
'90': {
'blank': '',
'1': {
'filename': 'file.txt',
'token': 'atoken'
}
}
})
h = DmsfFileRevision.params_to_hash(parameters)
assert h.is_a?(Hash)
assert_equal 'atoken', h['90'][:token]
end
def test_params_to_hash_empty_attachment
parameters = ActionController::Parameters.new({
'78': 'A',
'90': {
'blank': '',
'1': {
'file': ''
}
}
})
h = DmsfFileRevision.params_to_hash(parameters)
assert h.is_a?(Hash)
assert_nil h['90']
end
def test_set_workflow
@revision2.set_workflow @wf1.id, 'assign'
assert_equal DmsfWorkflow::STATE_ASSIGNED, @revision2.workflow
assert_equal User.current, @revision2.dmsf_workflow_assigned_by_user
assert @revision2.dmsf_workflow_assigned_at
@revision2.set_workflow @wf1.id, 'start'
assert_equal DmsfWorkflow::STATE_WAITING_FOR_APPROVAL, @revision2.workflow
assert_equal User.current, @revision2.dmsf_workflow_started_by_user
assert @revision2.dmsf_workflow_started_at
end
def test_reset_workflow
@revision2.set_workflow @wf1.id, 'assign'
@revision2.set_workflow @wf1.id, 'start'
@revision2.reset_workflow
assert_nil @revision2.workflow
assert_nil @revision2.dmsf_workflow_id
assert_nil @revision2.dmsf_workflow_assigned_by_user_id
assert_nil @revision2.dmsf_workflow_assigned_at
assert_nil @revision2.dmsf_workflow_started_by_user_id
assert_nil @revision2.dmsf_workflow_started_at
end
def test_checksum
assert_equal @revision1.checksum, @revision1.file.blob.checksum
end
end