abiquo-installer-tests 20120104 → 20121023.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +11 -7
- data/bin/abiquo-installer-tests +68 -43
- data/tests/1.8.5/abiquo_ciab.rb +21 -0
- data/tests/1.8.5/abiquo_kvm.rb +25 -0
- data/tests/1.8.5/abiquo_lvmiscsi.rb +17 -0
- data/tests/1.8.5/abiquo_monolithic.rb +12 -0
- data/tests/1.8.5/abiquo_nfs_repository.rb +23 -0
- data/tests/1.8.5/abiquo_platform.rb +39 -0
- data/tests/1.8.5/abiquo_remote_services.rb +115 -0
- data/tests/1.8.5/abiquo_server.rb +63 -0
- data/tests/1.8.5/abiquo_v2v.rb +37 -0
- data/tests/1.8.5/abiquo_vbox.rb +27 -0
- data/tests/1.8.5/abiquo_xen.rb +27 -0
- data/tests/2.0/abiquo_ciab.rb +9 -0
- data/tests/2.0/abiquo_community_hypervisor.rb +52 -0
- data/tests/2.0/abiquo_kvm.rb +5 -23
- data/tests/2.0/abiquo_monolithic.rb +12 -1
- data/tests/2.0/abiquo_platform.rb +2 -2
- data/tests/2.0/abiquo_remote_services.rb +15 -38
- data/tests/2.0/abiquo_server.rb +7 -1
- data/tests/2.0/abiquo_v2v.rb +42 -0
- data/tests/2.0/abiquo_vbox.rb +5 -25
- data/tests/2.0/abiquo_xen.rb +5 -25
- data/tests/2.2.0/abiquo_ciab.rb +30 -0
- data/tests/2.2.0/abiquo_community_hypervisor.rb +52 -0
- data/tests/2.2.0/abiquo_kvm.rb +7 -0
- data/tests/2.2.0/abiquo_lvmiscsi.rb +17 -0
- data/tests/2.2.0/abiquo_monolithic.rb +23 -0
- data/tests/2.2.0/abiquo_nfs_repository.rb +23 -0
- data/tests/2.2.0/abiquo_platform.rb +35 -0
- data/tests/2.2.0/abiquo_remote_services.rb +96 -0
- data/tests/2.2.0/abiquo_server.rb +95 -0
- data/tests/2.2.0/abiquo_v2v.rb +79 -0
- data/tests/2.2.0/abiquo_vbox.rb +7 -0
- data/tests/2.2.0/abiquo_xen.rb +7 -0
- data/tests/2.3.0/abiquo_ciab.rb +30 -0
- data/tests/2.3.0/abiquo_community_hypervisor.rb +52 -0
- data/tests/2.3.0/abiquo_kvm.rb +7 -0
- data/tests/2.3.0/abiquo_lvmiscsi.rb +17 -0
- data/tests/2.3.0/abiquo_monolithic.rb +23 -0
- data/tests/2.3.0/abiquo_nfs_repository.rb +23 -0
- data/tests/2.3.0/abiquo_platform.rb +35 -0
- data/tests/2.3.0/abiquo_remote_services.rb +96 -0
- data/tests/2.3.0/abiquo_server.rb +95 -0
- data/tests/2.3.0/abiquo_v2v.rb +79 -0
- data/tests/2.3.0/abiquo_vbox.rb +7 -0
- data/tests/2.3.0/abiquo_xen.rb +7 -0
- data/tests/abiquo_postinst_test.rb +12 -1
- data/vendor/net-scp-1.0.4/CHANGELOG.rdoc +29 -0
- data/vendor/net-scp-1.0.4/Manifest +17 -0
- data/vendor/net-scp-1.0.4/README.rdoc +98 -0
- data/vendor/net-scp-1.0.4/Rakefile +83 -0
- data/vendor/net-scp-1.0.4/lib/net/scp.rb +432 -0
- data/vendor/net-scp-1.0.4/lib/net/scp/download.rb +150 -0
- data/vendor/net-scp-1.0.4/lib/net/scp/errors.rb +5 -0
- data/vendor/net-scp-1.0.4/lib/net/scp/upload.rb +142 -0
- data/vendor/net-scp-1.0.4/lib/net/scp/version.rb +18 -0
- data/vendor/net-scp-1.0.4/lib/uri/open-scp.rb +18 -0
- data/vendor/net-scp-1.0.4/lib/uri/scp.rb +35 -0
- data/vendor/net-scp-1.0.4/net-scp.gemspec +34 -0
- data/vendor/net-scp-1.0.4/setup.rb +1331 -0
- data/vendor/net-scp-1.0.4/test/common.rb +153 -0
- data/vendor/net-scp-1.0.4/test/test_all.rb +3 -0
- data/vendor/net-scp-1.0.4/test/test_download.rb +170 -0
- data/vendor/net-scp-1.0.4/test/test_scp.rb +60 -0
- data/vendor/net-scp-1.0.4/test/test_upload.rb +269 -0
- data/vendor/net-sftp-2.0.5/CHANGELOG.rdoc +49 -0
- data/vendor/net-sftp-2.0.5/Manifest +55 -0
- data/vendor/net-sftp-2.0.5/README.rdoc +96 -0
- data/vendor/net-sftp-2.0.5/Rakefile +30 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp.rb +70 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/constants.rb +187 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/errors.rb +39 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/operations/dir.rb +93 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/operations/download.rb +364 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/operations/file.rb +176 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/operations/file_factory.rb +60 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/operations/upload.rb +387 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/packet.rb +21 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol.rb +32 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/01/attributes.rb +315 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/01/base.rb +268 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/01/name.rb +43 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/02/base.rb +31 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/03/base.rb +35 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/04/attributes.rb +152 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/04/base.rb +94 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/04/name.rb +67 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/05/base.rb +66 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/06/attributes.rb +107 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/06/base.rb +63 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/protocol/base.rb +50 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/request.rb +91 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/response.rb +76 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/session.rb +952 -0
- data/vendor/net-sftp-2.0.5/lib/net/sftp/version.rb +18 -0
- data/vendor/net-sftp-2.0.5/net-sftp.gemspec +34 -0
- data/vendor/net-sftp-2.0.5/setup.rb +1331 -0
- data/vendor/net-sftp-2.0.5/test/common.rb +172 -0
- data/vendor/net-sftp-2.0.5/test/protocol/01/test_attributes.rb +97 -0
- data/vendor/net-sftp-2.0.5/test/protocol/01/test_base.rb +210 -0
- data/vendor/net-sftp-2.0.5/test/protocol/01/test_name.rb +27 -0
- data/vendor/net-sftp-2.0.5/test/protocol/02/test_base.rb +26 -0
- data/vendor/net-sftp-2.0.5/test/protocol/03/test_base.rb +27 -0
- data/vendor/net-sftp-2.0.5/test/protocol/04/test_attributes.rb +148 -0
- data/vendor/net-sftp-2.0.5/test/protocol/04/test_base.rb +74 -0
- data/vendor/net-sftp-2.0.5/test/protocol/04/test_name.rb +53 -0
- data/vendor/net-sftp-2.0.5/test/protocol/05/test_base.rb +62 -0
- data/vendor/net-sftp-2.0.5/test/protocol/06/test_attributes.rb +124 -0
- data/vendor/net-sftp-2.0.5/test/protocol/06/test_base.rb +51 -0
- data/vendor/net-sftp-2.0.5/test/protocol/test_base.rb +42 -0
- data/vendor/net-sftp-2.0.5/test/test_all.rb +7 -0
- data/vendor/net-sftp-2.0.5/test/test_dir.rb +47 -0
- data/vendor/net-sftp-2.0.5/test/test_download.rb +252 -0
- data/vendor/net-sftp-2.0.5/test/test_file.rb +159 -0
- data/vendor/net-sftp-2.0.5/test/test_file_factory.rb +48 -0
- data/vendor/net-sftp-2.0.5/test/test_packet.rb +9 -0
- data/vendor/net-sftp-2.0.5/test/test_protocol.rb +17 -0
- data/vendor/net-sftp-2.0.5/test/test_request.rb +71 -0
- data/vendor/net-sftp-2.0.5/test/test_response.rb +53 -0
- data/vendor/net-sftp-2.0.5/test/test_session.rb +741 -0
- data/vendor/net-sftp-2.0.5/test/test_upload.rb +219 -0
- data/vendor/net-ssh-2.5.2/CHANGELOG.rdoc +295 -0
- data/vendor/net-ssh-2.5.2/LICENSE.rdoc +19 -0
- data/vendor/net-ssh-2.5.2/Manifest +132 -0
- data/vendor/net-ssh-2.5.2/README.rdoc +184 -0
- data/vendor/net-ssh-2.5.2/Rakefile +88 -0
- data/vendor/net-ssh-2.5.2/Rudyfile +96 -0
- data/vendor/net-ssh-2.5.2/THANKS.rdoc +19 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh.rb +223 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/agent.rb +23 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/agent/java_pageant.rb +85 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/agent/socket.rb +170 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/constants.rb +18 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/key_manager.rb +253 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/methods/abstract.rb +60 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/methods/hostbased.rb +75 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/methods/keyboard_interactive.rb +70 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/methods/password.rb +43 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/methods/publickey.rb +96 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/pageant.rb +264 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/authentication/session.rb +154 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/buffer.rb +350 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/buffered_io.rb +198 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/config.rb +207 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/connection/channel.rb +630 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/connection/constants.rb +33 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/connection/session.rb +597 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/connection/term.rb +178 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/errors.rb +88 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/key_factory.rb +107 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/known_hosts.rb +141 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/loggable.rb +61 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/packet.rb +102 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/prompt.rb +93 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/proxy/command.rb +75 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/proxy/errors.rb +14 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/proxy/http.rb +94 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/proxy/socks4.rb +70 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/proxy/socks5.rb +142 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/ruby_compat.rb +51 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/service/forward.rb +298 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test.rb +89 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/channel.rb +129 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/extensions.rb +152 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/kex.rb +44 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/local_packet.rb +51 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/packet.rb +81 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/remote_packet.rb +38 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/script.rb +157 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/test/socket.rb +64 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/algorithms.rb +407 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/cipher_factory.rb +106 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/constants.rb +32 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/ctr.rb +95 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac.rb +45 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/abstract.rb +79 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/md5.rb +12 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/md5_96.rb +11 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/none.rb +15 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/ripemd160.rb +13 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/sha1.rb +13 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/sha1_96.rb +11 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/sha2_256.rb +15 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/sha2_256_96.rb +13 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/sha2_512.rb +14 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/hmac/sha2_512_96.rb +13 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/identity_cipher.rb +55 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex.rb +28 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/diffie_hellman_group14_sha1.rb +44 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/diffie_hellman_group1_sha1.rb +216 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha1.rb +80 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/diffie_hellman_group_exchange_sha256.rb +15 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/ecdh_sha2_nistp256.rb +93 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/ecdh_sha2_nistp384.rb +13 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/kex/ecdh_sha2_nistp521.rb +13 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/key_expander.rb +26 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/openssl.rb +237 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/packet_stream.rb +235 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/server_version.rb +71 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/session.rb +278 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/transport/state.rb +206 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/verifiers/lenient.rb +30 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/verifiers/null.rb +12 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/verifiers/strict.rb +53 -0
- data/vendor/net-ssh-2.5.2/lib/net/ssh/version.rb +62 -0
- data/vendor/net-ssh-2.5.2/net-ssh.gemspec +172 -0
- data/vendor/net-ssh-2.5.2/setup.rb +1585 -0
- data/vendor/net-ssh-2.5.2/support/arcfour_check.rb +20 -0
- data/vendor/net-ssh-2.5.2/support/ssh_tunnel_bug.rb +65 -0
- data/vendor/net-ssh-2.5.2/test/README.txt +43 -0
- data/vendor/net-ssh-2.5.2/test/authentication/methods/common.rb +28 -0
- data/vendor/net-ssh-2.5.2/test/authentication/methods/test_abstract.rb +51 -0
- data/vendor/net-ssh-2.5.2/test/authentication/methods/test_hostbased.rb +114 -0
- data/vendor/net-ssh-2.5.2/test/authentication/methods/test_keyboard_interactive.rb +100 -0
- data/vendor/net-ssh-2.5.2/test/authentication/methods/test_password.rb +52 -0
- data/vendor/net-ssh-2.5.2/test/authentication/methods/test_publickey.rb +148 -0
- data/vendor/net-ssh-2.5.2/test/authentication/test_agent.rb +205 -0
- data/vendor/net-ssh-2.5.2/test/authentication/test_key_manager.rb +218 -0
- data/vendor/net-ssh-2.5.2/test/authentication/test_session.rb +106 -0
- data/vendor/net-ssh-2.5.2/test/common.rb +107 -0
- data/vendor/net-ssh-2.5.2/test/configs/eqsign +3 -0
- data/vendor/net-ssh-2.5.2/test/configs/exact_match +8 -0
- data/vendor/net-ssh-2.5.2/test/configs/host_plus +10 -0
- data/vendor/net-ssh-2.5.2/test/configs/multihost +4 -0
- data/vendor/net-ssh-2.5.2/test/configs/nohost +19 -0
- data/vendor/net-ssh-2.5.2/test/configs/numeric_host +4 -0
- data/vendor/net-ssh-2.5.2/test/configs/wild_cards +14 -0
- data/vendor/net-ssh-2.5.2/test/connection/test_channel.rb +467 -0
- data/vendor/net-ssh-2.5.2/test/connection/test_session.rb +488 -0
- data/vendor/net-ssh-2.5.2/test/known_hosts/github +1 -0
- data/vendor/net-ssh-2.5.2/test/manual/test_forward.rb +223 -0
- data/vendor/net-ssh-2.5.2/test/start/test_transport.rb +28 -0
- data/vendor/net-ssh-2.5.2/test/test_all.rb +9 -0
- data/vendor/net-ssh-2.5.2/test/test_buffer.rb +426 -0
- data/vendor/net-ssh-2.5.2/test/test_buffered_io.rb +63 -0
- data/vendor/net-ssh-2.5.2/test/test_config.rb +120 -0
- data/vendor/net-ssh-2.5.2/test/test_key_factory.rb +121 -0
- data/vendor/net-ssh-2.5.2/test/test_known_hosts.rb +13 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_md5.rb +39 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_md5_96.rb +25 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_none.rb +34 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_ripemd160.rb +34 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_sha1.rb +34 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_sha1_96.rb +25 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_sha2_256.rb +35 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_sha2_256_96.rb +25 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_sha2_512.rb +35 -0
- data/vendor/net-ssh-2.5.2/test/transport/hmac/test_sha2_512_96.rb +25 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_diffie_hellman_group14_sha1.rb +13 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_diffie_hellman_group1_sha1.rb +146 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_diffie_hellman_group_exchange_sha1.rb +92 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_diffie_hellman_group_exchange_sha256.rb +33 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_ecdh_sha2_nistp256.rb +161 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_ecdh_sha2_nistp384.rb +37 -0
- data/vendor/net-ssh-2.5.2/test/transport/kex/test_ecdh_sha2_nistp521.rb +37 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_algorithms.rb +330 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_cipher_factory.rb +441 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_hmac.rb +34 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_identity_cipher.rb +40 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_packet_stream.rb +1745 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_server_version.rb +78 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_session.rb +315 -0
- data/vendor/net-ssh-2.5.2/test/transport/test_state.rb +179 -0
- metadata +325 -78
data/Rakefile
CHANGED
@@ -5,23 +5,27 @@ require 'rake'
|
|
5
5
|
require 'jeweler'
|
6
6
|
Jeweler::Tasks.new do |gem|
|
7
7
|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
8
|
-
gem.version = Time.now.strftime "%Y%m%d"
|
8
|
+
gem.version = Time.now.strftime "%Y%m%d.3"
|
9
9
|
gem.name = "abiquo-installer-tests"
|
10
10
|
gem.homepage = "http://github.com/abiquo/abiquo-installer-tests"
|
11
11
|
gem.license = "MIT"
|
12
12
|
gem.summary = %Q{Abiquo Installer Unit Tests}
|
13
13
|
gem.description = %Q{Tests and troubleshoot Abiquo installations}
|
14
|
-
gem.email = "
|
15
|
-
gem.authors = ["Sergio Rubio"]
|
14
|
+
gem.email = "abel.boldu@abiquo.com"
|
15
|
+
gem.authors = ["Sergio Rubio","Abel Boldu"]
|
16
16
|
# Include your dependencies below. Runtime dependencies are required when using your gem,
|
17
17
|
# and development dependencies are only needed for development (ie running rake tasks, tests, etc)
|
18
18
|
gem.add_runtime_dependency 'term-ansicolor', '>= 1.0'
|
19
|
-
gem.add_runtime_dependency 'net-ssh', '>= 2.0'
|
20
|
-
gem.add_runtime_dependency 'net-scp', '>= 1.0'
|
21
|
-
gem.add_runtime_dependency 'net-sftp', '>= 2.0'
|
19
|
+
# gem.add_runtime_dependency 'net-ssh', '>= 2.0'
|
20
|
+
# gem.add_runtime_dependency 'net-scp', '>= 1.0'
|
21
|
+
# gem.add_runtime_dependency 'net-sftp', '>= 2.0'
|
22
22
|
gem.add_runtime_dependency 'iniparse', '>= 1.0'
|
23
23
|
gem.add_runtime_dependency 'mixlib-cli', '>= 1.2'
|
24
|
-
|
24
|
+
gem.files.include %w(
|
25
|
+
lib/
|
26
|
+
vendor/**/*
|
27
|
+
tests/**/*
|
28
|
+
)
|
25
29
|
end
|
26
30
|
Jeweler::RubygemsDotOrgTasks.new
|
27
31
|
|
data/bin/abiquo-installer-tests
CHANGED
@@ -1,4 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
Dir[File.dirname(__FILE__) + '/../vendor/*'].each do |dir|
|
3
|
+
$: << dir + '/lib'
|
4
|
+
end
|
5
|
+
|
2
6
|
require 'rubygems'
|
3
7
|
require 'net/ssh'
|
4
8
|
require 'net/sftp'
|
@@ -14,7 +18,7 @@ class MyCLI
|
|
14
18
|
|
15
19
|
option :user,
|
16
20
|
:short => '-u USER',
|
17
|
-
:long => "--user
|
21
|
+
:long => "--user USER",
|
18
22
|
:description => "SSH user to login with (Default root)",
|
19
23
|
:default => 'root'
|
20
24
|
|
@@ -27,6 +31,11 @@ class MyCLI
|
|
27
31
|
:long => "--host HOST",
|
28
32
|
:description => "Abiquo host IP to test"
|
29
33
|
|
34
|
+
option :local,
|
35
|
+
:long => "--local",
|
36
|
+
:description => "Run the tests locally",
|
37
|
+
:boolean => true
|
38
|
+
|
30
39
|
option :help,
|
31
40
|
:short => "-h",
|
32
41
|
:long => "--help",
|
@@ -53,55 +62,71 @@ $stdout.sync = true
|
|
53
62
|
cli = MyCLI.new
|
54
63
|
cli.parse_options
|
55
64
|
|
56
|
-
required_option cli, :password
|
57
|
-
required_option cli, :host
|
58
|
-
|
59
65
|
TESTS_DIR = File.dirname(__FILE__) + '/../tests/'
|
60
66
|
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
+
if cli.config[:local]
|
68
|
+
#Run the tests local
|
69
|
+
puts "Running the test locally..."
|
70
|
+
Dir.chdir TESTS_DIR
|
71
|
+
output = ""
|
72
|
+
`ruby abiquo_postinst_test.rb`.each_line do |l|
|
73
|
+
output += l
|
74
|
+
puts l
|
67
75
|
end
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
exit 1
|
77
|
-
end
|
76
|
+
if output =~ /(Failure|Error)/m
|
77
|
+
puts "\n>>>>>> TEST FAILED! <<<<<<\n\n".bold.red
|
78
|
+
else
|
79
|
+
puts "\n>>>>>> TEST OK <<<<<<\n\n".bold.green
|
80
|
+
end
|
81
|
+
else
|
82
|
+
required_option cli, :password
|
83
|
+
required_option cli, :host
|
78
84
|
|
79
|
-
begin
|
80
|
-
|
81
|
-
|
82
|
-
|
85
|
+
begin
|
86
|
+
print "Checking pre-requisites... "
|
87
|
+
Net::SSH.start(cli.config[:host], cli.config[:user], :paranoid => false, :password => cli.config[:password]) do |ssh|
|
88
|
+
ssh.exec!("rm -rf /tmp/tests")
|
89
|
+
#ssh.exec!("which gem || yum install -y rubygems --exclude ruby-ee")
|
90
|
+
#ssh.exec!("gem install --no-ri --no-rdoc term-ansicolor iniparse")
|
91
|
+
end
|
92
|
+
puts "Done".green.bold
|
93
|
+
rescue Net::SSH::AuthenticationFailed => e
|
94
|
+
$stderr.puts "Error connecting to the host. Authentication failed."
|
95
|
+
exit 1
|
96
|
+
rescue Exception => e
|
97
|
+
$stderr.puts "Error cleaning previous tests in host #{cli.config[:host]}: #{e.message} #{e.class}"
|
98
|
+
$stderr.puts $@
|
99
|
+
$stderr.puts $!
|
100
|
+
exit 1
|
83
101
|
end
|
84
|
-
puts "Done".green.bold
|
85
|
-
rescue Exception => e
|
86
|
-
$stderr.puts "Error uploading tests to host #{cli.config[:host]}: #{e.message}"
|
87
|
-
exit 1
|
88
|
-
end
|
89
102
|
|
90
|
-
begin
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
ssh.exec!("cd /tmp/tests/ && ruby abiquo_postinst_test.rb") do |ch, stream, data|
|
95
|
-
print data
|
96
|
-
output += data
|
103
|
+
begin
|
104
|
+
print "Uploading tests... "
|
105
|
+
Net::SFTP.start(cli.config[:host], 'root', :password => cli.config[:password], :paranoid => false) do |sftp|
|
106
|
+
sftp.upload! TESTS_DIR, '/tmp/tests/'
|
97
107
|
end
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
108
|
+
puts "Done".green.bold
|
109
|
+
rescue Exception => e
|
110
|
+
$stderr.puts "Error uploading tests to host #{cli.config[:host]}: #{e.message}"
|
111
|
+
exit 1
|
112
|
+
end
|
113
|
+
|
114
|
+
begin
|
115
|
+
Net::SSH.start(cli.config[:host], 'root', :password => cli.config[:password], :paranoid => false) do |ssh|
|
116
|
+
puts "Running tests..."
|
117
|
+
output = ""
|
118
|
+
ssh.exec!("cd /tmp/tests/ && ruby abiquo_postinst_test.rb") do |ch, stream, data|
|
119
|
+
print data
|
120
|
+
output += data
|
121
|
+
end
|
122
|
+
if output =~ /(Failure|Error)/m
|
123
|
+
puts "\n>>>>>> TEST FAILED! <<<<<<\n\n".bold.red
|
124
|
+
else
|
125
|
+
puts "\n>>>>>> TEST OK <<<<<<\n\n".bold.green
|
126
|
+
end
|
102
127
|
end
|
128
|
+
rescue Exception => e
|
129
|
+
$stderr.puts "Error running tests in remote host #{cli.config[:host]}: #{e.message}"
|
130
|
+
exit 1
|
103
131
|
end
|
104
|
-
rescue Exception => e
|
105
|
-
$stderr.puts "Error running tests in remote host #{cli.config[:host]}: #{e.message}"
|
106
|
-
exit 1
|
107
132
|
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'abiquo_platform'
|
2
|
+
require 'abiquo_remote_services'
|
3
|
+
require 'abiquo_server'
|
4
|
+
require 'abiquo_v2v'
|
5
|
+
require 'abiquo_monolithic'
|
6
|
+
require 'abiquo_kvm'
|
7
|
+
require 'abiquo_lvmiscsi'
|
8
|
+
|
9
|
+
class AbiquoCIABTest < Test::Unit::TestCase
|
10
|
+
def test_lvm_tomcat_dir
|
11
|
+
assert File.directory? '/opt/abiquo/lvmiscsi/tomcat/'
|
12
|
+
end
|
13
|
+
|
14
|
+
#
|
15
|
+
# overriding abiquo_platform test
|
16
|
+
# FW can be safely enabled in CIAB installs
|
17
|
+
#
|
18
|
+
def test_firewall_service_enabled
|
19
|
+
assert true
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
class AbiquoKVMTest < Test::Unit::TestCase
|
2
|
+
|
3
|
+
def test_aim_running
|
4
|
+
assert !`ps aux|grep abiquo-aim`.strip.chomp.empty?
|
5
|
+
end
|
6
|
+
|
7
|
+
def test_aim_service_enabled
|
8
|
+
assert ::TestUtils.service_on?('abiquo-aim')
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_libvirtd_service_enabled
|
12
|
+
assert ::TestUtils.service_on?('libvirtd')
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_abiquo_aim_properties_file
|
16
|
+
assert File.exist? '/etc/abiquo-aim.ini'
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_nfs_mounted
|
20
|
+
if !::TestUtils.installer_profiles.include?('cloud-in-a-box')
|
21
|
+
assert !`mount|grep vm_repository`.strip.chomp.empty?
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
class AbiquoLVMISCSITest < Test::Unit::TestCase
|
2
|
+
|
3
|
+
def test_tomcat_running
|
4
|
+
assert !`ps aux|grep java|grep '/opt/abiquo/lvmiscsi/tomcat'`.strip.chomp.empty?
|
5
|
+
end
|
6
|
+
|
7
|
+
def test_tomcat_enabled
|
8
|
+
assert ::TestUtils.service_on?('abiquo-lvmiscsi')
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_firewall_service_enabled
|
12
|
+
unless ::TestUtils.installer_profiles.include? 'cloud-in-a-box'
|
13
|
+
assert !::TestUtils.service_on?('iptables')
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'abiquo_platform'
|
2
|
+
require 'abiquo_remote_services'
|
3
|
+
require 'abiquo_server'
|
4
|
+
require 'abiquo_v2v'
|
5
|
+
|
6
|
+
class AbiquoMonolithicTest < Test::Unit::TestCase
|
7
|
+
def test_webapps
|
8
|
+
%w(am api bpm-async client-premium legal nodecollector ROOT server ssm virtualfactory vsm).each do |w|
|
9
|
+
assert(File.directory? "/opt/abiquo/tomcat/webapps/#{w}")
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
class NFSRepositoryTest < Test::Unit::TestCase
|
2
|
+
|
3
|
+
def test_abiquo_repository_file
|
4
|
+
assert File.exist? '/opt/vm_repository/.abiquo_repository'
|
5
|
+
end
|
6
|
+
|
7
|
+
def test_exports_file
|
8
|
+
assert File.exist? '/etc/exports'
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_exports_file_contents
|
12
|
+
count = 0
|
13
|
+
File.read('/etc/exports').each_line do |l|
|
14
|
+
count += 1 if l =~ /\/opt\/vm_repository/
|
15
|
+
end
|
16
|
+
assert(count == 1)
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_nfs_service_on
|
20
|
+
assert(::TestUtils.service_on? 'nfs')
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
class AbiquoPlatformTest < Test::Unit::TestCase
|
2
|
+
|
3
|
+
def test_version_string
|
4
|
+
assert File.read('/etc/abiquo-release') =~ /1\.8\.5/
|
5
|
+
end
|
6
|
+
|
7
|
+
def test_tomcat_core_version
|
8
|
+
assert `rpm -q abiquo-core` =~ /abiquo-core-1\.8-5\.el5/
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_abiquo_etk_version
|
12
|
+
assert `rpm -q rubygem-abiquo-etk` =~ /0\.5\.7/
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_motd_version
|
16
|
+
assert(File.read('/etc/motd') =~ /(Abiquo Enterprise Edition 1\.8\.5)/m)
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_tomcat_running
|
20
|
+
assert !`ps aux|grep java|grep '/opt/abiquo/tomcat'`.strip.chomp.empty?,
|
21
|
+
"Abiquo Tomcat is not Running"
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_tomcat_enabled
|
25
|
+
assert ::TestUtils.service_on?('abiquo-tomcat'),
|
26
|
+
"abiquo-tomcat service is not enabled"
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_abiquo_dir
|
30
|
+
assert File.directory?('/opt/abiquo/tomcat'),
|
31
|
+
"/opt/abiquo/tomcat directory does not exist"
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_firewall_service_enabled
|
35
|
+
assert !::TestUtils.service_on?('iptables'),
|
36
|
+
"iptables service is enabled. This might be ok but double check if you are having network issues"
|
37
|
+
end
|
38
|
+
|
39
|
+
end
|
@@ -0,0 +1,115 @@
|
|
1
|
+
require 'abiquo_platform'
|
2
|
+
|
3
|
+
class AbiquoRemoteServicesTest < Test::Unit::TestCase
|
4
|
+
|
5
|
+
def test_abiquo_properties_present
|
6
|
+
assert File.exist?('/opt/abiquo/config/abiquo.properties'),
|
7
|
+
'abiquo.properties file not found'
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_redis_running
|
11
|
+
assert !`ps aux|grep java|grep redis`.strip.chomp.empty?,
|
12
|
+
'redis is not running'
|
13
|
+
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_nfs_mounted
|
17
|
+
if not ::TestUtils.installer_profiles.include?('abiquo-nfs-repository') and \
|
18
|
+
!::TestUtils.installer_profiles.include?('cloud-in-a-box')
|
19
|
+
assert !`mount|grep vm_repository`.strip.chomp.empty?
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_dhcpd_enabled
|
24
|
+
assert ::TestUtils.service_on?('dhcpd')
|
25
|
+
end
|
26
|
+
|
27
|
+
def test_am
|
28
|
+
assert ::TestUtils.web_service_ok?('/am/check')
|
29
|
+
end
|
30
|
+
|
31
|
+
def test_vsm
|
32
|
+
assert ::TestUtils.web_service_ok?('/vsm/check')
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_nodecollector
|
36
|
+
assert ::TestUtils.web_service_ok?('/nodecollector/check')
|
37
|
+
end
|
38
|
+
|
39
|
+
def test_ssm
|
40
|
+
assert ::TestUtils.web_service_ok?('/ssm/check')
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_virtualfactory
|
44
|
+
assert ::TestUtils.web_service_ok?('/virtualfactory/check')
|
45
|
+
end
|
46
|
+
|
47
|
+
def test_abiquo_repository_file
|
48
|
+
assert File.exist? '/opt/vm_repository/.abiquo_repository'
|
49
|
+
end
|
50
|
+
|
51
|
+
def test_properties
|
52
|
+
require 'iniparse'
|
53
|
+
config = IniParse.parse(File.read('/opt/abiquo/config/abiquo.properties'))
|
54
|
+
assert !config['remote-services'].nil?,
|
55
|
+
"[remote-services] section in /opt/abiquo/config/abiquo.properties is missing"
|
56
|
+
|
57
|
+
assert !config['remote-services']['abiquo.virtualfactory.hyperv.repositoryLocation'].nil?,
|
58
|
+
"abiquo.virtualfactory.hyperv.repositoryLocation property is missing in abiquo.properties"
|
59
|
+
|
60
|
+
assert !config['remote-services']['abiquo.rabbitmq.username'].nil?,
|
61
|
+
"abiquo.rabbitmq.username property is missing in abiquo.properties"
|
62
|
+
|
63
|
+
assert !config['remote-services']['abiquo.rabbitmq.password'].nil?,
|
64
|
+
"abiquo.rabbitmq.password property is missing in abiquo.properties"
|
65
|
+
|
66
|
+
assert !config['remote-services']['abiquo.rabbitmq.host'].nil?,
|
67
|
+
"abiquo.rabbitmq.host property is missing in abiquo.properties"
|
68
|
+
|
69
|
+
assert !config['remote-services']['abiquo.rabbitmq.port'].nil?,
|
70
|
+
"abiquo.rabbitmq.port property is missing in abiquo.properties"
|
71
|
+
|
72
|
+
assert !config['remote-services']['abiquo.appliancemanager.localRepositoryPath'].nil?,
|
73
|
+
"abiquo.appliancemanager.localRepositoryPath property is missing in abiquo.properties"
|
74
|
+
|
75
|
+
assert !config['remote-services']['abiquo.appliancemanager.repositoryLocation'].nil?,
|
76
|
+
"abiquo.appliancemanager.repositoryLocation property is missing in abiquo.properties"
|
77
|
+
|
78
|
+
assert !config['remote-services']['abiquo.virtualfactory.xenserver.repositoryLocation'].nil?,
|
79
|
+
"abiquo.virtualfactory.xenserver.repositoryLocation property is missing in abiquo.properties"
|
80
|
+
|
81
|
+
assert !config['remote-services']['abiquo.virtualfactory.vmware.repositoryLocation'].nil?,
|
82
|
+
"abiquo.virtualfactory.vmware.repositoryLocation property is missing in abiquo.properties"
|
83
|
+
|
84
|
+
assert !config['remote-services']['abiquo.virtualfactory.storagelink.user'].nil?,
|
85
|
+
"abiquo.virtualfactory.storagelink.user property is missing in abiquo.properties"
|
86
|
+
|
87
|
+
assert !config['remote-services']['abiquo.virtualfactory.storagelink.password'].nil?,
|
88
|
+
"abiquo.virtualfactory.storagelink.password property is missing in abiquo.properties"
|
89
|
+
|
90
|
+
assert !config['remote-services']['abiquo.virtualfactory.storagelink.address'].nil?,
|
91
|
+
"abiquo.virtualfactory.storagelink.address property is missing in abiquo.properties"
|
92
|
+
|
93
|
+
assert !config['remote-services']['abiquo.redis.port'].nil?,
|
94
|
+
"abiquo.redis.port is missing in abiquo.properties"
|
95
|
+
|
96
|
+
assert !config['remote-services']['abiquo.redis.host'].nil?,
|
97
|
+
"abiquo.redis.host is missing in abiquo.properties"
|
98
|
+
|
99
|
+
assert !config['remote-services']['abiquo.storagemanager.netapp.user'].nil?,
|
100
|
+
"abiquo.storagemanager.netapp.user is missing in abiquo.properties"
|
101
|
+
|
102
|
+
assert !config['remote-services']['abiquo.storagemanager.netapp.password'].nil?,
|
103
|
+
"abiquo.storagemanager.netapp.password is missing in abiquo.properties"
|
104
|
+
|
105
|
+
assert !config['remote-services']['abiquo.dvs.enabled'].nil?,
|
106
|
+
"abiquo.dvs.enabled is missing in abiquo.properties"
|
107
|
+
|
108
|
+
assert !config['remote-services']['abiquo.dvs.vcenter.user'].nil?,
|
109
|
+
"abiquo.dvs.vcenter.user is missing in abiquo.properties"
|
110
|
+
|
111
|
+
assert !config['remote-services']['abiquo.dvs.vcenter.password'].nil?,
|
112
|
+
"abiquo.dvs.vcenter.password is missing in abiquo.properties"
|
113
|
+
end
|
114
|
+
|
115
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
require 'abiquo_platform'
|
2
|
+
|
3
|
+
class AbiquoServerTest < Test::Unit::TestCase
|
4
|
+
|
5
|
+
def test_abiquo_properties_present
|
6
|
+
assert File.exist? '/opt/abiquo/config/abiquo.properties'
|
7
|
+
end
|
8
|
+
|
9
|
+
def test_mysql_schema_present
|
10
|
+
assert(`mysql -e 'show databases' 2>&1` =~ /kinton/m)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_mysql_running
|
14
|
+
assert !`service mysqld status|grep running`.strip.chomp.empty?
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_rabbit_running
|
18
|
+
assert !`ps aux|grep java|grep rabbitmq`.strip.chomp.empty?
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_server_ws
|
22
|
+
assert ::TestUtils.web_service_ok?('/server/messagebroker/amf')
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_properties
|
26
|
+
require 'iniparse'
|
27
|
+
config = IniParse.parse(File.read('/opt/abiquo/config/abiquo.properties'))
|
28
|
+
assert !config['server'].nil?,
|
29
|
+
"[server] section is missing in missing in abiquo.properties"
|
30
|
+
|
31
|
+
assert !config['server']['abiquo.server.sessionTimeout'].nil?,
|
32
|
+
"abiquo.server.sessionTimeout is missing in abiquo.properties"
|
33
|
+
|
34
|
+
assert !config['server']['abiquo.server.mail.server'].nil?,
|
35
|
+
"abiquo.server.mail.server is missing in abiquo.properties"
|
36
|
+
|
37
|
+
assert !config['server']['abiquo.server.mail.user'].nil?,
|
38
|
+
"abiquo.server.mail.user is missing in abiquo.properties"
|
39
|
+
|
40
|
+
assert !config['server']['abiquo.server.mail.password'].nil?,
|
41
|
+
"abiquo.server.mail.password is missing in abiquo.properties"
|
42
|
+
|
43
|
+
assert !config['server']['abiquo.rabbitmq.username'].nil?,
|
44
|
+
"abiquo.rabbitmq.username is missing in abiquo.properties"
|
45
|
+
|
46
|
+
assert !config['server']['abiquo.rabbitmq.password'].nil?,
|
47
|
+
"abiquo.rabbitmq.host is missing in abiquo.properties"
|
48
|
+
|
49
|
+
assert !config['server']['abiquo.rabbitmq.host'].nil?,
|
50
|
+
"abiquo.rabbitmq.host is missing in abiquo.properties"
|
51
|
+
|
52
|
+
assert !config['server']['abiquo.rabbitmq.port'].nil?,
|
53
|
+
"abiquo.rabbitmq.port is missing in abiquo.properties"
|
54
|
+
|
55
|
+
assert !config['server']['abiquo.database.user'].nil?,
|
56
|
+
"abiquo.database.user is missing in abiquo.properties"
|
57
|
+
|
58
|
+
assert !config['server']['abiquo.auth.module'].nil?,
|
59
|
+
"abiquo.auth.module is missing in abiquo.properties"
|
60
|
+
end
|
61
|
+
|
62
|
+
end
|
63
|
+
|