Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Unified Diff: client/tests/kvm/tests/migration_with_file_transfer.py

Issue 6124004: Revert "Merge remote branch 'cros/upstream' into autotest-rebase" (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/tests/kvm/tests/migration_multi_host.py ('k') | client/tests/kvm/tests/migration_with_reboot.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/kvm/tests/migration_with_file_transfer.py
diff --git a/client/tests/kvm/tests/migration_with_file_transfer.py b/client/tests/kvm/tests/migration_with_file_transfer.py
deleted file mode 100644
index d31135052ae606b7fcbad134384435b2ce086dd8..0000000000000000000000000000000000000000
--- a/client/tests/kvm/tests/migration_with_file_transfer.py
+++ /dev/null
@@ -1,92 +0,0 @@
-import logging, time, os
-from autotest_lib.client.common_lib import utils, error
-from autotest_lib.client.bin import utils as client_utils
-import kvm_subprocess, kvm_test_utils, kvm_utils
-
-
-def run_migration_with_file_transfer(test, params, env):
- """
- KVM migration test:
- 1) Get a live VM and clone it.
- 2) Verify that the source VM supports migration. If it does, proceed with
- the test.
- 3) Reboot the VM
- 4) Send a migration command to the source VM and wait until it's finished.
- 5) Kill off the source VM.
- 6) Log into the destination VM after the migration is finished.
-
- @param test: kvm test object.
- @param params: Dictionary with test parameters.
- @param env: Dictionary with the test environment.
- """
- vm = kvm_test_utils.get_living_vm(env, params.get("main_vm"))
- timeout = int(params.get("login_timeout", 360))
- session = kvm_test_utils.wait_for_login(vm, timeout=timeout)
-
- mig_timeout = float(params.get("mig_timeout", "3600"))
- mig_protocol = params.get("migration_protocol", "tcp")
-
- # params of transfer test
- username = vm.params.get("username", "")
- password = vm.params.get("password", "")
- client = vm.params.get("file_transfer_client")
- address = vm.get_address(0)
- port = vm.get_port(int(params.get("file_transfer_port")))
- log_filename = ("migration-transfer-%s-to-%s-%s.log" %
- (vm.name, address,
- kvm_utils.generate_random_string(4)))
- host_path = "/tmp/file-%s" % kvm_utils.generate_random_string(6)
- host_path_returned = "%s-returned" % host_path
- guest_path = params.get("guest_path", "/tmp/file")
- file_size = params.get("file_size", "500")
- transfer_timeout = int(params.get("transfer_timeout", "240"))
-
- try:
- utils.run("dd if=/dev/urandom of=%s bs=1M count=%s" % (host_path,
- file_size))
-
- logging.info("Transferring file from host to guest")
- bg = kvm_utils.Thread(kvm_utils.copy_files_to,
- (address, client, username, password, port,
- host_path, guest_path, log_filename,
- transfer_timeout))
- bg.start()
- try:
- while bg.is_alive():
- logging.info("File transfer not ended, starting a round of "
- "migration...")
- vm = kvm_test_utils.migrate(vm, env, mig_timeout, mig_protocol)
- finally:
- # bg.join() returns the value returned by copy_files_to()
- if not bg.join():
- raise error.TestFail("File transfer from host to guest failed")
-
- logging.info("Transferring file back from guest to host")
- bg = kvm_utils.Thread(kvm_utils.copy_files_from,
- (address, client, username, password, port,
- host_path_returned, guest_path, log_filename,
- transfer_timeout))
- bg.start()
- try:
- while bg.is_alive():
- logging.info("File transfer not ended, starting a round of "
- "migration...")
- vm = kvm_test_utils.migrate(vm, env, mig_timeout, mig_protocol)
- finally:
- if not bg.join():
- raise error.TestFail("File transfer from guest to host failed")
-
- # Make sure the returned file is indentical to the original one
- orig_hash = client_utils.hash_file(host_path)
- returned_hash = client_utils.hash_file(host_path_returned)
- if orig_hash != returned_hash:
- raise error.TestFail("Returned file hash (%s) differs from "
- "original one (%s)" % (returned_hash,
- orig_hash))
-
- finally:
- session.close()
- if os.path.isfile(host_path):
- os.remove(host_path)
- if os.path.isfile(host_path_returned):
- os.remove(host_path_returned)
« no previous file with comments | « client/tests/kvm/tests/migration_multi_host.py ('k') | client/tests/kvm/tests/migration_with_reboot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698