Merge master.
[dcpomatic.git] / test / job_test.cc
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  test/job_test.cc
21  *  @brief Basic tests of Job and JobManager.
22  */
23
24 #include <boost/test/unit_test.hpp>
25 #include "lib/job.h"
26 #include "lib/job_manager.h"
27 #include "lib/cross.h"
28
29 using std::string;
30 using boost::shared_ptr;
31
32 class TestJob : public Job
33 {
34 public:
35         TestJob (shared_ptr<Film> f)
36                 : Job (f)
37         {
38
39         }
40
41         void set_finished_ok () {
42                 set_state (FINISHED_OK);
43         }
44
45         void set_finished_error () {
46                 set_state (FINISHED_ERROR);
47         }
48
49         void run ()
50         {
51                 while (true) {
52                         if (finished ()) {
53                                 return;
54                         }
55                 }
56         }
57
58         string name () const {
59                 return "";
60         }
61 };
62
63 BOOST_AUTO_TEST_CASE (job_manager_test)
64 {
65         shared_ptr<Film> f;
66
67         /* Single job */
68         shared_ptr<TestJob> a (new TestJob (f));
69
70         JobManager::instance()->add (a);
71         dcpomatic_sleep (1);
72         BOOST_CHECK_EQUAL (a->running (), true);
73         a->set_finished_ok ();
74         dcpomatic_sleep (2);
75         BOOST_CHECK_EQUAL (a->finished_ok(), true);
76 }