Fill test disk partitions with random noise to expose more bugs.
[dcpomatic.git] / test / job_manager_test.cc
1 /*
2     Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 /** @file  test/job_manager_test.cc
23  *  @brief Test JobManager.
24  *  @ingroup selfcontained
25  */
26
27
28 #include "lib/cross.h"
29 #include "lib/job.h"
30 #include "lib/job_manager.h"
31 #include <boost/test/unit_test.hpp>
32
33
34 using std::make_shared;
35 using std::shared_ptr;
36 using std::string;
37 using std::vector;
38
39
40 class TestJob : public Job
41 {
42 public:
43         explicit TestJob (shared_ptr<Film> film)
44                 : Job (film)
45         {
46
47         }
48
49         ~TestJob ()
50         {
51                 stop_thread ();
52         }
53
54         void set_finished_ok () {
55                 set_state (FINISHED_OK);
56         }
57
58         void set_finished_error () {
59                 set_state (FINISHED_ERROR);
60         }
61
62         void run () override
63         {
64                 while (true) {
65                         if (finished ()) {
66                                 return;
67                         }
68                 }
69         }
70
71         string name () const override {
72                 return "";
73         }
74
75         string json_name () const override {
76                 return "";
77         }
78 };
79
80
81 BOOST_AUTO_TEST_CASE (job_manager_test1)
82 {
83         shared_ptr<Film> film;
84
85         /* Single job */
86         auto a = make_shared<TestJob>(film);
87
88         JobManager::instance()->add (a);
89         dcpomatic_sleep_seconds (1);
90         BOOST_CHECK (a->running());
91         a->set_finished_ok ();
92         dcpomatic_sleep_seconds (2);
93         BOOST_CHECK (a->finished_ok());
94 }
95
96
97 BOOST_AUTO_TEST_CASE (job_manager_test2)
98 {
99         shared_ptr<Film> film;
100
101         vector<shared_ptr<TestJob>> jobs;
102         for (int i = 0; i < 16; ++i) {
103                 auto job = make_shared<TestJob>(film);
104                 jobs.push_back (job);
105                 JobManager::instance()->add (job);
106         }
107
108         dcpomatic_sleep_seconds (1);
109         BOOST_CHECK (jobs[0]->running());
110         jobs[0]->set_finished_ok();
111
112         dcpomatic_sleep_seconds (1);
113         BOOST_CHECK (!jobs[0]->running());
114         BOOST_CHECK (jobs[1]->running());
115
116         /* Push our jobs[5] to the top of the list */
117         for (int i = 0; i < 5; ++i) {
118                 JobManager::instance()->increase_priority(jobs[5]);
119         }
120
121         dcpomatic_sleep_seconds (1);
122         for (int i = 0; i < 16; ++i) {
123                 BOOST_CHECK (i == 5 ? jobs[i]->running() : !jobs[i]->running());
124         }
125
126         /* Set any jobs that are started to be finished, until they're all finished */
127         while (true) {
128                 if (std::find_if(jobs.begin(), jobs.end(), [](shared_ptr<Job> job) { return !job->finished_ok(); }) == jobs.end()) {
129                         break;
130                 }
131
132                 for (auto job: jobs) {
133                         if (job->running()) {
134                                 job->set_finished_ok();
135                         }
136                 }
137         }
138
139         BOOST_REQUIRE (!wait_for_jobs());
140 }
141