1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
|
# pyinfra
# File: tests/test_api.py
# Desc: tests for the pyinfra API
from unittest import TestCase
from socket import gaierror, error as socket_error
from mock import patch, mock_open
from paramiko.agent import AgentRequestHandler
from paramiko import (
SSHClient, SFTPClient, RSAKey,
SSHException, AuthenticationException, PasswordRequiredException
)
# Patch in paramiko fake classes
from pyinfra.api import ssh
from .paramiko_util import (
FakeSSHClient, FakeSFTPClient, FakeRSAKey,
FakeAgentRequestHandler, FakeChannel, FakeBuffer
)
from pyinfra import pseudo_state, pseudo_host
from pyinfra.api import Inventory, Config, State
from pyinfra.api.ssh import connect_all, connect
from pyinfra.api.operation import add_op, add_limited_op
from pyinfra.api.operations import run_ops
from pyinfra.api.exceptions import PyinfraError, NoHostError, NoGroupError
from pyinfra.modules import files, server
from .util import create_host
def make_inventory(hosts=('somehost', 'anotherhost'), **kwargs):
return Inventory(
(hosts, {}),
test_group=([
'somehost'
], {
'group_data': 'hello world'
}),
ssh_user='vagrant',
**kwargs
)
class TestInventoryApi(TestCase):
def test_inventory_creation(self):
inventory = make_inventory()
# Check length
self.assertEqual(len(inventory.hosts), 2)
# Get a host
host = inventory['somehost']
self.assertEqual(host.data.ssh_user, 'vagrant')
# Check our group data
self.assertEqual(
inventory.get_group_data('test_group').dict(),
{'group_data': 'hello world'}
)
def test_tuple_host_group_inventory_creation(self):
inventory = make_inventory(
hosts=[
('somehost', {'some_data': 'hello'}),
],
tuple_group=([
('somehost', {'another_data': 'world'}),
], {
'tuple_group_data': 'word'
})
)
# Check host data
host = inventory['somehost']
self.assertEqual(host.data.some_data, 'hello')
self.assertEqual(host.data.another_data, 'world')
# Check group data
self.assertEqual(host.data.tuple_group_data, 'word')
def test_host_and_group_errors(self):
inventory = make_inventory()
with self.assertRaises(NoHostError):
inventory['i-dont-exist']
with self.assertRaises(NoGroupError):
getattr(inventory, 'i-dont-exist')
class TestSSHApi(TestCase):
def setUp(self):
self.fake_connect_patch = patch('pyinfra.api.ssh.SSHClient.connect')
self.fake_connect_mock = self.fake_connect_patch.start()
self.fake_get_transport_patch = patch('pyinfra.api.ssh.SSHClient.get_transport')
self.fake_get_transport_patch.start()
self.fake_agentrequesthandler_patch = patch('pyinfra.api.ssh.AgentRequestHandler')
self.fake_agentrequesthandler_patch.start()
def tearDown(self):
self.fake_connect_patch.stop()
self.fake_get_transport_patch.stop()
self.fake_agentrequesthandler_patch.stop()
def test_connect_all(self):
inventory = make_inventory()
state = State(inventory, Config())
connect_all(state)
self.assertEqual(len(state.connected_hosts), 2)
def test_connect_all_password(self):
'''
Ensure we can connect using a password.
'''
inventory = make_inventory(ssh_password='test')
# Get a host
host = inventory['somehost']
self.assertEqual(host.data.ssh_password, 'test')
state = State(inventory, Config())
connect_all(state)
self.assertEqual(len(state.connected_hosts), 2)
def test_connect_exceptions_fail(self):
'''
Ensure that connection exceptions are captured and return None.
'''
with patch('pyinfra.api.ssh.SSHClient', FakeSSHClient):
for exception in (
AuthenticationException, SSHException,
gaierror, socket_error, EOFError
):
host = create_host(name='nowt', data={
'ssh_hostname': exception
})
self.assertEqual(connect(host), None)
def test_connect_with_ssh_key(self):
state = State(make_inventory(hosts=(
('somehost', {'ssh_key': 'testkey'}),
)), Config())
with patch('pyinfra.api.ssh.path.isfile', lambda *args, **kwargs: True), \
patch('pyinfra.api.ssh.RSAKey.from_private_key_file') as fake_key_open:
fake_key = FakeRSAKey()
fake_key_open.return_value = fake_key
state.deploy_dir = '/'
connect_all(state)
# Check the key was created properly
fake_key_open.assert_called_with(filename='testkey')
# And check the Paramiko SSH call was correct
self.fake_connect_mock.assert_called_with(
'somehost',
allow_agent=False,
look_for_keys=False,
pkey=fake_key,
port=22,
timeout=10,
username='vagrant'
)
def test_connect_with_ssh_key_password(self):
state = State(make_inventory(hosts=(
('somehost', {'ssh_key': 'testkey', 'ssh_key_password': 'testpass'}),
)), Config())
with patch('pyinfra.api.ssh.path.isfile', lambda *args, **kwargs: True), \
patch('pyinfra.api.ssh.RSAKey.from_private_key_file') as fake_key_open:
def fake_key_open_fail(*args, **kwargs):
if 'password' not in kwargs:
raise PasswordRequiredException()
fake_key_open.side_effect = fake_key_open_fail
fake_key = FakeRSAKey()
fake_key_open.return_value = fake_key
state.deploy_dir = '/'
connect_all(state)
# Check the key was created properly
fake_key_open.assert_called_with(filename='testkey', password='testpass')
def test_connect_with_missing_ssh_key(self):
state = State(make_inventory(hosts=(
('somehost', {'ssh_key': 'testkey'}),
)), Config())
with self.assertRaises(IOError) as e:
connect_all(state)
# Ensure pyinfra style IOError
self.assertTrue(e.exception.args[0].startswith('No such private key file:'))
class PatchSSHTest(TestCase):
'''
A test class that patches out the paramiko SSH parts such that they succeed as normal.
The SSH tests above check these are called correctly.
'''
@classmethod
def setUpClass(cls):
ssh.SSHClient = FakeSSHClient
ssh.SFTPClient = FakeSFTPClient
ssh.RSAKey = FakeRSAKey
ssh.AgentRequestHandler = FakeAgentRequestHandler
@classmethod
def tearDownClass(cls):
ssh.SSHClient = SSHClient
ssh.SFTPClient = SFTPClient
ssh.RSAKey = RSAKey
ssh.AgentRequestHandler = AgentRequestHandler
class TestStateApi(PatchSSHTest):
def test_fail_percent(self):
inventory = make_inventory(('somehost', SSHException, 'anotherhost'))
state = State(inventory, Config(FAIL_PERCENT=1))
# Ensure we would fail at this point
with self.assertRaises(PyinfraError) as context:
connect_all(state)
self.assertEqual(context.exception.message, 'Over 1% of hosts failed')
# Ensure the other two did connect
self.assertEqual(len(state.connected_hosts), 2)
class TestOperationsApi(PatchSSHTest):
def test_op(self):
state = State(make_inventory(), Config())
# Enable printing on this test to catch any exceptions in the formatting
state.print_output = True
state.print_fact_info = True
state.print_fact_output = True
state.print_lines = True
connect_all(state)
add_op(
state, files.file,
'/var/log/pyinfra.log',
user='pyinfra',
group='pyinfra',
mode='644',
sudo=True,
sudo_user='test_sudo',
su_user='test_su',
ignore_errors=True,
env={
'TEST': 'what',
}
)
# Ensure we have an op
self.assertEqual(len(state.op_order), 1)
first_op_hash = state.op_order[0]
# Ensure the op name
self.assertEqual(
state.op_meta[first_op_hash]['names'],
{'Files/File'}
)
# Ensure the commands
self.assertEqual(
state.ops['somehost'][first_op_hash]['commands'],
[
'touch /var/log/pyinfra.log',
'chmod 644 /var/log/pyinfra.log',
'chown pyinfra:pyinfra /var/log/pyinfra.log'
]
)
# Ensure the meta
meta = state.op_meta[first_op_hash]
self.assertEqual(meta['sudo'], True)
self.assertEqual(meta['sudo_user'], 'test_sudo')
self.assertEqual(meta['su_user'], 'test_su')
self.assertEqual(meta['ignore_errors'], True)
# Ensure run ops works
run_ops(state)
# Ensure ops completed OK
self.assertEqual(state.results['somehost']['success_ops'], 1)
self.assertEqual(state.results['somehost']['ops'], 1)
self.assertEqual(state.results['anotherhost']['success_ops'], 1)
self.assertEqual(state.results['anotherhost']['ops'], 1)
# And w/o errors
self.assertEqual(state.results['somehost']['error_ops'], 0)
self.assertEqual(state.results['anotherhost']['error_ops'], 0)
# And with the different modes
run_ops(state, serial=True)
run_ops(state, no_wait=True)
def test_file_op(self):
state = State(make_inventory(), Config())
connect_all(state)
with patch('pyinfra.modules.files.path.isfile', lambda *args, **kwargs: True):
# Test normal
add_op(
state, files.put,
{'First op name'},
'files/file.txt',
'/home/vagrant/file.txt'
)
# And with sudo
add_op(
state, files.put,
'files/file.txt',
'/home/vagrant/file.txt',
sudo=True,
sudo_user='pyinfra'
)
# And with su
add_op(
state, files.put,
'files/file.txt',
'/home/vagrant/file.txt',
sudo=True,
su_user='pyinfra'
)
# Ensure we have all ops
self.assertEqual(len(state.op_order), 3)
first_op_hash = state.op_order[0]
# Ensure first op is the right one
self.assertEqual(
state.op_meta[first_op_hash]['names'],
{'First op name'}
)
# Ensure first op has the right (upload) command
self.assertEqual(
state.ops['somehost'][first_op_hash]['commands'],
[
('files/file.txt', '/home/vagrant/file.txt')
]
)
# Ensure second op has sudo/sudo_user
self.assertEqual(state.op_meta[state.op_order[1]]['sudo'], True)
self.assertEqual(state.op_meta[state.op_order[1]]['sudo_user'], 'pyinfra')
# Ensure third has su_user
self.assertEqual(state.op_meta[state.op_order[2]]['su_user'], 'pyinfra')
# Check run ops works
with patch('pyinfra.api.util.open', mock_open(read_data='test!'), create=True):
run_ops(state)
# Ensure ops completed OK
self.assertEqual(state.results['somehost']['success_ops'], 3)
self.assertEqual(state.results['somehost']['ops'], 3)
self.assertEqual(state.results['anotherhost']['success_ops'], 3)
self.assertEqual(state.results['anotherhost']['ops'], 3)
# And w/o errors
self.assertEqual(state.results['somehost']['error_ops'], 0)
self.assertEqual(state.results['anotherhost']['error_ops'], 0)
def test_limited_op(self):
inventory = make_inventory()
state = State(inventory, Config())
connect_all(state)
# Add op to both hosts
add_op(state, server.shell, 'echo "hi"')
# Add op to just the first host
add_limited_op(
state, server.user, inventory['somehost'],
'somehost_user'
)
# Ensure there are two ops
self.assertEqual(len(state.op_order), 2)
# Ensure somehost has two ops and anotherhost only has the one
self.assertEqual(len(state.ops['somehost']), 2)
self.assertEqual(len(state.ops['anotherhost']), 1)
def test_run_once_serial_op(self):
inventory = make_inventory()
state = State(inventory, Config())
connect_all(state)
# Add a run once op
add_op(state, server.shell, 'echo "hi"', run_once=True, serial=True)
# Ensure it's added to op_order
self.assertEqual(len(state.op_order), 1)
# Ensure between the two hosts we only run the one op
self.assertEqual(len(state.ops['somehost']) + len(state.ops['anotherhost']), 1)
# Check run works
run_ops(state)
self.assertEqual((
state.results['somehost']['success_ops']
+ state.results['anotherhost']['success_ops']
), 1)
def test_full_op_fail(self):
inventory = make_inventory()
state = State(inventory, Config())
connect_all(state)
add_op(state, server.shell, 'echo "hi"')
with patch('pyinfra.api.operations.run_shell_command') as fake_run_command:
fake_channel = FakeChannel(1)
fake_run_command.return_value = (
fake_channel,
FakeBuffer('', fake_channel),
FakeBuffer('', fake_channel)
)
with self.assertRaises(PyinfraError) as e:
run_ops(state)
self.assertEqual(e.exception.args[0], 'No hosts remaining!')
# Ensure the op was not flagged as success
self.assertEqual(state.results['somehost']['success_ops'], 0)
# And was flagged asn an error
self.assertEqual(state.results['somehost']['error_ops'], 1)
def test_ignore_errors_op_fail(self):
inventory = make_inventory()
state = State(inventory, Config())
connect_all(state)
add_op(state, server.shell, 'echo "hi"', ignore_errors=True)
with patch('pyinfra.api.operations.run_shell_command') as fake_run_command:
fake_channel = FakeChannel(1)
fake_run_command.return_value = (
fake_channel,
FakeBuffer('', fake_channel),
FakeBuffer('', fake_channel)
)
# This should run OK
run_ops(state)
# Ensure the op was added to results
self.assertEqual(state.results['somehost']['ops'], 1)
self.assertEqual(state.results['somehost']['error_ops'], 1)
# But not as a success
self.assertEqual(state.results['somehost']['success_ops'], 0)
def test_pseudo_op(self):
inventory = make_inventory()
state = State(inventory, Config())
connect_all(state)
pseudo_state.set(state)
pseudo_host.set(inventory['somehost'])
# Exceute the op "bare"
server.shell('echo "hi"')
# Ensure this is ignored
state.active = False
server.shell('echo "hi 2"')
# We should now have one op
self.assertEqual(len(state.op_order), 1)
# Ensure only somehost has actual op
self.assertEqual(len(state.ops['somehost']), 1)
self.assertEqual(len(state.ops['anotherhost']), 0)
# Check we can't call it inside another op
state.active = True
state.in_op = True
with self.assertRaises(PyinfraError):
server.shell('echo "hi 3"')
pseudo_state.reset()
pseudo_host.reset()
def test_pipelining_active_works(self):
state = State(make_inventory(), Config())
connect_all(state)
state.pipelining = True
add_op(state, server.shell, 'echo "hi"')
|