1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00

include zip archive into tests + fix: allow multiple runs of test suite

This commit is contained in:
Sylvain 2019-03-18 12:09:54 +01:00
parent dbe36e7688
commit ccd63ecfe1
2 changed files with 29 additions and 2 deletions

View File

@ -2,6 +2,8 @@ class ProtectAccountingPeriods < ActiveRecord::Migration
# PostgreSQL only
def up
return if Rails.env.development? || Rails.env.test?
execute("CREATE RULE accounting_periods_del_protect AS ON DELETE TO #{AccountingPeriod.arel_table.name} DO INSTEAD NOTHING;")
execute("CREATE RULE accounting_periods_upd_protect AS ON UPDATE TO #{AccountingPeriod.arel_table.name} DO INSTEAD NOTHING;")
end

View File

@ -32,14 +32,39 @@ class AccountingPeriodTest < ActionDispatch::IntegrationTest
# Check archive file was created
assert FileTest.exists? accounting_period.archive_file
# Extract archive
require 'tmpdir'
require 'fileutils'
dest = "#{Dir.tmpdir}/#{accounting_period.archive_file[0..-5]}"
FileUtils.mkdir_p "#{dest}/accounting"
Zip::File.open(accounting_period.archive_file) do |zip_file|
# Handle entries one by one
zip_file.each do |entry|
# Extract to file/directory/symlink
entry.extract("#{dest}/#{entry.name}")
end
end
# Check archive matches
archive = File.read(accounting_period.archive_file)
require 'checksum'
sumfile = File.read("#{dest}/checksum.sha256").split("\t")
assert_equal sumfile[0], Checksum.file("#{dest}/#{sumfile[1]}"), 'archive checksum does not match'
archive = File.read("#{dest}/#{sumfile[1]}")
archive_json = JSON.parse(archive)
invoices = Invoice.where(
'created_at >= :start_date AND created_at <= :end_date',
start_date: start_at.to_datetime, end_date: end_at.to_datetime
)
assert_equal invoices.count, archive_json.count
assert_equal invoices.count, archive_json['invoices'].count
assert_equal accounting_period.footprint, archive_json['period_footprint']
require 'version'
assert_equal Version.current, archive_json['software']['version']
# we clean up the extraction dir before quitting
FileUtils.rm_rf(dest)
end
end