forked from Azure/WALinuxAgent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- correct scvmm references - add unit tests for scvmm detection - ensure all matching devices are mounted and examined for scvmm configuration - exit once vmm startup script is found and executed - fixes Azure#185
- Loading branch information
1 parent
3c5a9e7
commit bf1d113
Showing
5 changed files
with
128 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
# Copyright 2014 Microsoft Corporation | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
# Requires Python 2.4+ and Openssl 1.0+ | ||
# | ||
# Implements parts of RFC 2131, 1541, 1497 and | ||
# http://msdn.microsoft.com/en-us/library/cc227282%28PROT.10%29.aspx | ||
# http://msdn.microsoft.com/en-us/library/cc227259%28PROT.13%29.aspx | ||
|
||
import mock | ||
from tests.tools import * | ||
|
||
import azurelinuxagent.daemon.scvmm as scvmm | ||
from azurelinuxagent.daemon.main import * | ||
from azurelinuxagent.common.osutil.default import DefaultOSUtil | ||
|
||
class TestSCVMM(AgentTestCase): | ||
def test_scvmm_detection_with_file(self): | ||
# setup | ||
conf.get_dvd_mount_point = Mock(return_value=self.tmp_dir) | ||
conf.get_detect_scvmm_env = Mock(return_value=True) | ||
scvmm_file = os.path.join(self.tmp_dir, scvmm.VMM_CONF_FILE_NAME) | ||
fileutil.write_file(scvmm_file, "") | ||
|
||
patch = mock.patch.object(scvmm.ScvmmHandler, 'start_scvmm_agent').start() | ||
|
||
# execute | ||
with self.assertRaises(SystemExit): | ||
get_daemon_handler().daemon() | ||
|
||
# assert | ||
patch.assert_called() | ||
|
||
# cleanup | ||
os.remove(scvmm_file) | ||
|
||
|
||
def test_scvmm_detection_with_multiple_cdroms(self): | ||
# setup | ||
conf.get_dvd_mount_point = Mock(return_value=self.tmp_dir) | ||
conf.get_detect_scvmm_env = Mock(return_value=True) | ||
|
||
patch_mount = mock.patch.object(DefaultOSUtil, 'mount_dvd').start() | ||
|
||
# execute | ||
with patch('os.listdir', return_value=["sr0", "sr1", "sr2"]): | ||
scvmm.ScvmmHandler().detect_scvmm_env() | ||
|
||
# assert | ||
assert patch_mount.call_count == 3 | ||
assert patch_mount.call_args_list[0][1]['dvd'] == '/dev/sr0' | ||
assert patch_mount.call_args_list[1][1]['dvd'] == '/dev/sr1' | ||
assert patch_mount.call_args_list[2][1]['dvd'] == '/dev/sr2' | ||
|
||
|
||
def test_scvmm_detection_without_file(self): | ||
# setup | ||
conf.get_dvd_mount_point = Mock(return_value=self.tmp_dir) | ||
conf.get_detect_scvmm_env = Mock(return_value=True) | ||
scvmm_file = os.path.join(self.tmp_dir, scvmm.VMM_CONF_FILE_NAME) | ||
if os.path.exists(scvmm_file): | ||
os.remove(scvmm_file) | ||
|
||
patch_start = mock.patch.object(scvmm.ScvmmHandler, 'start_scvmm_agent').start() | ||
|
||
# execute | ||
scvmm.ScvmmHandler().detect_scvmm_env() | ||
|
||
# assert | ||
patch_start.assert_not_called() | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main() |