def test_download(self):
        """ Tests Install_ICE.download_packages """
        print("")
        print("----------------------------------------------------------------------")
        print("  Testing package downloads...")
        opts = Install_ICE.parse_args(['-u', 'HDFJava'])
        arch_type = platform.machine()
        os_type = platform.system()

        Install_ICE.download_packages(opts, os_type, arch_type)
        n = len(glob.glob("HDFView*"))
        [os.remove(f) for f in glob.glob("HDFView*")]
        self.assertEqual(n, 1)
Esempio n. 2
0
    def test_download(self):
        """ Tests Install_ICE.download_packages """
        print("")
        print(
            "----------------------------------------------------------------------"
        )
        print("  Testing package downloads...")
        opts = Install_ICE.parse_args(['-u', 'HDFJava'])
        arch_type = platform.machine()
        os_type = platform.system()

        Install_ICE.download_packages(opts, os_type, arch_type)
        n = len(glob.glob("HDFView*"))
        [os.remove(f) for f in glob.glob("HDFView*")]
        self.assertEqual(n, 1)
 def test_unpack(self):
     """ Tests Install_ICE.unpack_packages """
     print("")
     print("----------------------------------------------------------------------")
     print("  Testing package downloads...")
     opts = Install_ICE.parse_args(['-u', 'HDFJava'])
     arch_type = platform.machine()
     os_type = platform.system()
     
     pkgs = Install_ICE.download_packages(opts, os_type, arch_type)
     Install_ICE.unpack_packages(opts, pkgs)
     n = len(glob.glob("HDFView*"))
     print("Number of files found = " + str(n))
     self.assertNotEqual(0, n)
Esempio n. 4
0
    def test_unpack(self):
        """ Tests Install_ICE.unpack_packages """
        print("")
        print(
            "----------------------------------------------------------------------"
        )
        print("  Testing package downloads...")
        opts = Install_ICE.parse_args(['-u', 'HDFJava'])
        arch_type = platform.machine()
        os_type = platform.system()

        pkgs = Install_ICE.download_packages(opts, os_type, arch_type)
        Install_ICE.unpack_packages(opts, pkgs)
        n = len(glob.glob("HDFView*"))
        print("Number of files found = " + str(n))
        self.assertNotEqual(0, n)