X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=system%2FTestSlice.py;h=27d29014b9e8724d7db197426080880e172da336;hb=bb0875631f86a2603b4e53191a7e88e242c453bf;hp=31bd70b28816294d668990b20bf9ea1bf0ef2a21;hpb=5aab1614c2ccc5dd76395a9613757bf4eec97c3f;p=tests.git diff --git a/system/TestSlice.py b/system/TestSlice.py index 31bd70b..27d2901 100644 --- a/system/TestSlice.py +++ b/system/TestSlice.py @@ -108,10 +108,12 @@ class TestSlice: # trying to reach the slice through ssh - expected to answer def ssh_slice (self, options, *args, **kwds): + "tries to ssh-enter the slice with the user key, to ensure slice creation" return self.do_ssh_slice(options, expected=True, *args, **kwds) # when we expect the slice is not reachable def ssh_slice_off (self, options, *args, **kwds): + "tries to ssh-enter the slice with the user key, expecting it to be unreachable" return self.do_ssh_slice(options, expected=False, *args, **kwds) def do_ssh_slice(self,options,expected=True,timeout_minutes=20,silent_minutes=10,period=15):