X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FContainer%2FTest%2Ftestcontainer.py;h=18fac2dff8bd8f1560f379fa2880fc582235186f;hb=4b1397db9b357fb267d67f59e953f98b230dced3;hp=77022041a8207b9203c135472dff34c5f54acbd5;hpb=2454295251ef7ee0d71a100597d9428da1247f1e;p=modules%2Fkernel.git diff --git a/src/Container/Test/testcontainer.py b/src/Container/Test/testcontainer.py index 77022041a..18fac2dff 100644 --- a/src/Container/Test/testcontainer.py +++ b/src/Container/Test/testcontainer.py @@ -1,5 +1,5 @@ # -*- coding: iso-8859-1 -*- -# Copyright (C) 2007-2022 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2007-2023 CEA, EDF, OPEN CASCADE # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -57,17 +57,6 @@ class TestResourceManager(unittest.TestCase): self.assertTrue(0.0 <= load <= 1.0) def test1(self): - # Check loadOfCPUCores - cont = self.getContainer("test_container_1") - loads1 = cont.loadOfCPUCores() - self.checkLoads(cont, loads1) - sleep(1) - loads2 = cont.loadOfCPUCores() - self.checkLoads(cont, loads2) - self.assertNotEqual(loads1, loads2) - cont.Shutdown() - - def test2(self): # Check custom script cont = self.getContainer("test_container_2") import multiprocessing as mp @@ -80,14 +69,14 @@ class TestResourceManager(unittest.TestCase): self.checkLoads(cont, loads2) cont.Shutdown() - def test3(self): + def test2(self): # Check bad script cont = self.getContainer("test_container_3") cont.setPyScriptForCPULoad("bla-bla-bla") self.assertRaises(Exception, cont.loadOfCPUCores) cont.Shutdown() - def test4(self): + def test3(self): # check memory sizes cont = self.getContainer("test_container_4") memory_total = cont.getTotalPhysicalMemory() @@ -97,7 +86,7 @@ class TestResourceManager(unittest.TestCase): self.assertGreater(memory_in_use, memory_by_me) cont.Shutdown() - def test5(self): + def test4(self): """ Test checking memory consumption of container """ @@ -108,7 +97,7 @@ class TestResourceManager(unittest.TestCase): psn.execute([],pickle.dumps(((),{}))) memory_by_me_end = cont.getTotalPhysicalMemoryInUseByMe() self.assertGreater(memory_by_me_end,memory_by_me_start) - self.assertIn(memory_by_me_end-memory_by_me_start,[10,11,12])# test elevation of memory + self.assertIn(memory_by_me_end-memory_by_me_start,[9,10,11,12])# test elevation of memory cont.Shutdown() if __name__ == '__main__':