6ef0b70d4ac697c43b07486166ec98fa5f11c898
[libguestfs.git] / regressions / rhbz557655.sh
1 #!/bin/bash -
2 # libguestfs
3 # Copyright (C) 2009 Red Hat Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 # Regression test for:
20 # https://bugzilla.redhat.com/show_bug.cgi?id=557655
21 # "guestfish number parsing should not use atoi, should support '0...' for octal and '0x...' for hexadecimal"
22
23 set -e
24 rm -f test.out
25 export LANG=C
26
27 ../fish/guestfish >> test.out 2>&1 <<EOF
28 # set-memsize is just a convenient non-daemon function that
29 # takes a single integer argument.
30 set-memsize 0
31 get-memsize
32 set-memsize 0x10
33 get-memsize
34 set-memsize 010
35 get-memsize
36 set-memsize -1073741824
37 get-memsize
38 set-memsize 1073741823
39 get-memsize
40
41 # the following should all provoke error messages:
42 -set-memsize -9000000000000000
43 -set-memsize 9000000000000000
44 -set-memsize 0x900000000000
45 -set-memsize 07777770000000000000
46 -set-memsize ABC
47 -set-memsize 09
48 -set-memsize 123K
49 -set-memsize 123L
50 EOF
51
52 ../fish/guestfish >> test.out 2>&1 <<EOF
53 alloc test1.img 10M
54 run
55 part-disk /dev/sda mbr
56 mkfs ext2 /dev/sda1
57 mount /dev/sda1 /
58
59 touch /test
60
61 # truncate-size takes an Int64 argument
62 truncate-size /test 1234
63 filesize /test
64 truncate-size /test 0x4d2
65 filesize /test
66 truncate-size /test 02322
67 filesize /test
68
69 # should parse OK, but underlying filesystem will reject it:
70 -truncate-size /test 0x7fffffffffffffff
71
72 # larger than 64 bits, should be an error:
73 -truncate-size /test 0x10000000000000000
74
75 # these should all provoke parse errors:
76 -truncate-size /test ABC
77 -truncate-size /test 09
78 -truncate-size /test 123K
79 -truncate-size /test 123L
80 EOF
81
82 diff -u test.out rhbz557655-expected.out
83 rm test.out test1.img