2012-12-26 22:02:16 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
require 'test_helper'
|
2015-04-27 19:24:14 +00:00
|
|
|
|
2012-12-26 22:02:16 +00:00
|
|
|
class PackageTest < ActiveSupport::TestCase
|
|
|
|
test 'packages' do
|
|
|
|
tests = [
|
|
|
|
|
2013-03-22 12:48:47 +00:00
|
|
|
# test 1 - normal install
|
2012-12-26 22:02:16 +00:00
|
|
|
{
|
2016-01-31 17:25:31 +00:00
|
|
|
zpm: '{
|
|
|
|
"name": "UnitTestSample",
|
|
|
|
"version": "1.0.1",
|
|
|
|
"vendor": "Znuny GmbH",
|
|
|
|
"license": "ABC",
|
|
|
|
"url": "http://znuny.org/",
|
|
|
|
"description": [
|
|
|
|
{
|
|
|
|
"language": "en",
|
|
|
|
"text": "some description"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
{
|
|
|
|
"permission": "644",
|
|
|
|
"location": "test.txt",
|
|
|
|
"content": "YWJjw6TDtsO8w58="
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"permission": "644",
|
|
|
|
"location": "some/dir/test.txt",
|
|
|
|
"content": "YWJjw6TDtsO8w58="
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"permission": "644",
|
|
|
|
"location": "db/addon/unit_test_sample/20121212000001_create_base.rb",
|
|
|
|
"content": "Y2xhc3MgQ3JlYXRlQmFzZSA8IEFjdGl2ZVJlY29yZDo6TWlncmF0aW9uDQogIGRlZiBzZWxmLnVw\nDQogICBjcmVhdGVfdGFibGUgOnNhbXBsZV90YWJsZXMgZG8gfHR8DQogICAgICB0LmNvbHVtbiA6\nbmFtZSwgICAgICAgICAgIDpzdHJpbmcsIDpsaW1pdCA9PiAxNTAsICA6bnVsbCA9PiB0cnVlDQog\nICAgICB0LmNvbHVtbiA6ZGF0YSwgICAgICAgICAgIDpzdHJpbmcsIDpsaW1pdCA9PiA1MDAwLCA6\nbnVsbCA9PiB0cnVlDQogICAgZW5kDQogIGVuZA0KDQogIGRlZiBzZWxmLmRvd24NCiAgICBkcm9w\nX3RhYmxlIDpzYW1wbGVfdGFibGVzDQogIGVuZA0KZW5k"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}',
|
2015-04-27 13:42:53 +00:00
|
|
|
action: 'install',
|
|
|
|
result: true,
|
|
|
|
verify: {
|
|
|
|
package: {
|
|
|
|
name: 'UnitTestSample',
|
|
|
|
version: '1.0.1',
|
2012-12-26 22:02:16 +00:00
|
|
|
},
|
2015-04-27 13:42:53 +00:00
|
|
|
check_files: [
|
2012-12-26 22:02:16 +00:00
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'test.txt',
|
|
|
|
result: true,
|
2012-12-26 22:02:16 +00:00
|
|
|
},
|
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'test2.txt',
|
|
|
|
result: false,
|
2012-12-26 22:02:16 +00:00
|
|
|
},
|
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'some/dir/test.txt',
|
|
|
|
result: true,
|
2012-12-26 22:02:16 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2013-03-22 12:48:47 +00:00
|
|
|
# test 2 - try to install same package again / should not work
|
2012-12-26 22:02:16 +00:00
|
|
|
{
|
2016-01-31 17:25:31 +00:00
|
|
|
zpm: '{
|
|
|
|
"name": "UnitTestSample",
|
|
|
|
"version": "1.0.1",
|
|
|
|
"vendor": "Znuny GmbH",
|
|
|
|
"license": "ABC",
|
|
|
|
"url": "http://znuny.org/",
|
|
|
|
"description": [
|
|
|
|
{
|
|
|
|
"language": "en",
|
|
|
|
"text": "some description"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
{
|
|
|
|
"permission": "644",
|
|
|
|
"location": "test.txt",
|
|
|
|
"content": "YWJjw6TDtsO8w58="
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}',
|
2015-04-27 13:42:53 +00:00
|
|
|
action: 'install',
|
|
|
|
result: false,
|
2012-12-26 22:02:16 +00:00
|
|
|
},
|
|
|
|
|
2013-03-22 12:48:47 +00:00
|
|
|
# test 3 - try to install lower version / should not work
|
2012-12-26 22:02:16 +00:00
|
|
|
{
|
2016-01-31 17:25:31 +00:00
|
|
|
zpm: '{
|
|
|
|
"name": "UnitTestSample",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"vendor": "Znuny GmbH",
|
|
|
|
"license": "ABC",
|
|
|
|
"url": "http://znuny.org/",
|
|
|
|
"description": [
|
|
|
|
{
|
|
|
|
"language": "en",
|
|
|
|
"text": "some description"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
{
|
|
|
|
"permission": "644",
|
|
|
|
"location": "test.txt",
|
|
|
|
"content": "YWJjw6TDtsO8w58="
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}',
|
2015-04-27 13:42:53 +00:00
|
|
|
action: 'install',
|
|
|
|
result: false,
|
2012-12-26 22:02:16 +00:00
|
|
|
},
|
|
|
|
|
2013-03-22 12:48:47 +00:00
|
|
|
# test 4 - upgrade 7 should work
|
2012-12-26 22:02:16 +00:00
|
|
|
{
|
2016-01-31 17:25:31 +00:00
|
|
|
zpm: '{
|
|
|
|
"name": "UnitTestSample",
|
|
|
|
"version": "1.0.2",
|
|
|
|
"vendor": "Znuny GmbH",
|
|
|
|
"license": "ABC",
|
|
|
|
"url": "http://znuny.org/",
|
|
|
|
"description": [
|
|
|
|
{
|
|
|
|
"language": "en",
|
|
|
|
"text": "some description"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
{
|
|
|
|
"permission": "644",
|
|
|
|
"location": "test.txt2",
|
|
|
|
"content": "YWJjw6TDtsO8w58="
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"permission": "644",
|
|
|
|
"location": "some/dir/test.txt2",
|
|
|
|
"content": "YWJjw6TDtsO8w58="
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"permission": "644",
|
|
|
|
"location": "db/addon/unit_test_sample/20121212000001_create_base.rb",
|
|
|
|
"content": "Y2xhc3MgQ3JlYXRlQmFzZSA8IEFjdGl2ZVJlY29yZDo6TWlncmF0aW9uDQogIGRlZiBzZWxmLnVw\nDQogICBjcmVhdGVfdGFibGUgOnNhbXBsZV90YWJsZXMgZG8gfHR8DQogICAgICB0LmNvbHVtbiA6\nbmFtZSwgICAgICAgICAgIDpzdHJpbmcsIDpsaW1pdCA9PiAxNTAsICA6bnVsbCA9PiB0cnVlDQog\nICAgICB0LmNvbHVtbiA6ZGF0YSwgICAgICAgICAgIDpzdHJpbmcsIDpsaW1pdCA9PiA1MDAwLCA6\nbnVsbCA9PiB0cnVlDQogICAgZW5kDQogIGVuZA0KDQogIGRlZiBzZWxmLmRvd24NCiAgICBkcm9w\nX3RhYmxlIDpzYW1wbGVfdGFibGVzDQogIGVuZA0KZW5k"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}',
|
2015-04-27 13:42:53 +00:00
|
|
|
action: 'install',
|
|
|
|
result: true,
|
|
|
|
verify: {
|
|
|
|
package: {
|
|
|
|
name: 'UnitTestSample',
|
|
|
|
version: '1.0.2',
|
2012-12-26 22:02:16 +00:00
|
|
|
},
|
2015-04-27 13:42:53 +00:00
|
|
|
check_files: [
|
2012-12-26 22:02:16 +00:00
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'test.txt2',
|
|
|
|
result: true,
|
2012-12-26 22:02:16 +00:00
|
|
|
},
|
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'test.txt',
|
|
|
|
result: false,
|
2012-12-26 22:02:16 +00:00
|
|
|
},
|
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'test2.txt',
|
|
|
|
result: false,
|
2012-12-26 22:02:16 +00:00
|
|
|
},
|
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'some/dir/test.txt2',
|
|
|
|
result: true,
|
2012-12-26 22:02:16 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2013-03-22 12:48:47 +00:00
|
|
|
# test 4 - uninstall package / should work
|
2012-12-26 22:02:16 +00:00
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
name: 'UnitTestSample',
|
|
|
|
version: '1.0.2',
|
|
|
|
action: 'uninstall',
|
|
|
|
result: true,
|
|
|
|
verify: {
|
|
|
|
check_files: [
|
2012-12-26 22:02:16 +00:00
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'test.txt',
|
|
|
|
result: false,
|
2012-12-26 22:02:16 +00:00
|
|
|
},
|
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'test2.txt',
|
|
|
|
result: false,
|
2012-12-26 22:02:16 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2013-03-22 12:48:47 +00:00
|
|
|
# test 5 - check auto_install mechanism
|
2013-01-07 08:32:48 +00:00
|
|
|
{
|
2016-01-31 17:25:31 +00:00
|
|
|
zpm: '{
|
|
|
|
"name": "UnitTestSample",
|
|
|
|
"version": "1.0.2",
|
|
|
|
"vendor": "Znuny GmbH",
|
|
|
|
"license": "ABC",
|
|
|
|
"url": "http://znuny.org/",
|
|
|
|
"description": [
|
|
|
|
{
|
|
|
|
"language": "en",
|
|
|
|
"text": "some description"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
{
|
|
|
|
"permission": "644",
|
|
|
|
"location": "test.txt2",
|
|
|
|
"content": "YWJjw6TDtsO8w58="
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"permission": "644",
|
|
|
|
"location": "some/dir/test.txt2",
|
|
|
|
"content": "YWJjw6TDtsO8w58="
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"permission": "644",
|
|
|
|
"location": "db/addon/unit_test_sample/20121212000001_create_base.rb",
|
|
|
|
"content": "Y2xhc3MgQ3JlYXRlQmFzZSA8IEFjdGl2ZVJlY29yZDo6TWlncmF0aW9uDQogIGRlZiBzZWxmLnVw\nDQogICBjcmVhdGVfdGFibGUgOnNhbXBsZV90YWJsZXMgZG8gfHR8DQogICAgICB0LmNvbHVtbiA6\nbmFtZSwgICAgICAgICAgIDpzdHJpbmcsIDpsaW1pdCA9PiAxNTAsICA6bnVsbCA9PiB0cnVlDQog\nICAgICB0LmNvbHVtbiA6ZGF0YSwgICAgICAgICAgIDpzdHJpbmcsIDpsaW1pdCA9PiA1MDAwLCA6\nbnVsbCA9PiB0cnVlDQogICAgZW5kDQogIGVuZA0KDQogIGRlZiBzZWxmLmRvd24NCiAgICBkcm9w\nX3RhYmxlIDpzYW1wbGVfdGFibGVzDQogIGVuZA0KZW5k"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}',
|
2015-04-27 13:42:53 +00:00
|
|
|
action: 'auto_install',
|
|
|
|
result: true,
|
|
|
|
verify: {
|
|
|
|
package: {
|
|
|
|
name: 'UnitTestSample',
|
|
|
|
version: '1.0.2',
|
2013-01-07 08:32:48 +00:00
|
|
|
},
|
2015-04-27 13:42:53 +00:00
|
|
|
check_files: [
|
2013-01-07 08:32:48 +00:00
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'test.txt2',
|
|
|
|
result: true,
|
2013-01-07 08:32:48 +00:00
|
|
|
},
|
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'test.txt',
|
|
|
|
result: false,
|
2013-01-07 08:32:48 +00:00
|
|
|
},
|
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'test2.txt',
|
|
|
|
result: false,
|
2013-01-07 08:32:48 +00:00
|
|
|
},
|
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'some/dir/test.txt2',
|
|
|
|
result: true,
|
2013-01-07 08:32:48 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2013-03-22 12:48:47 +00:00
|
|
|
# test 6 - check uninstall / should work
|
2013-01-07 08:32:48 +00:00
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
name: 'UnitTestSample',
|
|
|
|
version: '1.0.2',
|
|
|
|
action: 'uninstall',
|
|
|
|
result: true,
|
|
|
|
verify: {
|
|
|
|
check_files: [
|
2013-01-07 08:32:48 +00:00
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'test.txt',
|
|
|
|
result: false,
|
2013-01-07 08:32:48 +00:00
|
|
|
},
|
|
|
|
{
|
2015-04-27 13:42:53 +00:00
|
|
|
location: 'test2.txt',
|
|
|
|
result: false,
|
2013-01-07 08:32:48 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2012-12-26 22:02:16 +00:00
|
|
|
]
|
|
|
|
tests.each { |test|
|
|
|
|
if test[:action] == 'install'
|
|
|
|
begin
|
2016-01-31 23:20:14 +00:00
|
|
|
package = Package.install( string: test[:zpm] )
|
2012-12-26 22:02:16 +00:00
|
|
|
rescue => e
|
|
|
|
puts 'ERROR: ' + e.inspect
|
|
|
|
end
|
|
|
|
if test[:result]
|
2016-01-31 23:20:14 +00:00
|
|
|
assert( package, 'install package not successful' )
|
|
|
|
issues = package.verify
|
|
|
|
assert( !issues, 'package verify not successful' )
|
2012-12-26 22:02:16 +00:00
|
|
|
else
|
2016-01-31 23:20:14 +00:00
|
|
|
assert( !package, 'install package successful but should not' )
|
2012-12-26 22:02:16 +00:00
|
|
|
end
|
|
|
|
elsif test[:action] == 'uninstall'
|
|
|
|
if test[:zpm]
|
|
|
|
begin
|
2016-01-31 23:20:14 +00:00
|
|
|
package = Package.uninstall( string: test[:zpm] )
|
2012-12-26 22:02:16 +00:00
|
|
|
rescue
|
2016-01-31 23:20:14 +00:00
|
|
|
package = false
|
2012-12-26 22:02:16 +00:00
|
|
|
end
|
|
|
|
else
|
|
|
|
begin
|
2016-01-31 23:20:14 +00:00
|
|
|
package = Package.uninstall( name: test[:name], version: test[:version] )
|
2012-12-26 22:02:16 +00:00
|
|
|
rescue
|
2016-01-31 23:20:14 +00:00
|
|
|
package = false
|
2012-12-26 22:02:16 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
if test[:result]
|
2016-01-31 23:20:14 +00:00
|
|
|
assert( package, 'uninstall package not successful' )
|
2012-12-26 22:02:16 +00:00
|
|
|
else
|
2016-01-31 23:20:14 +00:00
|
|
|
assert( !package, 'uninstall package successful but should not' )
|
2012-12-26 22:02:16 +00:00
|
|
|
end
|
2013-01-07 08:32:48 +00:00
|
|
|
elsif test[:action] == 'auto_install'
|
|
|
|
if test[:zpm]
|
|
|
|
if !File.exist?( Rails.root.to_s + '/auto_install/' )
|
|
|
|
Dir.mkdir( Rails.root.to_s + '/auto_install/', 0755)
|
|
|
|
end
|
|
|
|
location = Rails.root.to_s + '/auto_install/unittest.zpm'
|
|
|
|
file = File.new( location, 'wb' )
|
2015-04-27 19:24:14 +00:00
|
|
|
file.write( test[:zpm] )
|
2013-01-07 08:32:48 +00:00
|
|
|
file.close
|
|
|
|
end
|
|
|
|
begin
|
|
|
|
success = Package.auto_install()
|
|
|
|
rescue
|
|
|
|
success = false
|
|
|
|
end
|
|
|
|
if test[:zpm]
|
|
|
|
File.delete( location )
|
|
|
|
end
|
2012-12-26 22:02:16 +00:00
|
|
|
end
|
|
|
|
if test[:verify] && test[:verify][:package]
|
2015-04-27 13:42:53 +00:00
|
|
|
exists = Package.where( name: test[:verify][:package][:name], version: test[:verify][:package][:version] ).first
|
2012-12-26 22:02:16 +00:00
|
|
|
assert( exists, "package '#{test[:verify][:package][:name]}' is not installed" )
|
|
|
|
end
|
2015-07-03 17:42:22 +00:00
|
|
|
next if !test[:verify]
|
|
|
|
next if !test[:verify][:check_files]
|
|
|
|
|
|
|
|
test[:verify][:check_files].each {|item|
|
|
|
|
exists = File.exist?( item[:location] )
|
|
|
|
if item[:result]
|
|
|
|
assert( exists, "'#{item[:location]}' exists" )
|
|
|
|
else
|
|
|
|
assert( !exists, "'#{item[:location]}' doesn't exists" )
|
|
|
|
end
|
|
|
|
}
|
2012-12-26 22:02:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
end
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|