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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
|
# ClusterShell.CLI.Clush test suite
# Written by S. Thiell
"""Unit test for CLI.Clush"""
import codecs
import errno
import os
from os.path import basename, dirname
import pwd
import re
import resource
import signal
import sys
import tempfile
from textwrap import dedent
import threading
import time
import unittest
from subprocess import Popen, PIPE
from TLib import *
import ClusterShell.CLI.Clush
from ClusterShell.CLI.Clush import main
from ClusterShell.NodeSet import NodeSet
from ClusterShell.NodeSet import set_std_group_resolver, \
set_std_group_resolver_config
from ClusterShell.Task import task_cleanup
from ClusterShell.Worker.EngineClient import EngineClientNotSupportedError
class CLIClushTest_A(unittest.TestCase):
"""Unit test class for testing CLI/Clush.py"""
def setUp(self):
"""define constants used in tests"""
s = "%s: ok\n" % HOSTNAME
self.output_ok = s.encode()
s = "\x1b[94m%s: \x1b[0mok\n" % HOSTNAME
self.output_ok_color = s.encode()
self.soft, self.hard = resource.getrlimit(resource.RLIMIT_NOFILE)
def tearDown(self):
"""cleanup all tasks"""
task_cleanup()
# we played with fd_max: restore original nofile resource limits
resource.setrlimit(resource.RLIMIT_NOFILE, (self.soft, self.hard))
def _clush_t(self, args, stdin, expected_stdout, expected_rc=0,
expected_stderr=None):
"""This new version allows code coverage checking by calling clush's
main entry point."""
def raw_input_mock(prompt):
# trusty sleep
wait_time = 60
start = time.time()
while time.time() - start < wait_time:
time.sleep(wait_time - (time.time() - start))
return ""
try:
raw_input_save = ClusterShell.CLI.Clush.raw_input
except:
raw_input_save = raw_input
ClusterShell.CLI.Clush.raw_input = raw_input_mock
try:
CLI_main(self, main, ['clush'] + args, stdin, expected_stdout,
expected_rc, expected_stderr)
finally:
ClusterShell.CLI.Clush.raw_input = raw_input_save
def test_000_display(self):
"""test clush (display options)"""
self._clush_t(["-w", HOSTNAME, "true"], None, b"")
s = "%s: ok ok\n" % HOSTNAME
exp_output2 = s.encode()
self._clush_t(["-w", HOSTNAME, "echo", "ok"], None, self.output_ok)
self._clush_t(["-w", HOSTNAME, "echo", "ok", "ok"], None, exp_output2)
self._clush_t(["-N", "-w", HOSTNAME, "echo", "ok", "ok"], None,
b"ok ok\n")
self._clush_t(["-w", "badhost,%s" % HOSTNAME, "-x", "badhost", "echo",
"ok"], None, self.output_ok)
self._clush_t(["-qw", HOSTNAME, "echo", "ok"], None, self.output_ok)
self._clush_t(["-vw", HOSTNAME, "echo", "ok"], None, self.output_ok)
self._clush_t(["-qvw", HOSTNAME, "echo", "ok"], None, self.output_ok)
self._clush_t(["-Sw", HOSTNAME, "echo", "ok"], None, self.output_ok)
self._clush_t(["-Sqw", HOSTNAME, "echo", "ok"], None, self.output_ok)
self._clush_t(["-Svw", HOSTNAME, "echo", "ok"], None, self.output_ok)
self._clush_t(["--nostdin", "-w", HOSTNAME, "echo", "ok"], None,
self.output_ok)
self._clush_t(["-w", HOSTNAME, "--color=always", "echo", "ok"], None,
self.output_ok_color)
self._clush_t(["-w", HOSTNAME, "--color=never", "echo", "ok"], None,
self.output_ok)
# issue #352
self._clush_t(["-N", "-R", "exec", "-w", 'foo[1-2]', "-b",
"echo", "test"], None, b"test\n")
def test_001_display_tty(self):
"""test clush (display options) [tty]"""
setattr(ClusterShell.CLI.Clush, '_f_user_interaction', True)
try:
self.test_000_display()
finally:
delattr(ClusterShell.CLI.Clush, '_f_user_interaction')
def test_002_fanout(self):
"""test clush (fanout)"""
self._clush_t(["-f", "10", "-w", HOSTNAME, "true"], None, b"")
self._clush_t(["-f", "1", "-w", HOSTNAME, "true"], None, b"")
self._clush_t(["-f", "1", "-w", HOSTNAME, "echo", "ok"], None,
self.output_ok)
def test_003_fanout_tty(self):
"""test clush (fanout) [tty]"""
setattr(ClusterShell.CLI.Clush, '_f_user_interaction', True)
try:
self.test_002_fanout()
finally:
delattr(ClusterShell.CLI.Clush, '_f_user_interaction')
def test_004_ssh_options(self):
"""test clush (ssh options)"""
self._clush_t(["-o", "-oStrictHostKeyChecking=no", "-w", HOSTNAME,
"echo", "ok"], None, self.output_ok)
self._clush_t(["-o", "-oStrictHostKeyChecking=no -oForwardX11=no",
"-w", HOSTNAME, "echo", "ok"], None, self.output_ok)
self._clush_t(["-o", "-oStrictHostKeyChecking=no", "-o",
"-oForwardX11=no", "-w", HOSTNAME, "echo", "ok"], None,
self.output_ok)
self._clush_t(["-o-oStrictHostKeyChecking=no", "-o-oForwardX11=no",
"-w", HOSTNAME, "echo", "ok"], None, self.output_ok)
self._clush_t(["-u", "30", "-w", HOSTNAME, "echo", "ok"], None,
self.output_ok)
self._clush_t(["-t", "30", "-u", "30", "-w", HOSTNAME, "echo", "ok"],
None, self.output_ok)
def test_005_ssh_options_tty(self):
"""test clush (ssh options) [tty]"""
setattr(ClusterShell.CLI.Clush, '_f_user_interaction', True)
try:
self.test_004_ssh_options()
finally:
delattr(ClusterShell.CLI.Clush, '_f_user_interaction')
def test_006_output_gathering(self):
"""test clush (output gathering)"""
self._clush_t(["-w", HOSTNAME, "-bL", "echo", "ok"], None,
self.output_ok)
self._clush_t(["-w", HOSTNAME, "-qbL", "echo", "ok"], None,
self.output_ok)
self._clush_t(["-w", HOSTNAME, "-BL", "echo", "ok"], None,
self.output_ok)
self._clush_t(["-w", HOSTNAME, "-qBL", "echo", "ok"], None,
self.output_ok)
self._clush_t(["-w", HOSTNAME, "-BLS", "echo", "ok"], None,
self.output_ok)
self._clush_t(["-w", HOSTNAME, "-qBLS", "echo", "ok"], None,
self.output_ok)
s = "%s: ok\n---------------\n%s\n---------------\nok\n" \
% (HOSTNAME, HOSTNAME)
self._clush_t(["-w", HOSTNAME, "-vb", "echo", "ok"], None,
s.encode())
def test_007_output_gathering_tty(self):
"""test clush (output gathering) [tty]"""
setattr(ClusterShell.CLI.Clush, '_f_user_interaction', True)
try:
self.test_006_output_gathering()
finally:
delattr(ClusterShell.CLI.Clush, '_f_user_interaction')
def test_008_file_copy(self):
"""test clush (file copy)"""
content = "%f" % time.time()
content = content.encode()
sf = make_temp_file(content)
self._clush_t(["-w", HOSTNAME, "-c", sf.name], None, b"")
sf.seek(0)
self.assertEqual(sf.read(), content)
# test --dest option
f2 = tempfile.NamedTemporaryFile()
self._clush_t(["-w", HOSTNAME, "-c", sf.name, "--dest", f2.name], None,
b"")
f2.seek(0)
self.assertEqual(f2.read(), content)
# test multi --dest (manual)
tdir = make_temp_dir()
sf2 = make_temp_file(b'second')
try:
f2 = tempfile.NamedTemporaryFile()
self._clush_t(["-w", HOSTNAME, "-c", sf.name, sf2.name, "--dest",
tdir.name],
None, b"")
with open(os.path.join(tdir.name, basename(sf.name)), 'rb') as chkf:
self.assertEqual(chkf.read(), content)
with open(os.path.join(tdir.name, basename(sf2.name)), 'rb') as chkf:
self.assertEqual(chkf.read(), b'second')
finally:
sf2.close()
tdir.cleanup()
# test multi --dest (auto)
tdir = make_temp_dir()
sf2 = make_temp_file(b'second', dir=tdir.name)
try:
f2 = tempfile.NamedTemporaryFile()
self._clush_t(["-w", HOSTNAME, "-c", sf.name, sf2.name], None,
b"")
sf.seek(0)
sf2.seek(0)
self.assertEqual(sf.read(), content)
self.assertEqual(sf2.read(), b'second')
finally:
sf2.close()
tdir.cleanup()
# test --user option
f2 = tempfile.NamedTemporaryFile()
self._clush_t(["--user", pwd.getpwuid(os.getuid())[0], "-w", HOSTNAME,
"--copy", sf.name, "--dest", f2.name], None, b"")
f2.seek(0)
self.assertEqual(f2.read(), content)
# test --rcopy
self._clush_t(["--user", pwd.getpwuid(os.getuid())[0], "-w", HOSTNAME,
"--rcopy", sf.name, "--dest", dirname(sf.name)],
None, b"")
f2.seek(0)
self.assertEqual(open("%s.%s" % (sf.name, HOSTNAME), 'rb').read(),
content)
# test --rcopy with implicit --dest
self._clush_t(["--user", pwd.getpwuid(os.getuid())[0], "-w", HOSTNAME,
"--rcopy", sf.name],
None, b"")
f2.seek(0)
self.assertEqual(open("%s.%s" % (sf.name, HOSTNAME), 'rb').read(),
content)
def test_009_file_copy_tty(self):
"""test clush (file copy) [tty]"""
setattr(ClusterShell.CLI.Clush, '_f_user_interaction', True)
try:
self.test_008_file_copy()
finally:
delattr(ClusterShell.CLI.Clush, '_f_user_interaction')
@unittest.skipIf(HOSTNAME == 'localhost', "does not work with hostname set to 'localhost'")
def test_010_diff(self):
"""test clush (diff)"""
self._clush_t(["-w", HOSTNAME, "--diff", "echo", "ok"], None, b"")
self._clush_t(["-w", "%s,localhost" % HOSTNAME, "--diff", "echo",
"ok"], None, b"")
@unittest.skipIf(HOSTNAME == 'localhost', "does not work with hostname set to 'localhost'")
def test_011_diff_tty(self):
"""test clush (diff) [tty]"""
setattr(ClusterShell.CLI.Clush, '_f_user_interaction', True)
try:
self.test_010_diff()
finally:
delattr(ClusterShell.CLI.Clush, '_f_user_interaction')
@unittest.skipIf(HOSTNAME == 'localhost', "does not work with hostname set to 'localhost'")
def test_012_diff_null(self):
"""test clush (diff w/o output)"""
rxs = r"^--- %s\n\+\+\+ localhost\n@@ -1(,1)? \+[01],0 @@\n-ok\n$" % HOSTNAME
self._clush_t(["-R", "exec", "-w", "%s,localhost" % HOSTNAME, "--diff",
'echo %h | egrep -q "^localhost$" || echo ok'],
None, re.compile(rxs.encode()))
def test_013_stdin(self):
"""test clush (stdin)"""
self._clush_t(["-w", HOSTNAME, "sleep 1 && cat"], b"ok", self.output_ok)
s = "%s: ok\n%s: ok\n" % (HOSTNAME, HOSTNAME)
self._clush_t(["-w", HOSTNAME, "cat"], b"ok\nok", s.encode())
# write binary to stdin
s = "%s: foo bar\n" % HOSTNAME
self._clush_t(["-w", HOSTNAME, "gzip -d"],
codecs.decode(b'1f8b0800869a744f00034bcbcf57484a2ce2020027b4dd1308000000',
'hex'),
s.encode())
def test_015_stderr(self):
"""test clush (stderr)"""
s = "%s: err\n" % HOSTNAME
self._clush_t(["-w", HOSTNAME, "echo err 1>&2"], None, b"", 0,
s.encode())
self._clush_t(["-b", "-w", HOSTNAME, "-q", "echo err 1>&2"], None, b"",
0, s.encode())
s = "---------------\n%s\n---------------\nerr\n" % HOSTNAME
self._clush_t(["-B", "-w", HOSTNAME, "-q", "echo err 1>&2"], None,
s.encode())
def test_016_stderr_tty(self):
"""test clush (stderr) [tty]"""
setattr(ClusterShell.CLI.Clush, '_f_user_interaction', True)
try:
self.test_015_stderr()
finally:
delattr(ClusterShell.CLI.Clush, '_f_user_interaction')
@unittest.skipIf(HOSTNAME == 'localhost', "does not work with hostname set to 'localhost'")
def test_017_retcodes(self):
"""test clush (retcodes)"""
s = "clush: %s: exited with exit code 1\n" % HOSTNAME
exp_err = s.encode()
self._clush_t(["-w", HOSTNAME, "/bin/false"], None, b"", 0, exp_err)
self._clush_t(["-w", HOSTNAME, "-b", "/bin/false"], None, b"", 0, exp_err)
self._clush_t(["-S", "-w", HOSTNAME, "/bin/false"], None, b"", 1, exp_err)
self._clush_t(["--maxrc", "-w", HOSTNAME, "/bin/false"], None, b"", 1, exp_err)
self._clush_t(["-O", "maxrc=yes", "-w", HOSTNAME, "/bin/false"], None,
b"", 1, exp_err)
# -O takes precedence over --maxrc
self._clush_t(["--maxrc", "-O", "maxrc=no", "-w", HOSTNAME, "/bin/false"], None,
b"", 0, exp_err)
self._clush_t(["-O", "maxrc=no", "--maxrc", "-w", HOSTNAME, "/bin/false"], None,
b"", 0, exp_err)
for i in (1, 2, 127, 128, 255):
s = "clush: %s: exited with exit code %d\n" % (HOSTNAME, i)
self._clush_t(["-S", "-w", HOSTNAME, "exit %d" % i], None, b"", i,
s.encode())
self._clush_t(["-v", "-w", HOSTNAME, "/bin/false"], None, b"", 0,
exp_err)
duo = str(NodeSet("%s,localhost" % HOSTNAME))
s = "clush: %s (%d): exited with exit code 1\n" % (duo, 2)
self._clush_t(["-w", duo, "-b", "/bin/false"], None, b"", 0, s.encode())
s = "clush: %s: exited with exit code 1\n" % duo
self._clush_t(["-w", duo, "-b", "-q", "/bin/false"], None, b"", 0,
s.encode())
s = "clush: %s (%d): exited with exit code 1\n" % (duo, 2)
self._clush_t(["-w", duo, "-S", "-b", "/bin/false"], None, b"", 1,
s.encode())
self._clush_t(["-w", duo, "-S", "-b", "-q", "/bin/false"], None, b"", 1)
@unittest.skipIf(HOSTNAME == 'localhost', "does not work with hostname set to 'localhost'")
def test_018_retcodes_tty(self):
"""test clush (retcodes) [tty]"""
setattr(ClusterShell.CLI.Clush, '_f_user_interaction', True)
try:
self.test_017_retcodes()
finally:
delattr(ClusterShell.CLI.Clush, '_f_user_interaction')
def test_019_timeout(self):
"""test clush (timeout)"""
s = "clush: %s: command timeout\n" % HOSTNAME
self._clush_t(["-w", HOSTNAME, "-u", "1", "sleep 3"], None, b"", 0,
s.encode())
self._clush_t(["-w", HOSTNAME, "-u", "1", "-b", "sleep 3"], None, b"",
0, s.encode())
def test_020_timeout_tty(self):
"""test clush (timeout) [tty]"""
setattr(ClusterShell.CLI.Clush, '_f_user_interaction', True)
try:
self.test_019_timeout()
finally:
delattr(ClusterShell.CLI.Clush, '_f_user_interaction')
def test_021_file_copy_timeout(self):
"""test clush file copy (timeout)"""
content = "%f" % time.time()
content = content.encode()
f = make_temp_file(content)
s = "clush: %s: command timeout\n" % HOSTNAME
self._clush_t(["-w", HOSTNAME, "-u", "0.01", "-c", f.name], None,
b"", 0, s.encode())
def test_022_file_copy_timeout_tty(self):
"""test clush file copy (timeout) [tty]"""
setattr(ClusterShell.CLI.Clush, '_f_user_interaction', True)
try:
self.test_021_file_copy_timeout()
finally:
delattr(ClusterShell.CLI.Clush, '_f_user_interaction')
def test_023_load_workerclass(self):
"""test _load_workerclass()"""
for name in ('rsh', 'ssh', 'pdsh'):
cls = ClusterShell.CLI.Clush._load_workerclass(name)
self.assertTrue(cls)
def test_024_load_workerclass_error(self):
"""test _load_workerclass() bad use cases"""
func = ClusterShell.CLI.Clush._load_workerclass
# Bad module
self.assertRaises(ImportError, func, 'not_a_module')
# Worker module but not supported
self.assertRaises(AttributeError, func, 'worker')
def test_025_worker(self):
"""test clush (worker)"""
self._clush_t(["-w", HOSTNAME, "--worker=ssh", "echo ok"], None,
self.output_ok, 0)
self._clush_t(["-w", HOSTNAME, "-R", "ssh", "echo ok"], None,
self.output_ok, 0)
# also test in debug mode...
# Warning: Python3 will display b'...' in debug mode
rxs = r"EXECCLIENT: echo ok\n%s: [b\\']{0,2}ok[']{0,1}\n%s: ok\n" \
% (HOSTNAME, HOSTNAME)
self._clush_t(["-w", HOSTNAME, "--worker=exec", "-d", "echo ok"], None,
re.compile(rxs.encode()), 0)
self._clush_t(["-w", HOSTNAME, "-R", "exec", "-d", "echo ok"], None,
re.compile(rxs.encode()), 0)
def test_026_keyboard_interrupt(self):
"""test clush on keyboard interrupt"""
# Note: the scope of this test is still limited as we cannot force user
# interaction (as clush is launched by subprocess). For replicated
# observation, we use --nostdin and only check if Keyboard interrupt
# message is printed...
class KillerThread(threading.Thread):
def run(self):
time.sleep(1)
# replace later by process.send_signal() [py2.6+]
os.kill(self.pidkill, signal.SIGINT)
kth = KillerThread()
args = ["-w", HOSTNAME, "--worker=exec", "-q", "--nostdin", "-b",
"echo start; sleep 10"]
python_exec = basename(sys.executable or 'python')
process = Popen([python_exec, '-m', 'ClusterShell.CLI.Clush'] + args,
stderr=PIPE, stdout=PIPE, bufsize=0)
kth.pidkill = process.pid
kth.start()
stderr = process.communicate()[1]
self.assertEqual(stderr, b"Keyboard interrupt.\n")
def test_027_warn_shell_globbing_nodes(self):
"""test clush warning on shell globbing (-w)"""
tdir = make_temp_dir()
tfile = open(os.path.join(tdir.name, HOSTNAME), "w")
curdir = os.getcwd()
try:
os.chdir(tdir.name)
s = "Warning: using '-w %s' and local path '%s' exists, was it " \
"expanded by the shell?\n" % (HOSTNAME, HOSTNAME)
self._clush_t(["-w", HOSTNAME, "echo", "ok"], None,
self.output_ok, 0, s.encode())
finally:
os.chdir(curdir)
tfile.close()
os.unlink(tfile.name)
tdir.cleanup()
def test_028_warn_shell_globbing_exclude(self):
"""test clush warning on shell globbing (-x)"""
tdir = make_temp_dir()
tfile = open(os.path.join(tdir.name, HOSTNAME), "wb")
curdir = os.getcwd()
try:
os.chdir(tdir.name)
rxs = r"^Warning: using '-x %s' and local path " \
r"'%s' exists, was it expanded by the shell\?\n" \
% (HOSTNAME, HOSTNAME)
self._clush_t(["-S", "-w", "badhost,%s" % HOSTNAME, "-x", HOSTNAME,
"echo", "ok"], None, b"", 255,
re.compile(rxs.encode()))
finally:
os.chdir(curdir)
tfile.close()
os.unlink(tfile.name)
tdir.cleanup()
def test_029_hostfile(self):
"""test clush --hostfile"""
f = make_temp_file(HOSTNAME.encode())
self._clush_t(["--hostfile", f.name, "echo", "ok"], None,
self.output_ok)
f2 = make_temp_file(HOSTNAME.encode())
self._clush_t(["--hostfile", f.name, "--hostfile", f2.name,
"echo", "ok"], None, self.output_ok)
self.assertRaises(OSError, self._clush_t,
["--hostfile", "/I/do/NOT/exist", "echo", "ok"],
None, 1)
def test_030_config_options(self):
"""test clush -O/--option"""
self._clush_t(["--option", "color=never", "-w", HOSTNAME, "echo", "ok"],
None, self.output_ok)
self._clush_t(["--option", "color=always", "-w", HOSTNAME, "echo",
"ok"], None, self.output_ok_color)
self._clush_t(["--option=color=never", "-w", HOSTNAME, "echo", "ok"],
None, self.output_ok)
self._clush_t(["--option=color=always", "-w", HOSTNAME, "echo", "ok"],
None, self.output_ok_color)
self._clush_t(["-O", "fd_max=220", "--option", "color=never", "-w",
HOSTNAME, "echo", "ok"], None, self.output_ok)
self._clush_t(["-O", "fd_max=220", "--option", "color=always", "-w",
HOSTNAME, "echo", "ok"], None, self.output_ok_color)
self._clush_t(["--option", "color=never", "-O", "fd_max=220", "-w",
HOSTNAME, "echo", "ok"], None, self.output_ok)
self._clush_t(["--option", "color=always", "-O", "fd_max=220", "-w",
HOSTNAME, "echo", "ok"], None, self.output_ok_color)
self._clush_t(["--option", "color=never", "-O", "fd_max=220", "-O",
"color=always", "-w", HOSTNAME, "echo", "ok"], None,
self.output_ok_color)
self._clush_t(["--option", "color=always", "-O", "fd_max=220", "-O",
"color=never", "-w", HOSTNAME, "echo", "ok"], None,
self.output_ok)
@unittest.skipIf(HOSTNAME == 'localhost', "does not work with hostname set to 'localhost'")
def test_031_progress(self):
"""test clush -P/--progress"""
self._clush_t(["-w", HOSTNAME, "--progress", "echo", "ok"], None,
self.output_ok)
self._clush_t(["-w", HOSTNAME, "--progress", "sleep", "2"], None, b'', 0,
re.compile(r'clush: 0/1\r.*'.encode()))
self._clush_t(["-w", HOSTNAME, "--progress", "sleep", "2"], b'AAAAAAAA',
b'', 0, re.compile(r'clush: 0/1 write: \d B/s\r.*'.encode()))
self._clush_t(["-w", "%s,localhost" % HOSTNAME, "--progress", "sleep",
"2"], b'AAAAAAAAAAAAAA', b'', 0,
re.compile(r'clush: 0/2 write: \d+ B/s\r.*'.encode()))
self._clush_t(["-w", HOSTNAME, "-b", "--progress", "sleep", "2"],
None, b'', 0, re.compile(r'clush: 0/1\r.*'.encode()))
self._clush_t(["-w", HOSTNAME, "-b", "--progress", "sleep", "2"],
b'AAAAAAAAAAAAAAAA', b'', 0,
re.compile(r'clush: 0/1 write: \d+ B/s\r.*'.encode()))
# -q and --progress: explicit -q wins
self._clush_t(["-w", HOSTNAME, "--progress", "-q", "sleep", "2"], None,
b'', 0)
self._clush_t(["-w", HOSTNAME, "-b", "--progress", "-q", "sleep", "2"],
None, b'', 0, b'')
self._clush_t(["-w", HOSTNAME, "-b", "--progress", "-q", "sleep", "2"],
b'AAAAAAAAAAAAAAAA', b'', 0, b'')
# cover stderr output and --progress
s = "%s: bar\n" % HOSTNAME
err_rxs = r'%s: foo\nclush: 0/1\r.*' % HOSTNAME
self._clush_t(["-w", HOSTNAME, "--progress",
"echo foo >&2; echo bar; sleep 2"], None,
s.encode(), 0, re.compile(err_rxs.encode()))
def test_032_worker_pdsh(self):
"""test clush (worker pdsh)"""
# Warning: same as: echo -n | clush --worker=pdsh when launched from
# jenkins (not a tty), so we need --nostdin as pdsh worker doesn't
# support write
self._clush_t(["-w", HOSTNAME, "--worker=pdsh", "--nostdin",
"echo ok"], None, self.output_ok, 0)
# write not supported by pdsh worker
self.assertRaises(EngineClientNotSupportedError, self._clush_t,
["-w", HOSTNAME, "-R", "pdsh", "cat"], b"bar", None, 1)
def test_033_worker_pdsh_tty(self):
"""test clush (worker pdsh) [tty]"""
setattr(ClusterShell.CLI.Clush, '_f_user_interaction', True)
try:
self._clush_t(["-w", HOSTNAME, "--worker=pdsh", "echo ok"],
None, self.output_ok, 0)
finally:
delattr(ClusterShell.CLI.Clush, '_f_user_interaction')
@unittest.skipIf(HOSTNAME == 'localhost', "does not work with hostname set to 'localhost'")
def test_034_pick(self):
"""test clush --pick"""
rxs = r"^(localhost|%s): foo\n$" % HOSTNAME
self._clush_t(["-w", "%s,localhost" % HOSTNAME, "--pick", "1",
"echo foo"], None, re.compile(rxs.encode()))
rxs = r"^((localhost|%s): foo\n){2}$" % HOSTNAME
self._clush_t(["-w", "%s,localhost" % HOSTNAME, "--pick", "2",
"echo foo"], None, re.compile(rxs.encode()))
def test_035_sorted_line_mode(self):
"""test clush (sorted line mode -L)"""
self._clush_t(["-w", HOSTNAME, "-L", "echo", "ok"], None,
self.output_ok)
# Issue #326
cmd = "bash -c 's=%h; n=${s//[!0-9]/}; if [[ $(expr $n %% 2) == 0 ]]; then " \
"echo foo; else echo bar; fi'"
self._clush_t(["-w", "cs[01-03]", "--worker=exec", "-L", cmd], None,
b'cs01: bar\ncs02: foo\ncs03: bar\n', 0)
def test_036_sorted_gather(self):
"""test clush (CLI.Utils.bufnodeset_cmpkey)"""
# test 1st sort criteria: largest nodeset first
cmd = "bash -c 's=%h; n=${s//[!0-9]/}; if [[ $(expr $n %% 2) == 0 ]];" \
"then echo foo; else echo bar; fi'"
self._clush_t(["-w", "cs[01-03]", "--worker=exec", "-b", cmd], None,
b'---------------\ncs[01,03] (2)\n---------------\nbar\n'
b'---------------\ncs02\n---------------\nfoo\n', 0)
# test 2nd sort criteria: smaller node index first
cmd = "bash -c 's=%h; n=${s//[!0-9]/}; if [[ $(expr $n %% 2) == 0 ]];" \
"then echo bar; else echo foo; fi'"
self._clush_t(["-w", "cs[01-04]", "--worker=exec", "-b", cmd], None,
b'---------------\ncs[01,03] (2)\n---------------\nfoo\n'
b'---------------\ncs[02,04] (2)\n---------------\nbar\n',
0)
def test_037_nostdin(self):
"""test clush (nostdin)"""
self._clush_t(["-n", "-w", HOSTNAME, "cat"], b"dummy", b"")
self._clush_t(["--nostdin", "-w", HOSTNAME, "cat"], b"dummy", b"")
def test_038_rlimits(self):
"""test clush error with low fd_max"""
# These tests also cover pipe() fd cleanup handling code in
# fastsubprocess' Popen._gethandles(). All file descriptors should
# be properly cleaned.
#
# Each fork creates 3 FDs remaining in the parent process. We have
# two tests here with a different fd_max each time in order to raise
# the exception during stdout and stderr pipe creation.
# Depending on the current available FDs during the test, the two
# tests below might be reversed.
#
# test for error when creating stdout pipes:
# 99 used OK + 1 (stdin)
self.assertRaises(OSError, self._clush_t,
["-N", "-R", "exec", "-w", 'foo[1-1000]', "-b",
"-f", "1000", "-O", "fd_max=100", "echo ok"],
None, b"ok\n")
#
# test for error when creating stderr pipes:
# 99 OK + 1 (stdin) + 1 (stdout)
self.assertRaises(OSError, self._clush_t,
["-N", "-R", "exec", "-w", 'foo[1-1000]', "-b",
"-f", "1000", "-O", "fd_max=101", "echo ok"],
None, b"ok\n")
def test_039_conf_option(self):
"""test clush --conf option"""
custf = make_temp_file(dedent("""
[Main]
node_count: no
""").encode())
# simple test that checks if "node_count:" no from custom conf file
# is taken into account
self._clush_t(["-b", "-R", "exec", "-w", "foo[1-10]", "echo ok"], b"",
b"---------------\nfoo[1-10] (10)\n---------------\nok\n")
self._clush_t(["--conf", custf.name, "-b", "-R", "exec", "-w",
"foo[1-10]", "echo ok"], b"",
b"---------------\nfoo[1-10]\n---------------\nok\n")
def test_040_stdin_eof(self):
"""test clush (stdin eof)"""
# should not block if connection to stdin cannot be established
# or of --nostdin is specified
self._clush_t(["-w", HOSTNAME, "cat"], None, b'')
self._clush_t(["-w", HOSTNAME, "--nostdin", "cat"], None, b'')
setattr(ClusterShell.CLI.Clush, '_f_user_interaction', True)
try:
self._clush_t(["-w", HOSTNAME, "cat"], None, b'')
finally:
delattr(ClusterShell.CLI.Clush, '_f_user_interaction')
def test_041_outdir_errdir(self):
"""test clush --outdir and --errdir"""
odir = make_temp_dir()
edir = make_temp_dir()
tofilepath = os.path.join(odir.name, HOSTNAME)
tefilepath = os.path.join(edir.name, HOSTNAME)
try:
self._clush_t(["-w", HOSTNAME, "--outdir", odir.name, "echo", "ok"],
None, self.output_ok)
self.assertTrue(os.path.isfile(tofilepath))
with open(tofilepath, "r") as f:
self.assertEqual(f.read(), "ok\n")
finally:
os.unlink(tofilepath)
try:
self._clush_t(["-w", HOSTNAME, "--errdir", edir.name, "echo", "ok", ">&2"],
None, None, 0, self.output_ok)
self.assertTrue(os.path.isfile(tefilepath))
with open(tefilepath, "r") as f:
self.assertEqual(f.read(), "ok\n")
finally:
os.unlink(tefilepath)
try:
serr = "%s: err\n" % HOSTNAME
self._clush_t(["-w", HOSTNAME, "--outdir", odir.name, "--errdir", edir.name,
"echo", "ok", ";", "echo", "err", ">&2"], None,
self.output_ok, 0, serr.encode())
self.assertTrue(os.path.isfile(tofilepath))
self.assertTrue(os.path.isfile(tefilepath))
with open(tofilepath, "r") as f:
self.assertEqual(f.read(), "ok\n")
with open(tefilepath, "r") as f:
self.assertEqual(f.read(), "err\n")
finally:
os.unlink(tofilepath)
os.unlink(tefilepath)
odir.cleanup()
edir.cleanup()
def test_042_command_prefix(self):
"""test clush -O command_prefix"""
s = "%s: foobar\n" % HOSTNAME
self._clush_t(["-O", "command_prefix=echo", "-w", HOSTNAME, "foobar"],
None, s.encode())
self._clush_t(["-O", "command_prefix=echo", "--nostdin", "-w", HOSTNAME, "foobar"],
None, s.encode())
def test_043_password_prompt(self):
"""test clush -O password_prompt"""
def ask_pass_mock():
return "passok"
ask_pass_save = ClusterShell.CLI.Clush.ask_pass
ClusterShell.CLI.Clush.ask_pass = ask_pass_mock
try:
s = "%s: passok\n" % HOSTNAME
expected = s.encode()
self._clush_t(["-O", "password_prompt=yes", "-w", HOSTNAME, "cat"],
None, expected)
self._clush_t(["-O", "password_prompt=yes", "-w", HOSTNAME, "cat"],
b"test\n", expected+('%s: test\n' % HOSTNAME).encode())
self._clush_t(["-O", "password_prompt=yes", "--nostdin", "-w", HOSTNAME, "cat"],
None, expected)
self._clush_t(["-O", "password_prompt=yes", "--nostdin", "-w", HOSTNAME, "cat"],
b"test\n", expected)
# write to stdin is not supported by pdsh worker
self.assertRaises(EngineClientNotSupportedError, self._clush_t,
["-O", "password_prompt=yes", "-w", HOSTNAME, "-R", "pdsh", "cat"],
b"test stdin", expected, 1)
self.assertRaises(EngineClientNotSupportedError, self._clush_t,
["--nostdin", "-O", "password_prompt=yes", "-w", HOSTNAME, "-R", "pdsh", "cat"],
b"test stdin", expected, 1)
finally:
ClusterShell.CLI.Clush.ask_pass = ask_pass_save
def test_044_command_prefix_and_password_prompt(self):
"""test clush -O command_prefix and -O password_prompt"""
def ask_pass_mock():
return "passok"
ask_pass_save = ClusterShell.CLI.Clush.ask_pass
ClusterShell.CLI.Clush.ask_pass = ask_pass_mock
try:
s = "%s: passok\n" % HOSTNAME
expected = s.encode()
# using 'exec' command to simulate sudo-like behavior
self._clush_t(["-O", "command_prefix=exec", "-O", "password_prompt=yes", "-w", HOSTNAME, "cat"],
None, expected)
self._clush_t(["-O", "command_prefix=exec", "-O", "password_prompt=yes", "-w", HOSTNAME, "cat"],
b"test\n", expected+('%s: test\n' % HOSTNAME).encode())
self._clush_t(["-O", "command_prefix=exec", "-O", "password_prompt=yes", "--nostdin", "-w", HOSTNAME, "cat"],
None, expected)
self._clush_t(["-O", "command_prefix=exec", "-O", "password_prompt=yes", "--nostdin", "-w", HOSTNAME, "cat"],
b"test\n", expected)
# test password forwarding followed by stdin stream
s = "%s: test stdin\n" % HOSTNAME
expected += s.encode()
self._clush_t(["-O", "command_prefix=exec", "-O", "password_prompt=yes", "-w", HOSTNAME, "cat"],
b"test stdin\n", expected)
finally:
ClusterShell.CLI.Clush.ask_pass = ask_pass_save
class CLIClushTest_B_StdinFailure(unittest.TestCase):
"""Unit test class for testing CLI/Clush.py and stdin failure"""
def setUp(self):
class BrokenStdinMock(object):
def isatty(self):
return False
def fileno(self):
raise IOError(errno.EINVAL, "Invalid argument")
sys.stdin = BrokenStdinMock()
def tearDown(self):
"""cleanup all tasks"""
task_cleanup()
sys.stdin = sys.__stdin__
def _clush_t(self, args, stdin, expected_stdout, expected_rc=0,
expected_stderr=None):
CLI_main(self, main, ['clush'] + args, stdin, expected_stdout,
expected_rc, expected_stderr)
def test_100_broken_stdin(self):
"""test clush with broken stdin"""
self._clush_t(["-w", HOSTNAME, "-v", "sleep 1"], None,
b"stdin: [Errno 22] Invalid argument\n", 0, b"")
class CLIClushTest_C_GroupsConf(unittest.TestCase):
"""Unit test class for testing CLI/Clush.py with --groupsconf"""
def setUp(self):
self.gconff = make_temp_file(dedent("""
[Main]
default: global_default
[global_default]
map: echo example[1-100]
all: echo @foo,@bar,@moo
list: echo foo bar moo
""").encode())
set_std_group_resolver_config(self.gconff.name)
# passed to --groupsconf
self.custf = make_temp_file(dedent("""
[Main]
default: custom
[custom]
map: echo custom[7-42]
all: echo @selene,@artemis
list: echo selene artemis
""").encode())
def tearDown(self):
set_std_group_resolver(None)
self.gconff = None
self.custf = None
def _clush_t(self, args, stdin, expected_stdout, expected_rc=0,
expected_stderr=None):
CLI_main(self, main, ['clush'] + args, stdin, expected_stdout,
expected_rc, expected_stderr)
def test_200_groupsconf_option(self):
"""test clush --groupsconf"""
self._clush_t(["-R", "exec", "-w", "@foo", "-bL", "echo ok"], None,
b"example[1-100]: ok\n", 0, b"")
self._clush_t(["--groupsconf", self.custf.name, "-R", "exec", "-w",
"@foo", "-bL", "echo ok"], None,
b"custom[7-42]: ok\n", 0, b"")
class CLIClushTest_D_StdinFIFO(unittest.TestCase):
"""Unit test class for testing CLI/Clush.py when stdin is a named pipe"""
def setUp(self):
# Create fifo
self.fname = tempfile.mktemp()
os.mkfifo(self.fname)
# Launch write thread
class FIFOThread(threading.Thread):
def run(self):
fifo_wr = open(self.fname, "w")
fifo_wr.write("0123456789")
fifo_wr.close()
fifoth = FIFOThread()
fifoth.fname = self.fname
fifoth.start()
# Use read end of fifo as stdin
sys.stdin = open(self.fname, "r")
def tearDown(self):
"""cleanup all tasks"""
sys.stdin.close()
os.unlink(self.fname)
task_cleanup()
sys.stdin = sys.__stdin__
def _clush_t(self, args, stdin, expected_stdout, expected_rc=0,
expected_stderr=None):
CLI_main(self, main, ['clush'] + args, stdin, expected_stdout,
expected_rc, expected_stderr)
def test_300_fifo_stdin(self):
"""test clush with stdin is a fifo (read)"""
s = "%s: 0123456789\n" % HOSTNAME
self._clush_t(["-w", HOSTNAME, "-v", "cat"], None,
s.encode(), 0, b"")
def test_301_fifo_stdin(self):
"""test clush with stdin is a fifo (not read)"""
s = "%s: ok\n" % HOSTNAME
self._clush_t(["-w", HOSTNAME, "-v", "echo ok"], None,
s.encode(), 0, b"")
class CLIClushTest_E_Topology(unittest.TestCase):
"""Unit test class for testing CLI/Clush.py with --topology"""
def setUp(self):
self.topofile = make_temp_file(dedent("""
[Main]
%s: localhost
localhost: remote-node"""% HOSTNAME).encode())
def tearDown(self):
self.topofile = None
def _clush_t(self, args, stdin, expected_stdout, expected_rc=0,
expected_stderr=None):
CLI_main(self, main, ['clush'] + args, stdin, expected_stdout,
expected_rc, expected_stderr)
@unittest.skipIf(HOSTNAME == 'localhost', "does not work with hostname set to 'localhost'")
def test_300_topology(self):
"""test clush --topology"""
# GH#560: to detect set!=NodeSet for gwtargets
self._clush_t(["--topology", self.topofile.name,
"-w", "remote-node", "-b", "-v", "sleep 1; echo ok"], None, b"", 0, b"")
|