]> git.sur5r.net Git - bacula/bacula/blob - regress/README
commit changes
[bacula/bacula] / regress / README
1              Bacula Regression
2                Kern Sibbald
3
4 This is Bacula's regression script directory.
5
6 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7 Warning!!!! Make sure not to run it on the same system 
8 with your production Catalog because the tables will all
9 be cleared. You can run it on the your production system
10 if you use a different database.
11 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
13
14 To set it up, create your personal configuration file, by
15 copying prototype.conf to xxx.conf or simply editing prototype.conf
16 directly.
17
18 Then edit your conf file and define appropriate values
19 for the variables that are in that file.  If you want to see
20 a real example, look at kern.conf, but please don't use my
21 email address!
22
23 Make sure that depkgs is pre-built if it isn't 
24 already: (cd your-depkgs; make sqlite).
25 Using the .conf file, you can now select between any Catalog type:
26 SQLite, SQLite3, MySQL, or PostgreSQL.  Be aware, however, if you
27 use an installed database on a production server, running these
28 tests will delete all the tables !!!!!!!!!!!!!!!!!!  I run my
29 tests on a non-production machine, and in addition, I normally use
30 SQLite as the database, while my production uses MySQL.
31
32 Then do:
33
34    ./config xxx.conf
35    make setup
36
37 You run the above one time.  This will build a Makefile from
38 Makefile.in and your xxx.conf file, copy the Bacula source,
39 configure, build it, and configure all the Bacula scripts
40 and conf files.  If you change your source, you will need to
41 redo this command.
42
43 Then you can run any of the tests in the tests subdirectory.
44 Each test whose name ends in -root requires you to be root for
45 a resonable run.  Each test is totally independent of any other
46 test. Aside from the required "make setup", each test is totally
47 self-initalizing and should clean up after itself.
48
49 The tests expect you to execute them from the main regress 
50 directory!               
51
52 You can run all the disk based tests by doing:
53
54   ./do_file
55
56 You can run all the disk and most of the tape tests by doing:
57
58   ./do_all
59
60 Each of the above calls one or more scripts. By looking at the
61 scripts available in this directory, you can see that there are a number
62 of options for running tests.
63
64 You can run them individually as:
65
66    tests/two-jobs-test
67
68 or all non-root tests (my normal testing under my account)
69
70   ./all-non-root-tests
71
72 or all tests (I only run these before a production release):
73
74    su
75    ./all-tests
76
77
78 after running the root tests, while still root, it is a good idea
79 to do:
80
81    make reset
82
83 this cleans up any files that may be created with root permissions.
84
85 If you want to add more tests, do so by putting the shell script 
86 in the tests subdirectory. Be careful when adding (or better not)
87 new clients, pools, and such to the test-bacula-dir.conf.in file
88 as it may invalidate a good number of tests, which respond to
89 questions by answering with a number (i.e. the order of the selection
90 list is known). It might be better to add your own testb-bacula...
91 configuration file.  
92
93 To avoid re-doing a make setup if you have made a change to the
94 conf files, and you do not need a new copy of the source, you can simply do:
95
96    make sed
97
98 Debugging failed tests:
99 The simplest thing to do is to edit tests/xxxx where xxxx is the name of
100 the test, and change the line "debug=0" to "debug=1".  If the test has
101 not been updated to have the debug variable, please notify Kern, and I
102 will be happy to fix it -- I am upgrading them one at a time.
103
104 Also, if you run from time to time on a computer that is not connected
105 to the network, please be sure that "hostname" is set to "localhost",
106 otherwise, your tests may fail because the hostname used by Bacula's
107 ./configure cannot be properly resolved.