forked from gnu-octave/octave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystem.tst
384 lines (314 loc) · 9.97 KB
/
system.tst
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
## Copyright (C) 2006-2017 John W. Eaton
##
## This file is part of Octave.
##
## Octave is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or
## (at your option) any later version.
##
## Octave 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 Octave; see the file COPYING. If not, see
## <http://www.gnu.org/licenses/>.
%!test
%! [t1, u1, s1] = cputime ();
%! for i = 1:200
%! sin (i);
%! endfor
%! [t2, u2, s2] = cputime ();
%! assert (t1, u1 + s1, 2*eps (t1));
%! assert (t2, u2 + s2, 2*eps (t2));
%! assert (t2 >= t1);
%! assert (u2 >= u2);
%! assert (s2 >= s2);
%!test
%! tic ();
%! pause (2);
%! assert (toc () > 0);
%!test
%! pause (0);
%! __printf_assert__ ("ok\n");
%! assert (__prog_output_assert__ ("ok"));
%!error <Invalid call to pause> pause (1, 2)
%!test
%! from = tempname ();
%! to = tempname ();
%! id = fopen (from, "wb");
%! if (id > 0 && fclose (id) == 0)
%! [s, e] = stat (from);
%! if (! e)
%! if (rename (from, to) == 0)
%! [s, e] = stat (from);
%! if (e < 0)
%! [s, e] = stat (to);
%! assert (e == 0);
%! unlink (to);
%! endif
%! endif
%! endif
%! endif
%!error <Invalid call to rename> rename ()
%!error <Invalid call to rename> rename ("foo", "bar", 1)
%!test
%! nm = tempname ();
%! if ((id = fopen (nm, "wb")) > 0)
%! [s, err] = stat (nm);
%! if (! err && fclose (id) == 0 && unlink (nm) == 0)
%! [s, err] = stat (nm);
%! assert (err < 0);
%! endif
%! endif
%!error <Invalid call to unlink> unlink ()
%!error <Invalid call to unlink> unlink ("foo", 1)
%!error <FILE must be a string> unlink ({})
%!test
%! [files, status, msg] = readdir (filesep);
%! assert (iscell (files) && status == 0 && strcmp (msg, ""));
%!error <Invalid call to readdir> readdir ()
%!error <Invalid call to readdir> readdir ("foo", 1)
%!test
%! nm = tempname ();
%! e1 = mkdir (nm);
%! [s2, e2] = stat (nm);
%! e3 = rmdir (nm);
%! [s4, e4] = stat (nm);
%! assert ((e1 && strcmp (s2.modestr(1), "d") && e3 && e4 < 0));
%!error <Invalid call to mkdir> mkdir ()
%!error <Invalid call to mkdir> mkdir ("foo", 1, 2)
%!error <Invalid call to rmdir> rmdir ()
%!test
%! crr = confirm_recursive_rmdir ();
%! confirm_recursive_rmdir (0);
%! assert (!rmdir ("foo", "s"));
%! confirm_recursive_rmdir (crr);
%!test
%! ## Test makes no sense on Windows systems
%! if (isunix () || ismac ())
%! orig_umask = umask (0);
%! nm = tempname ();
%! id = fopen (nm, "wb");
%! s1 = stat (nm);
%! fclose (id);
%! unlink (nm);
%!
%! umask (777);
%! nm = tempname ();
%! id = fopen (nm, "wb");
%! s2 = stat (nm);
%! fclose (id);
%! unlink (nm);
%!
%! assert (deblank (s1.modestr), "-rw-rw-rw-");
%! assert (deblank (s2.modestr), "----------");
%! ## Restore original umask value
%! umask (orig_umask);
%! endif
%!error <Invalid call to umask> umask ()
%!error <Invalid call to umask> umask (1, 2)
%!test
%! [s, err, msg] = stat (filesep);
%! assert (err == 0
%! && isstruct (s)
%! && isfield (s, "dev")
%! && isfield (s, "ino")
%! && isfield (s, "modestr")
%! && isfield (s, "nlink")
%! && isfield (s, "uid")
%! && isfield (s, "gid")
%! && isfield (s, "size")
%! && isfield (s, "atime")
%! && isfield (s, "mtime")
%! && isfield (s, "ctime")
%! && ischar (msg));
%!error <Invalid call to stat> stat ()
%!error <Invalid call to stat> stat ("foo", 1)
%!test
%! [s, err, msg] = lstat (filesep);
%! assert (err == 0
%! && isstruct (s)
%! && isfield (s, "dev")
%! && isfield (s, "ino")
%! && isfield (s, "modestr")
%! && isfield (s, "nlink")
%! && isfield (s, "uid")
%! && isfield (s, "gid")
%! && isfield (s, "size")
%! && isfield (s, "atime")
%! && isfield (s, "mtime")
%! && isfield (s, "ctime")
%! && ischar (msg));
%!error <Invalid call to lstat> lstat ()
%!error <Invalid call to lstat> lstat ("foo", 1)
%!test
%! if (isunix ())
%! assert (S_ISCHR (stat ("/dev/null").mode));
%! if (exist ("/dev/initctl"))
%! assert (S_ISFIFO (stat ("/dev/initctl").mode));
%! endif
%! if (exist ("/dev/core"))
%! assert (S_ISLNK (lstat ("/dev/core").mode));
%! endif
%! endif
%! nm = tempname ();
%! fid = fopen (nm, "wb");
%! fclose (fid);
%! r = [ S_ISREG(stat(nm).mode)
%! S_ISDIR(stat(nm).mode)
%! S_ISCHR(stat(nm).mode)
%! S_ISBLK(stat(nm).mode)
%! S_ISFIFO(stat(nm).mode)
%! S_ISLNK(lstat(nm).mode)
%! S_ISSOCK(stat(nm).mode) ];
%! unlink (nm);
%! assert (r(:), [true; false; false; false; false; false; false]);
%!error <S_ISREG: invalid MODE value> S_ISREG ({})
%!error <S_ISDIR: invalid MODE value> S_ISDIR ({})
%!error <S_ISCHR: invalid MODE value> S_ISCHR ({})
%!error <S_ISBLK: invalid MODE value> S_ISBLK ({})
%!error <S_ISFIFO: invalid MODE value> S_ISFIFO ({})
%!error <S_ISLNK: invalid MODE value> S_ISLNK ({})
%!error <S_ISSOCK: invalid MODE value> S_ISSOCK ({})
%!error <Invalid call to S_ISREG> S_ISREG ()
%!error <Invalid call to S_ISDIR> S_ISDIR ()
%!error <Invalid call to S_ISCHR> S_ISCHR ()
%!error <Invalid call to S_ISBLK> S_ISBLK ()
%!error <Invalid call to S_ISFIFO> S_ISFIFO ()
%!error <Invalid call to S_ISLNK> S_ISLNK ()
%!error <Invalid call to S_ISSOCK> S_ISSOCK ()
%!assert (iscell (glob ([filesep "*"])))
%!error <Invalid call to glob> glob ()
%!error <Invalid call to glob> glob ("foo", 1)
%!assert (ischar (file_in_path (path (), "date.m")))
%!error <file_in_path: optional third argument must be a string> file_in_path ("foo", "bar", 1)
%!error <Invalid call to file_in_path> file_in_path ()
%!error <Invalid call to file_in_path> file_in_path ("foo", "bar", "baz", "ooka")
%!testif HAVE_GETPWUID
%! x = getpwuid (getuid ());
%! assert (x.dir, tilde_expand ("~"));
%! assert (x.dir, tilde_expand (sprintf ("~%s", x.name)));
%! assert ("foobar", tilde_expand ("foobar"));
%!error <Invalid call to tilde_expand> tilde_expand ()
%!error <Invalid call to tilde_expand> tilde_expand ("str", 2)
%!testif HAVE_GETPGRP
%! assert (getpgrp () > 0);
%!error <... getpgrp> getpgrp (1)
%!assert (getpid () > 0)
%!error <... getpid> getpid (1)
%!testif HAVE_GETPPID
%! assert (getppid () > 0);
%!error <... getppid> getppid (1)
%!testif HAVE_GETEUID
%! assert (geteuid () >= 0)
%!error <... geteuid> geteuid (1)
%!testif HAVE_GETUID
%! assert (getuid () >= 0)
%!error <... getuid> getuid (1)
%!testif HAVE_GETEGID
%! assert (getegid () >= 0)
%!error <... getegid> getegid (1)
%!testif HAVE_GETGID
%! assert (getgid () >= 0)
%!error <... getgid> getgid (1)
%!assert (get_home_directory (), tilde_expand ("~"))
%!error <Invalid call to getenv> getenv ()
%!error <Invalid call to getenv> getenv ("foo", 1)
%!test
%! wns = warning ("query", "Octave:num-to-str");
%! warning ("on", "Octave:num-to-str");
%! fail ("getenv (1)", "warning");
%! warning (wns.state, "Octave:num-to-str");
%!test
%! setenv ("foobar", "baz");
%! assert (getenv ("foobar"), "baz");
%!error <Invalid call to setenv> setenv ()
%!error <Invalid call to setenv> setenv ("foo", "bar", 1)
%!error <VAR must be a string> setenv (1, 2)
%!test
%! xdir = pwd ();
%! cd /
%! d1 = pwd ();
%! cd (xdir);
%! if (ispc () && ! isunix ())
%! ## should be a drive letter
%! assert (length (d1), 3);
%! assert (d1(2), ":");
%! assert (d1(3), "\\");
%! else
%! assert ("/", d1);
%! endif
%! assert (pwd (), xdir);
%!error cd (1)
%!assert (ischar (pwd ()))
%!testif HAVE_GETPWENT
%! s = getpwent ();
%! endpwent ();
%! assert (isstruct (s)
%! && isfield (s, "name")
%! && isfield (s, "passwd")
%! && isfield (s, "uid")
%! && isfield (s, "gid")
%! && isfield (s, "gecos")
%! && isfield (s, "dir")
%! && isfield (s, "shell"));
%!error <Invalid call to getpwent> getpwent (1)
%!testif HAVE_GETPWUID
%! x = getpwent ();
%! y = getpwuid (x.uid);
%! endpwent ();
%! assert (strcmp (x.name, y.name) && x.uid == y.uid && x.gid == y.gid);
%!error <Invalid call to getpwuid> getpwuid ()
%!error <Invalid call to getpwuid> getpwuid (1, 2)
%!testif HAVE_GETPWNAM
%! x = getpwent ();
%! y = getpwnam (x.name);
%! endpwent ();
%! assert (strcmp (x.name, y.name) && x.uid == y.uid && x.gid == y.gid);
%!error <Invalid call to getpwnam> getpwnam ()
%!error <Invalid call to getpwnam> getpwnam ("foo", 1)
%!testif HAVE_SETPWENT
%! x = getpwent ();
%! setpwent ();
%! y = getpwent ();
%! endpwent ();
%! assert (strcmp (x.name, y.name) && x.uid == y.uid && x.gid == y.gid);
%!error <Invalid call to setpwent> setpwent (1)
%!error <Invalid call to endpwent> endpwent (1)
%!testif HAVE_GETGRENT
%! x = getgrent ();
%! endgrent ();
%! assert (isstruct (x)
%! && isfield (x, "name")
%! && isfield (x, "passwd")
%! && isfield (x, "gid")
%! && isfield (x, "mem"));
%!error <Invalid call to getgrent> getgrent (1)
%!testif HAVE_GETGRGID
%! x = getgrent ();
%! y = getgrgid (x.gid);
%! endgrent ();
%! assert (strcmp (x.name, y.name) && x.gid == y.gid);
%!error <Invalid call to getgrgid> getgrgid ()
%!error <Invalid call to getgrgid> getgrgid (1, 2)
%!testif HAVE_GETGRNAM
%! x = getgrent ();
%! y = getgrnam (x.name);
%! endgrent ();
%! assert (strcmp (x.name, y.name) && x.gid == y.gid);
%!error <Invalid call to getgrnam> getgrnam ()
%!error <Invalid call to getgrnam> getgrnam ("foo", 1)
%!testif HAVE_SETGRENT
%! x = getgrent ();
%! setgrent ();
%! y = getgrent ();
%! endgrent ();
%! assert (strcmp (x.name, y.name) && x.gid == y.gid);
%!error <Invalid call to setgrent> setgrent (1)
%!error <Invalid call to endgrent> endgrent (1)
%!assert (isieee () == 1 || isieee () == 0)
%!assert (isstruct (__octave_config_info__ ()))
%!assert (isstruct (getrusage ()))