]> git.ipfire.org Git - thirdparty/cups.git/blob - test/5.1-lpadmin.sh
668079929c75bbf5c29785db239b5274a7b4eb37
[thirdparty/cups.git] / test / 5.1-lpadmin.sh
1 #!/bin/sh
2 #
3 # "$Id$"
4 #
5 # Test the lpadmin command.
6 #
7 # Copyright 2007-2012 by Apple Inc.
8 # Copyright 1997-2005 by Easy Software Products, all rights reserved.
9 #
10 # These coded instructions, statements, and computer programs are the
11 # property of Apple Inc. and are protected by Federal copyright
12 # law. Distribution and use rights are outlined in the file "LICENSE.txt"
13 # which should have been included with this file. If this file is
14 # file is missing or damaged, see the license at "http://www.cups.org/".
15 #
16
17 echo "Add Printer Test"
18 echo ""
19 echo " lpadmin -p Test3 -v file:/dev/null -E -m drv:///sample.drv/deskjet.ppd"
20 $VALGRIND ../systemv/lpadmin -p Test3 -v file:/dev/null -E -m drv:///sample.drv/deskjet.ppd 2>&1
21 if test $? != 0; then
22 echo " FAILED"
23 exit 1
24 else
25 echo " PASSED"
26 fi
27 echo ""
28
29 echo "Modify Printer Test"
30 echo ""
31 echo " lpadmin -p Test3 -v file:/tmp/Test3 -o PageSize=A4"
32 $VALGRIND ../systemv/lpadmin -p Test3 -v file:/tmp/Test3 -o PageSize=A4 2>&1
33 if test $? != 0; then
34 echo " FAILED"
35 exit 1
36 else
37 echo " PASSED"
38 fi
39 echo ""
40
41 echo "Delete Printer Test"
42 echo ""
43 echo " lpadmin -x Test3"
44 $VALGRIND ../systemv/lpadmin -x Test3 2>&1
45 if test $? != 0; then
46 echo " FAILED"
47 exit 1
48 else
49 echo " PASSED"
50 fi
51 echo ""
52
53 echo "Add Shared Printer Test"
54 echo ""
55 echo " lpadmin -p Test3 -E -v ipp://localhost:8631/printers/Test2 -m raw"
56 $VALGRIND ../systemv/lpadmin -p Test3 -E -v ipp://localhost:8631/printers/Test2 -m raw 2>&1
57 if test $? != 0; then
58 echo " FAILED"
59 exit 1
60 else
61 echo " PASSED"
62 fi
63 echo ""
64
65 #
66 # End of "$Id$".
67 #