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 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
|
###############################################################################
# Copyright (c) 2013 INRIA
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation;
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# Authors: Daniel Camara <daniel.camara@inria.fr>
# Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
###############################################################################
import unittest
import sys
import os
import commands
import re
from bake.ModuleEnvironment import ModuleEnvironment
from bake.ModuleLogger import StdoutModuleLogger
from bake.Exceptions import TaskError
from bake.ModuleSource import ModuleSource
class TestModuleSource(unittest.TestCase):
"""Tests cases for the Module Environment Class."""
def setUp(self):
"""Common set Up environment, available for all tests."""
pathname = os.path.dirname("/tmp/")
self._logger = StdoutModuleLogger();
self._logger.set_verbose(0)
self._env = ModuleEnvironment(self._logger, pathname, pathname, pathname)
def tearDown(self):
"""Cleans the environment environment for the next tests."""
self._env = None
def execute_command(self, command, dir):
"""Executes the given command, catching the exceptions."""
try:
self._env.run(command, dir)
except Exception as inst:
print (inst) # the exception instance
self.fail("Could not execute command %s over directory %s failed" %
(command, dir))
def test_general_failures(self):
"""Tests Some general failures that could happen in the Module Source. """
#Verifies the return of the creation of a non existent module
module = ModuleSource.create("NonExistentModule")
self.assertEqual(module, None)
def test_archive_module_source(self):
"""Tests the ArchiveModuleSource class. """
# it first needs to be able to create the class otherwise will not be
# able to do anything else
archive = ModuleSource.create("archive")
self.assertNotEqual(archive, None)
self.assertEqual(archive.name(), "archive")
# Verifies if the system has the right tools installed, if not does not
# even worth continuing
# no file was declared yet, so the issue should be False
testResult = archive.check_version(self._env)
self.assertFalse(testResult)
# Unknown file type
archive.attribute("url").value = "http://JustATest.com/File.unknownFileType"
testResult = archive.check_version(self._env)
self.assertFalse(testResult,
"There is no tool to handle the target extension, the result should be false")
# zip
archive.attribute("url").value = "http://JustATest.com/File.zip"
testResult = archive.check_version(self._env)
self.assertTrue(testResult, "unzip is not present on the system")
# rar
archive.attribute("url").value = "http://JustATest.com/File.rar"
testResult = archive.check_version(self._env)
self.assertTrue(testResult, "unrar is not present on the system")
# tar
archive.attribute("url").value = "http://JustATest.com/File.tar"
testResult = archive.check_version(self._env)
self.assertTrue(testResult, "tar is not present on the system")
# tar.Z
archive.attribute("url").value = "http://JustATest.com/File.tar.Z"
testResult = archive.check_version(self._env)
self.assertTrue(testResult, "tar is not present on the system")
# tar.bz2
archive.attribute("url").value = "http://JustATest.com/File.tar.bz2"
testResult = archive.check_version(self._env)
self.assertTrue(testResult, "tar is not present on the system")
# tar.gz
archive.attribute("url").value = "http://read.cs.ucla.edu/click/click-1.8.0.tar.gz"
# archive.attribute("url").value = "http://read.cs.ucla.edu/click/click-1.8.0.tar.gz"
testResult = archive.check_version(self._env)
self.assertTrue(testResult, "tar is not present on the system")
self._env._module_name="click-1.8.0"
self._logger.set_current_module(self._env._module_name)
#clean up the environment, just to be safe
self.execute_command(["/bin/rm", "-rf", "click-1.8.0.tar.gz"], "/tmp")
self.execute_command(["/bin/rm", "-rf", "click-1.8.0"], "/tmp")
testResult = archive.download(self._env)
# if something goes wrong it should rise an exception so, None means
# everything is OK
self.assertEqual(testResult, None)
# verifies that files are really there after the download
testStatus = commands.getoutput('ls /tmp/click-1.8.0.tar.gz')
self.assertEqual("/tmp/click-1.8.0.tar.gz", testStatus)
testStatus = commands.getoutput('ls -d /tmp/click-1.8.0')
self.assertEqual("/tmp/click-1.8.0", testStatus)
#after the test, clean the environment
self.execute_command(["/bin/rm", "-rf", "click-1.8.0.tar.gz"], "/tmp")
self.execute_command(["/bin/rm", "-rf", "click-1.8.0"], "/tmp")
# Searches for a valid file into an inexistent repository
archive.attribute("url").value = "http://non.existent.host.com/click-1.8.0.tar.gz"
testResult = None
try:
testResult = archive.download(self._env)
self.fail("There was no problem, and the server does not exist. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# Try to download to a directory that the user has no permission
archive.attribute("url").value = "http://read.cs.ucla.edu/click/click-1.8.0.tar.gz"
testStatus = commands.getoutput('touch /tmp/click-1.8.0;chmod 000 /tmp/click-1.8.0')
testResult = None
try:
testResult = archive.download(self._env)
self.fail("There was no problem, the user has no permission over the target directory. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
testStatus = commands.getoutput("chmod 755 /tmp/click-1.8.0; rm -f "
"/tmp/click-1.8.0")
# try to download to a non existent directory
testStatus = commands.getoutput('rm -rf /tmp/testDir')
self._env._sourcedir = "/tmp/testDir"
testResult = None
try:
testResult = archive.download(self._env)
self.fail("There was no problem, target directory does not exist "
"and it managed to finish the operation. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
testStatus = commands.getoutput('mkdir /tmp/testDir;chmod 000 /tmp/testDir')
testResult = None
try:
testResult = archive.download(self._env)
self.fail("There was no problem, user has no permission on the "
"target directory and it managed to finish the operation.")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
testStatus = commands.getoutput('chmod 755 /tmp/testDir; rm -rf /tmp/testDir')
# no protocol download url gives you an error
archive.attribute("url").value = "read.cs.ucla.edu/click/click-1.8.0.tar.gz"
testResult = None
try:
testResult = archive.download(self._env)
self.fail("There was no problem, the user didn't add the protocol"
" for the url. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# just to be sure that the update does nothing
testResult = archive.update(self._env)
self.assertEqual(testResult, None)
# Oddly enough, when the user has no permission in the target
# directory the system returns no error Right now I have no idea how
# to fix it, or IF we should try to fix anyway.
# self._env._sourcedir = "/tmp"
# testStatus = commands.getoutput('mkdir /tmp/click-1.8.0;chmod 000 /tmp/click-1.8.0')
# try:
# testResult = archive.download(self._env)
# self.fail("There was not problem, the user has no permission over the target directory. ")
# except TaskError as e:
# self.assertNotEqual(e._reason, None)
# self.assertEqual(testResult, None)
#
# testStatus = commands.getoutput('chmod 755 /tmp/click-1.8.0; rm -rf /tmp/click-1.8.0')
def test_check_dependency_expression(self):
""" Tests the _check_dependency_expression method. """
# it first needs to be able to create the class otherwise will not be
# able to do anything else
installer = ModuleSource.create("system_dependency")
self.assertNotEqual(installer, None)
self.assertEqual(installer.name(), "system_dependency")
self._env._module_name="testModule"
self._logger.set_current_module(self._env._module_name)
# Unknown file type
installer.attribute('more_information').value = "Just a test"
installer.attribute('sudoer_install').value = 'False'
installer.attribute("try_to_install").value='True'
installer.attribute("dependency_test").value = "NonExistentSoftForTest"
testResult = None
testResult = installer._check_dependency_expression(self._env,
"NonExistentSoft")
self.assertFalse(testResult, "Non existent software, should be false")
testResult = None
testResult = installer._check_dependency_expression(self._env, "bash")
self.assertTrue(testResult, "Existent software, should be true")
testResult = None
testResult = installer._check_dependency_expression(self._env, "nthing or bash")
self.assertTrue(testResult, "Existent software, should be true")
testResult = None
testResult = installer._check_dependency_expression(self._env, "nthinag and bash")
self.assertFalse(testResult, "Inexistent software AND existent one, "
"should be false")
testResult = None
testResult = installer._check_dependency_expression(self._env, "not bash")
self.assertFalse(testResult, "The software should exist so it, "
"should be false")
testResult = None
testResult = installer._check_dependency_expression(self._env, "not nthing")
self.assertTrue(testResult, "The software does not exist so it, "
"should be true")
testResult = None
testResult = installer._check_dependency_expression(self._env, "/bin/ls")
self.assertTrue(testResult, "The software exist so it, "
"should be true")
testResult = None
testResult = installer._check_dependency_expression(self._env, "/lib")
self.assertTrue(testResult, "The repository exist so it, "
"should be true")
testResult = None
testResult = installer._check_dependency_expression(self._env, "/tt/NoDirDir")
self.assertFalse(testResult, "The repository does not exist so it, "
"should be False")
testResult = None
testResult = installer._check_dependency_expression(self._env, "libc.so")
self.assertTrue(testResult, "The library should exist so it, "
"should be True")
testResult = None
testResult = installer._check_dependency_expression(self._env, "notValidLibNot.so")
self.assertFalse(testResult, "The library should not exist so it, "
"should be False")
def test_SystemDependencySource(self):
"""Tests the SelfInstallerModule class. """
# it first needs to be able to create the class otherwise will not be
# able to do anything else
installer = ModuleSource.create("system_dependency")
self.assertNotEqual(installer, None)
self.assertEqual(installer.name(), "system_dependency")
# Verifies if the system has the right tools installed, if not does not
# even worth continuing
# Verify if the installer, for this architecture exists
testResult = installer.check_version(self._env)
self.assertTrue(testResult)
self._env._module_name="testModule"
self._logger.set_current_module(self._env._module_name)
# Unknown file type
installer.attribute("dependency_test").value = "NonExistentSoftForTest"
installer.attribute('more_information').value = "Message test for inexistent module"
installer.attribute("try_to_install").value='True'
installer.attribute("sudoer_install").value='True'
testResult = None
try :
testResult = installer.download(self._env)
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# print(e._reason)
installer.attribute("dependency_test").value = "gcc"
installer.attribute('more_information').value = "You miss gcc download"
" it from your linux distribution website"
testResult = None
try :
testResult = installer.download(self._env)
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# print(e._reason)
self.assertTrue(testResult)
#try to install a non existent module
installer.attribute("dependency_test").value = "erlang"
installer.attribute('more_information').value = "You miss erlang, "
"download it from your linux distribution website"
installer.attribute('sudoer_install').value = 'True'
testResult = None
try :
testResult = installer.download(self._env)
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# print(e._reason)
self.assertTrue(testResult==None)
# remove the NOT installed module
testResult = None
reason=None
try :
testResult = installer.remove(self._env)
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
reason=e._reason
# print(e._reason)
self.assertTrue(testResult==None)
self.assertFalse(not reason)
installer.attribute('name_yum').value = "erlang"
installer.attribute('name_apt-get').value = "erlang"
testResult = None
reason=None
try :
testResult = installer.download(self._env)
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
reason=e._reason
# print(e._reason)
self.assertTrue(testResult==None)
self.assertFalse(not reason)
# Adds the sudo tag... now the modules should be able to be installed
self._env._sudoEnabled=True
# Just to be sure the erlang module is not installed on the machine
testResult = None
try :
testResult = installer.remove(self._env)
except TaskError as e:
print(e._reason)
# this installation should work for sure now!
# remove the just installed module
testResult = None
reason=None
try :
testResult = installer.download(self._env)
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
reason=e._reason
print(e._reason)
self.assertTrue(testResult)
self.assertTrue(not reason)
# Just to be sure the erlang module is not installed on the machine
testResult = None
try :
testResult = installer.remove(self._env)
except TaskError as e:
print(e._reason)
def test_systemPrecondition(self):
"""Tests the SelfInstallerModule class. """
# it first needs to be able to create the class otherwise will not be
# able to do anything else
installer = ModuleSource.create("system_dependency")
self.assertNotEqual(installer, None)
testResult = installer._check_dependency_expression(self._env,"")
self.assertTrue(testResult)
testResult = installer._check_dependency_expression(self._env,"ls")
self.assertTrue(testResult)
testResult = installer._check_dependency_expression(self._env,
"(ls and bash)")
self.assertTrue(testResult)
testResult = installer._check_dependency_expression(self._env,
"(ls or us9245l25k)")
self.assertTrue(testResult)
testResult = installer._check_dependency_expression(self._env,
"(ls and not us9245l25k)")
self.assertTrue(testResult)
testResult = installer._check_dependency_expression(self._env,
"(ls and us9245l25k)")
self.assertFalse(testResult)
testResult = installer._check_dependency_expression(self._env,
"(ls and bash) and rm")
self.assertTrue(testResult)
testResult = installer._check_dependency_expression(self._env,
"(ls and bash) and us9245l25k")
self.assertFalse(testResult)
testResult = installer._check_dependency_expression(self._env,
"(ls and bash) or us9245l25k")
self.assertTrue(testResult)
testResult = installer._check_dependency_expression(self._env,
"((ls and bash) or us9245l25k)")
self.assertTrue(testResult)
def test_mercurial(self):
"""Tests the MercurialModuleSource class. """
# it first needs to be able to create the class otherwise will not be
# able to do anything else
mercurial = ModuleSource.create("mercurial")
self.assertNotEqual(mercurial, None)
self.assertEqual(mercurial.name(), "mercurial")
# Verifies if the system has the mercurial installed, if not does not
# even worth continuing
testResult = mercurial.check_version(self._env)
self.assertTrue(testResult)
mercurial.attribute("url").value = "http://code.nsnam.org/daniel/bake"
self._env._module_name="bake"
self._logger.set_current_module(self._env._module_name)
#clean up the environment, just to be safe
self.execute_command(["/bin/rm", "-rf", "bake"], "/tmp")
testResult = mercurial.download(self._env)
# if something goes wrong it should rise an exception so, None means
# everything is OK
self.assertEqual(testResult, None)
#after the test, clean the environment
self.execute_command(["rm", "-rf", "bake"], "/tmp")
# download a specific version
mercurial.attribute("revision").value = "63"
testResult = mercurial.download(self._env)
self.assertEqual(testResult, None)
# verify that the version is the correct one
testStatus = commands.getoutput('cd /tmp/bake;hg summary')
version = re.compile('\d+').search(testStatus).group()
self.assertEqual(version, "63")
# makes an update of the version to the last version
mercurial.attribute("revision").value = "64"
testResult = mercurial.update(self._env)
self.assertEqual(testResult, None)
# verify that the version is the correct one
testStatus = commands.getoutput('cd /tmp/bake;hg summary')
version = re.compile('\d+').search(testStatus).group()
self.assertEqual(version, "64")
# Verifies the update to the tip
mercurial.attribute("revision").value = "tip"
testResult = mercurial.update(self._env)
self.assertEqual(testResult, None)
# verify that the version is the correct one
testStatus = commands.getoutput('cd /tmp/bake;hg log')
versionRepository = re.compile('\d+').search(testStatus).group()
testStatus = commands.getoutput('cd /tmp/bake;hg summary')
versionDownloaded = re.compile('\d+').search(testStatus).group()
self.assertEqual(versionRepository, versionDownloaded)
self.execute_command(["rm", "-rf", "bake"], "/tmp")
# Not http should give you a TaskError exception
mercurial.attribute("url").value = "code.nsnam.org/daniel/bake"
self._env._module_name="bake"
self._logger.set_current_module(self._env._module_name)
testResult = None
try:
testResult = mercurial.download(self._env)
self.fail("There was no problem not passing the protocol. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
self.execute_command(["rm", "-rf", "bake"], "/tmp")
testStatus = commands.getoutput('mkdir /tmp/bake;chmod 000 /tmp/bake')
mercurial.attribute("url").value = "http://code.nsnam.org/daniel/bake"
testResult = None
try:
testResult = mercurial.download(self._env)
self.fail("There was no problem and the user has no permission"
" over the directory. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
testStatus = commands.getoutput('chmod 755 /tmp/bake')
self.execute_command(["rm", "-rf", "bake"], "/tmp")
# try to download to a non existent directory
# mercurial cretes the directory
testStatus = commands.getoutput('rm -rf /tmp/testDir')
self._env._sourcedir = "/tmp/testDir"
testResult = mercurial.download(self._env)
self.assertEqual(testResult, None)
testStatus = commands.getoutput('rm -rf /tmp/testDir')
testStatus = commands.getoutput('mkdir /tmp/testDir;chmod 000 /tmp/testDir')
testResult = None
try:
testResult = mercurial.download(self._env)
self.fail("There was no problem, user has no permission on the"
" target directory and it managed to finish the operation. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
testStatus = commands.getoutput('chmod 755 /tmp/testDir; rm -rf /tmp/testDir')
# Try to get a wrong version, there is a but in the mercurial
# that permits negative revisions, such as -34, for example,
# however bigger than the tip version gives an error
mercurial.attribute("revision").value = "9999999"
testResult = None
try:
testResult = mercurial.download(self._env)
self.fail("The version is inexistent, but there is no error. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# last clean up
self.execute_command(["rm", "-rf", "bake"], "/tmp")
def test_bazaar(self):
"""Tests the BazaarModuleSource class. """
# checks if can create the class
bazaar = ModuleSource.create("bazaar")
self.assertNotEqual(bazaar, None)
self.assertEqual(bazaar.name(), "bazaar")
# Verifies if Bazaar is installed
testResult = bazaar.check_version(self._env)
self.assertTrue(testResult)
bazaar.attribute("url").value = "https://launchpad.net/pybindgen"
self._env._module_name="pybindgen"
self._logger.set_current_module(self._env._module_name)
##### Normal Flow test
#clean up the environment, just to be safe
self.execute_command(["/bin/rm", "-rf", "pybindgen"], "/tmp")
testResult = bazaar.download(self._env)
# None means everything was OK, since there were no exceptions
self.assertEqual(testResult, None)
testStatus = commands.getoutput('cd /tmp/pybindgen; bzr log')
lastVersion = re.compile('\d+').search(testStatus).group()
#after the test, clean the environment
self.execute_command(["rm", "-rf", "pybindgen"], "/tmp")
# download a specific version
bazaar.attribute("revision").value = "794"
testResult = bazaar.download(self._env)
self.assertEqual(testResult, None)
# verify that the version is the correct one
testStatus = commands.getoutput('cd /tmp/pybindgen; bzr log')
version = re.compile('\d+').search(testStatus).group()
self.assertEqual(version, "794")
# makes an update of the version to a latter version
bazaar.attribute("revision").value = "795"
testResult = bazaar.update(self._env)
self.assertEqual(testResult, None)
# verify that the version is the correct one
testStatus = commands.getoutput('cd /tmp/pybindgen; bzr log')
version = re.compile('\d+').search(testStatus).group()
self.assertEqual(version, "795")
self.execute_command(["rm", "-rf", "pybindgen"], "/tmp")
# Wrong repository
bazaar.attribute("url").value = "http://code.nsnam.org/daniel/bake"
self._logger.set_current_module(self._env._module_name)
testResult = None
try:
testResult = bazaar.download(self._env)
self.fail("There was no problem not passing the protocol. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# No protocol http/https
bazaar.attribute("url").value = "launchpad.net/pybindgen"
bazaar.attribute("revision").value = None
self._logger.set_current_module(self._env._module_name)
testResult = None
try:
testResult = bazaar.download(self._env)
self.fail("There was no problem not passing the protocol. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
self.execute_command(["rm", "-rf", "pybindgen"], "/tmp")
testStatus = commands.getoutput('mkdir /tmp/pybindgen;chmod 000 /tmp/pybindgen')
bazaar.attribute("url").value = "https://launchpad.net/pybindgen"
testResult = None
try:
testResult = bazaar.download(self._env)
self.fail("There was no problem and the user has no permission"
" over the directory. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
testStatus = commands.getoutput('chmod 755 /tmp/pybindgen')
self.execute_command(["rm", "-rf", "pybindgen"], "/tmp")
# try to download to a non existent directory
testStatus = commands.getoutput('rm -rf /tmp/testDir')
self._env._sourcedir = "/tmp/testDir"
testResult = None
try:
testResult = bazaar.download(self._env)
self.fail("There was no problem, target directory does not exist"
" and it managed to finish the operation. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# try to download to a directory where the user has no permission
testStatus = commands.getoutput('mkdir /tmp/testDir;chmod 000 /tmp/testDir')
testResult = None
try:
testResult = bazaar.download(self._env)
self.fail("There was no problem, user has no permission on the"
" target directory and it managed to finish the operation. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
testStatus = commands.getoutput('chmod 755 /tmp/testDir; rm -rf /tmp/testDir')
# returns to the original state
bazaar.attribute("url").value = "https://launchpad.net/pybindgen"
self._env._sourcedir = "/tmp"
# Try to get an unavailable version
bazaar.attribute("revision").value = str(int(lastVersion) + 1)
testResult = None
try:
testResult = bazaar.download(self._env)
self.fail("The version is inexistent, but there is no error. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# verifies the update to a inexistent version
bazaar.attribute("revision").value = None
testResult = bazaar.download(self._env)
self.assertEqual(testResult, None)
# Invalid argument, it is int and should be string
bazaar.attribute("revision").value = -60
testResult = None
try:
testResult = bazaar.download(self._env)
self.fail("The version is inexistent, but there is no error. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# can not go for a negative version
bazaar.attribute("revision").value = str(-60)
testResult = None
try:
testResult = bazaar.download(self._env)
self.fail("The version is inexistent, but there is no error. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# last clean up
self.execute_command(["rm", "-rf", "pybindgen"], "/tmp")
def test_cvs(self):
"""Tests the CvsModuleSourceclass. """
# checks if can create the class
cvs = ModuleSource.create("cvs")
self.assertNotEqual(cvs, None)
self.assertEqual(cvs.name(), "cvs")
# Verifies if cvs is installed
testResult = cvs.check_version(self._env)
self.assertTrue(testResult)
cvs.attribute("root").value = ":pserver:anoncvs:@www.gccxml.org:/cvsroot/GCC_XML"
cvs.attribute("module").value="gccxml"
cvs.attribute("date").value="2009-09-21"
self._env._module_name="gccxml"
self._logger.set_current_module(self._env._module_name)
##### Normal Flow test
#clean up the environment, just to be safe
self.execute_command(["/bin/rm", "-rf", "gccxml"], "/tmp")
testResult = cvs.download(self._env)
# None means everything was OK, since there were no exceptions
self.assertEqual(testResult, None)
# will use the README file to see if the update works
testStatus = commands.getoutput('cd /tmp/gccxml; cvs status CMakeLists.txt')
lastVersion = re.compile('\d+.\d+').search(testStatus).group().replace(".","")
#after the test, clean the environment
self.execute_command(["rm", "-rf", "gccxml"], "/tmp")
# download a specific version
cvs.attribute("date").value="2007-09-21"
testResult = cvs.download(self._env)
self.assertEqual(testResult, None)
# verify that the version is the correct one
testStatus = commands.getoutput('cd /tmp/gccxml; cvs status CMakeLists.txt')
version = re.compile('\d+.\d+').search(testStatus).group().replace(".","")
self.assertEqual(version, "18")
# makes an update of the version to a latter version
cvs.attribute("date").value="2008-09-21"
testResult = cvs.update(self._env)
self.assertEqual(testResult, None)
# verify that the version is bigger than the previous one
testStatus = commands.getoutput('cd /tmp/gccxml; cvs status CMakeLists.txt')
version2 = re.compile('\d+.\d+').search(testStatus).group().replace(".","")
self.assertTrue((float(version) < float(version2)))
# Verify if it updates to today's version
cvs.attribute("date").value=None
testResult = cvs.update(self._env)
self.assertEqual(testResult, None)
testStatus = commands.getoutput('cd /tmp/gccxml; cvs status CMakeLists.txt')
version3 = re.compile('\d+.\d+').search(testStatus).group().replace(".","")
self.assertTrue(float(version2) < float(version3))
self.execute_command(["rm", "-rf", "gccxml"], "/tmp")
# Wrong repository
cvs.attribute("root").value = ":pserver:anoncvs:@non.Existent.server.com:/cvsroot/GCC_XML"
cvs.attribute("date").value="2008-09-21"
self._logger.set_current_module(self._env._module_name)
testResult = None
try:
testResult = cvs.download(self._env)
self.fail("There was no problem with a non existent repository. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
self.execute_command(["rm", "-rf", "gccxml"], "/tmp")
# try to download to a non existent directory
testStatus = commands.getoutput('rm -rf /tmp/testDir')
self._env._sourcedir = "/tmp/testDir"
testResult = None
try:
testResult = cvs.download(self._env)
self.fail("There was no problem, target directory does not exist"
" and it managed to finish the operation. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# try to download to a directory where the user has no permission
testStatus = commands.getoutput('mkdir /tmp/testDir;chmod 000 /tmp/testDir')
testResult = None
try:
testResult = cvs.download(self._env)
self.fail("There was no problem, user has no permission on the"
" target directory and it managed to finish the operation. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
testStatus = commands.getoutput('chmod 755 /tmp/testDir; rm -rf /tmp/testDir')
# returns to the original state
cvs.attribute("root").value = ":pserver:anoncvs:@www.gccxml.org:/cvsroot/GCC_XML"
self._env._sourcedir = "/tmp"
# Invalid argument, it is int and should be string
cvs.attribute("checkout_directory").value = -60
testResult = None
try:
testResult = cvs.download(self._env)
self.fail("The version is inexistent, but there is no error. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# can't go for an inexistent version
cvs.attribute("checkout_directory").value = "/tmp"
cvs.attribute("date").value="5000-09-21"
testResult = None
try:
testResult = cvs.download(self._env)
self.fail("The version is inexistent, but there is no error. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# last clean up
self.execute_command(["rm", "-rf", "gccxml"], "/tmp")
def test_git(self):
"""Tests the GitModuleSource. """
# checks if can create the class
git = ModuleSource.create("git")
self.assertNotEqual(git, None)
self.assertEqual(git.name(), "git")
# Verifies if git is installed
testResult = git.check_version(self._env)
self.assertTrue(testResult)
git.attribute("url").value = "git://github.com/git/hello-world.git"
git.attribute("revision").value = "78cfc43c2827b9e48e6586a3523ff845a6378889"
self._env._module_name="hello-world"
self._logger.set_current_module(self._env._module_name)
##### Normal Flow test
#clean up the environment, just to be safe
self.execute_command(["/bin/rm", "-rf", "hello-world"], "/tmp")
testResult = git.download(self._env)
# None means everything was OK, since there were no exceptions
self.assertEqual(testResult, None)
# will use the README file to see if the update works
testStatus = commands.getoutput('cd /tmp/hello-world; git log')
lastVersion = re.compile(' +\w+').search(testStatus).group().replace(" ","")
self.assertEqual(lastVersion, "78cfc43c2827b9e48e6586a3523ff845a6378889")
testResult = git.update(self._env)
self.assertEqual(testResult, None)
git.attribute("revision").value="45021a874e090b765acc5e2696154c495686614b"
testResult = git.update(self._env)
self.assertEqual(testResult, None)
commands.getoutput("cat /tmp/hello-world/c.c >> /tmp/hello-world/dos.bat")
testResult = git.update(self._env)
self.assertEqual(testResult, None)
#after the test, clean the environment
self.execute_command(["rm", "-rf", "hello-world"], "/tmp")
# download a specific version
git.attribute("revision").value="3fa7c46d11b11d61f1cbadc6888be5d0eae21969"
testResult = git.download(self._env)
self.assertEqual(testResult, None)
# verify that the version is the correct one
testStatus = commands.getoutput('cd /tmp/hello-world; git log')
version = re.compile(' +\w+').search(testStatus).group().replace(" ","")
self.assertEqual(version, "3fa7c46d11b11d61f1cbadc6888be5d0eae21969")
self.execute_command(["rm", "-rf", "gccxml"], "/tmp")
#Wrong repository
git.attribute("url").value = "git://inexistant.server.com/git/hello-world.git"
git.attribute("revision").value = "78cfc43c2827b9e48e6586a3523ff845a6378889"
self._logger.set_current_module(self._env._module_name)
testResult = None
try:
testResult = git.download(self._env)
self.fail("There was no problem with a non existent repository. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
self.execute_command(["rm", "-rf", "gccxml"], "/tmp")
# no protocol
git.attribute("url").value = "github.com/git/hello-world.git"
self._logger.set_current_module(self._env._module_name)
testResult = None
try:
testResult = git.download(self._env)
self.fail("There was no problem without protocol. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
git.attribute("url").value = "git://github.com/git/hello-world.git"
self.execute_command(["rm", "-rf", "gccxml"], "/tmp")
# try to download to a non existent directory
testStatus = commands.getoutput('rm -rf /tmp/testDir')
self._env._sourcedir = "/tmp/testDir"
testResult = None
try:
testResult = git.download(self._env)
self.fail("There was no problem, target directory does not"
" exist and it managed to finish the operation. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# try to download to a directory where the user has no permission
testStatus = commands.getoutput('mkdir /tmp/testDir;chmod 000 /tmp/testDir')
testResult = None
try:
testResult = git.download(self._env)
self.fail("There was no problem, user has no permission on the"
" target directory and it managed to finish the operation. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
testStatus = commands.getoutput('chmod 755 /tmp/testDir; rm -rf /tmp/testDir')
# Invalid argument, it is int and should be string
self._env._sourcedir = -60
testResult = None
try:
testResult = git.download(self._env)
self.fail("The version is inexistent, but there is no error. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# returns to the original state
self._env._sourcedir = "/tmp"
# can't go for an inexistent version
git.attribute("revision").value = "1000000000000000000000000000000000000000"
testResult = None
try:
testResult = git.download(self._env)
self.fail("The version is inexistent, but there is no error. ")
except TaskError as e:
self.assertNotEqual(e._reason, None)
self.assertEqual(testResult, None)
# I guess there is a bug in the move of the os library.... I need to see this
# further later
# cvs.attribute("root").value = ":pserver:anoncvs:@www.gccxml.org:/cvsroot/GCC_XML"
# testStatus = commands.getoutput('mkdir /tmp/gccxml;chmod 000 /tmp/gccxml')
# try:
# testResult = cvs.download(self._env)
# self.fail("There was no problem and the user has no permission over the directory. ")
# except TaskError as e:
# self.assertNotEqual(e._reason, None)
# self.assertEqual(testResult, None)
#
# testStatus = commands.getoutput('chmod 755 /tmp/gccxml')
# self.executeCommand(["rm", "-rf", "gccxml"], "/tmp")
# TODO:
# Tests for CvsModuleSource
# GitModuleSource
# InlineModuleSource (?!?!?!)
# main call for the tests
if __name__ == '__main__':
unittest.main()
|