Bugfixing LinuxNode and LinuxApplication
[nepi.git] / test / resources / linux / node.py
1 #!/usr/bin/env python
2 #
3 #    NEPI, a framework to manage network experiments
4 #    Copyright (C) 2013 INRIA
5 #
6 #    This program is free software: you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License as published by
8 #    the Free Software Foundation, either version 3 of the License, or
9 #    (at your option) any later version.
10 #
11 #    This program is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
20
21
22 from nepi.resources.linux.node import LinuxNode, ExitCode
23 from nepi.util.sshfuncs import ProcStatus
24
25 from test_utils import skipIfNotAlive, skipInteractive, create_node
26
27 import os
28 import time
29 import tempfile
30 import unittest
31
32 class LinuxNodeTestCase(unittest.TestCase):
33     def setUp(self):
34         self.fedora_host = "nepi2.pl.sophia.inria.fr"
35         self.fedora_user = "inria_nepi"
36
37         self.ubuntu_host = "roseval.pl.sophia.inria.fr"
38         self.ubuntu_user = "alina"
39         
40         self.target = "nepi5.pl.sophia.inria.fr"
41
42     @skipIfNotAlive
43     def t_execute(self, host, user):
44         node, ec = create_node(host, user)
45
46         command = "ping -qc3 %s" % self.target
47         
48         (out, err), proc = node.execute(command)
49
50         expected = """3 packets transmitted, 3 received, 0% packet loss"""
51
52         self.assertTrue(out.find(expected) > 0)
53
54     @skipIfNotAlive
55     def t_run(self, host, user):
56         node, ec = create_node(host, user)
57         
58         app_home = os.path.join(node.exp_home, "my-app")
59         node.mkdir(app_home, clean = True)
60         
61         command = "ping %s" % self.target
62         node.run(command, app_home)
63         pid, ppid = node.getpid(app_home)
64
65         status = node.status(pid, ppid)
66         self.assertTrue(status, ProcStatus.RUNNING)
67
68         node.kill(pid, ppid)
69         status = node.status(pid, ppid)
70         self.assertTrue(status, ProcStatus.FINISHED)
71         
72         (out, err), proc = node.check_output(app_home, "stdout")
73
74         expected = """64 bytes from"""
75
76         self.assertTrue(out.find(expected) > 0)
77
78         node.rmdir(app_home)
79
80     @skipIfNotAlive
81     def t_exitcode_ok(self, host, user):
82         command = "echo 'OK!'"
83         
84         node, ec = create_node(host, user)
85          
86         app_home = os.path.join(node.exp_home, "my-app")
87         node.mkdir(app_home, clean = True)
88          
89         (out, err), proc = node.run_and_wait(command, app_home,
90             shfile = "cmd.sh",
91             pidfile = "pid",
92             ecodefile = "exitcode",
93             stdout = "stdout", 
94             stderr = "stderr",
95             raise_on_error = True)
96  
97         # get the pid of the process
98         ecode = node.exitcode(app_home)
99         self.assertEquals(ecode, ExitCode.OK)
100
101     @skipIfNotAlive
102     def t_exitcode_kill(self, host, user):
103         node, ec = create_node(host, user)
104          
105         app_home = os.path.join(node.exp_home, "my-app")
106         node.mkdir(app_home, clean = True)
107        
108         # Upload command that will not finish
109         command = "ping localhost"
110         (out, err), proc = node.upload_command(command, app_home, 
111             shfile = "cmd.sh",
112             ecodefile = "exitcode")
113
114         (out, err), proc = node.run(command, app_home,
115             pidfile = "pidfile",
116             stdout = "stdout", 
117             stderr = "stderr")
118  
119         # Just wait to make sure the ping started
120         time.sleep(5)
121
122         # The process is still running, so no retfile has been created yet
123         ecode = node.exitcode(app_home)
124         self.assertEquals(ecode, ExitCode.FILENOTFOUND)
125         
126         (out, err), proc = node.check_errors(app_home)
127         self.assertEquals(err, "")
128         
129         # Now kill the app
130         pid, ppid = node.getpid(app_home)
131         node.kill(pid, ppid)
132          
133         (out, err), proc = node.check_errors(app_home)
134         self.assertEquals(err, "")
135
136     @skipIfNotAlive
137     def t_exitcode_error(self, host, user):
138         # Try to execute a command that doesn't exist
139         command = "unexistent-command"
140         
141         node, ec = create_node(host, user)
142          
143         app_home = os.path.join(node.exp_home, "my-app")
144         node.mkdir(app_home, clean = True)
145          
146         (out, err), proc = node.run_and_wait(command, app_home,
147             shfile = "cmd.sh",
148             pidfile = "pid",
149             ecodefile = "exitcode",
150             stdout = "stdout", 
151             stderr = "stderr",
152             raise_on_error = False)
153  
154         # get the pid of the process
155         ecode = node.exitcode(app_home)
156         # bash erro 127 - command not found
157         self.assertEquals(ecode, 127)
158  
159         (out, err), proc = node.check_errors(app_home)
160         self.assertNotEquals(out, "")
161
162     @skipIfNotAlive
163     def t_install(self, host, user):
164         node, ec = create_node(host, user)
165
166         (out, err), proc = node.mkdir(node.node_home, clean = True)
167         self.assertEquals(out, "")
168
169         (out, err), proc = node.install_packages("gcc", node.node_home)
170         self.assertEquals(out, "")
171
172         (out, err), proc = node.remove_packages("gcc", node.node_home)
173         self.assertEquals(out, "")
174
175         (out, err), proc = node.rmdir(node.exp_home)
176         self.assertEquals(out, "")
177
178     @skipIfNotAlive
179     def t_xterm(self, host, user):
180         node, ec = create_node(host, user)
181
182         (out, err), proc = node.mkdir(node.node_home, clean = True)
183         self.assertEquals(out, "")
184         
185         node.install_packages("xterm", node.node_home)
186         self.assertEquals(out, "")
187
188         (out, err), proc = node.execute("xterm", forward_x11 = True)
189         self.assertEquals(out, "")
190
191         (out, err), proc = node.remove_packages("xterm", node.node_home)
192         self.assertEquals(out, "")
193
194     @skipIfNotAlive
195     def t_compile(self, host, user):
196         node, ec = create_node(host, user)
197
198         app_home = os.path.join(node.exp_home, "my-app")
199         node.mkdir(app_home, clean = True)
200
201         prog = """#include <stdio.h>
202
203 int
204 main (void)
205 {
206     printf ("Hello, world!\\n");
207     return 0;
208 }
209 """
210         # upload the test program
211         dst = os.path.join(app_home, "hello.c")
212         node.upload(prog, dst, text = True)
213
214         # install gcc
215         node.install_packages('gcc', app_home)
216
217         # compile the program using gcc
218         command = "cd %s; gcc -Wall hello.c -o hello" % app_home
219         (out, err), proc = node.execute(command)
220
221         # execute the program and get the output from stdout
222         command = "%s/hello" % app_home 
223         (out, err), proc = node.execute(command)
224
225         self.assertEquals(out, "Hello, world!\n")
226
227         # execute the program and get the output from a file
228         command = "%(home)s/hello > %(home)s/hello.out" % {
229                 'home': app_home}
230         (out, err), proc = node.execute(command)
231
232         # retrieve the output file 
233         src = os.path.join(app_home, "hello.out")
234         f = tempfile.NamedTemporaryFile(delete = False)
235         dst = f.name
236         node.download(src, dst)
237         f.close()
238
239         node.remove_packages("gcc", app_home)
240         node.rmdir(app_home)
241
242         f = open(dst, "r")
243         out = f.read()
244         f.close()
245         
246         self.assertEquals(out, "Hello, world!\n")
247
248     def test_execute_fedora(self):
249         self.t_execute(self.fedora_host, self.fedora_user)
250
251     def test_execute_ubuntu(self):
252         self.t_execute(self.ubuntu_host, self.ubuntu_user)
253
254     def test_run_fedora(self):
255         self.t_run(self.fedora_host, self.fedora_user)
256
257     def test_run_ubuntu(self):
258         self.t_run(self.ubuntu_host, self.ubuntu_user)
259
260     def test_intall_fedora(self):
261         self.t_install(self.fedora_host, self.fedora_user)
262
263     def test_install_ubuntu(self):
264         self.t_install(self.ubuntu_host, self.ubuntu_user)
265
266     def test_compile_fedora(self):
267         self.t_compile(self.fedora_host, self.fedora_user)
268
269     def test_compile_ubuntu(self):
270         self.t_compile(self.ubuntu_host, self.ubuntu_user)
271
272     def test_exitcode_ok_fedora(self):
273         self.t_exitcode_ok(self.fedora_host, self.fedora_user)
274
275     def test_exitcode_ok_ubuntu(self):
276         self.t_exitcode_ok(self.ubuntu_host, self.ubuntu_user)
277
278     def test_exitcode_kill_fedora(self):
279         self.t_exitcode_kill(self.fedora_host, self.fedora_user)
280
281     def test_exitcode_kill_ubuntu(self):
282         self.t_exitcode_kill(self.ubuntu_host, self.ubuntu_user)
283
284     def test_exitcode_error_fedora(self):
285         self.t_exitcode_error(self.fedora_host, self.fedora_user)
286
287     def test_exitcode_error_ubuntu(self):
288         self.t_exitcode_error(self.ubuntu_host, self.ubuntu_user)
289     
290     @skipInteractive
291     def test_xterm_ubuntu(self):
292         """ Interactive test. Should not run automatically """
293         self.t_xterm(self.ubuntu_host, self.ubuntu_user)
294
295
296 if __name__ == '__main__':
297     unittest.main()
298