aboutsummaryrefslogtreecommitdiff
path: root/build/test/rule.cxx
blob: b8d7428c6f583146b589e1d6deb1d30d7d2c5e39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
// file      : build/test/rule.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#include <build/test/rule>

#include <butl/process>
#include <butl/fdstream>

#include <build/scope>
#include <build/target>
#include <build/algorithm>
#include <build/diagnostics>

using namespace std;
using namespace butl;

namespace build
{
  namespace test
  {
    match_result rule::
    match (action a, target& t, const std::string&) const
    {
      // First determine if this is a test. This is controlled by
      // the test target variable and text.<tt> scope variables.
      // Also, it feels redundant to specify, say, "test = true"
      // and "test.output = test.out" -- the latter already says
      // this is a test. So take care of that as well.
      //
      bool r (false);
      value_proxy v;

      for (auto p (t.vars.find_namespace ("test"));
           p.first != p.second;
           ++p.first)
      {
        const variable& var (p.first->first);
        value_ptr& val (p.first->second);

        // If we have test, then always use that.
        //
        if (var.name == "test")
        {
          v.rebind (value_proxy (val, t));
          break;
        }

        // Otherwise check for variables that would indicate this
        // is a test.
        //
        if (var.name == "test.input"     ||
            var.name == "test.ouput"     ||
            var.name == "test.roundtrip" ||
            var.name == "test.options"   ||
            var.name == "test.arguments")
        {
          r = true;
          break;
        }
      }

      if (!r)
      {
        // See if the is a scope variable.
        //
        if (!v)
          v.rebind (t.base_scope ()[string("test.") + t.type ().name]);

        r = v && v.as<bool> ();

      }

      if (!r)
        return match_result (t, false); // "Not a test" result.

      // If this is the update pre-operation, make someone else do
      // the job.
      //
      if (a.operation () != test_id)
        return nullptr;

      return match_result (t, true);
    }

    recipe rule::
    apply (action a, target& t, const match_result& mr) const
    {
      tracer trace ("test::rule::apply");

      if (!mr.value) // Not a test.
        return noop_recipe;

      // Don't do anything for other meta-operations.
      //
      if (a != action (perform_id, test_id))
        return noop_recipe;

      // See if we have test.{input,output,roundtrip}. First check the
      // target-specific vars since they override any scope ones.
      //
      auto iv (t.vars["test.input"]);
      auto ov (t.vars["test.output"]);
      auto rv (t.vars["test.roundtrip"]);

      // Can either be input or arguments.
      //
      auto av (t.vars["test.arguments"]);

      if (av)
      {
        if (iv)
          fail << "both test.input and test.arguments specified for "
               << "target " << t;

        if (rv)
          fail << "both test.roundtrip and test.arguments specified for "
               << "target " << t;
      }

      scope& bs (t.base_scope ());

      if (!iv && !ov && !rv)
      {
        string n ("test.");
        n += t.type ().name;

        const variable& in (variable_pool.find (n + ".input"));
        const variable& on (variable_pool.find (n + ".output"));
        const variable& rn (variable_pool.find (n + ".roundtrip"));

        // We should only keep value(s) that were specified together
        // in the innermost scope.
        //
        for (scope* s (&bs); s != nullptr; s = s->parent_scope ())
        {
          ov.rebind (s->vars[on]);

          if (!av) // Not overriden at target level by test.arguments?
          {
            iv.rebind (s->vars[in]);
            rv.rebind (s->vars[rn]);
          }

          if (iv || ov || rv)
            break;
        }
      }

      const name* i;
      const name* o;

      // Reduce the roundtrip case to input/output.
      //
      if (rv)
      {
        if (iv || ov)
          fail << "both test.roundtrip and test.input/output specified "
               << "for target " << t;

        i = o = rv.as<const name*> ();
      }
      else
      {
        i = iv ? iv.as<const name*> () : nullptr;
        o = ov ? ov.as<const name*> () : nullptr;
      }

      // Resolve them to targets (normally just files) and cache in
      // our prerequsite targets lists where they can be found by
      // perform_test(). If we have either or both, then the first
      // entry is input and the second -- output (either can be NULL).
      //
      auto& pts (t.prerequisite_targets);

      if (i != nullptr || o != nullptr)
        pts.resize (2, nullptr);

      //@@ We should match() them, but for update, not test.
      //@@ If not doing this for some reason, need to then verify
      //   path was assigned (i.e., matched an existing file).
      //
      if (i != nullptr)
        pts[0] = &search (*i, bs);

      if (o != nullptr)
        pts[1] = i == o ? pts[0] : &search (*o, bs);

      return &perform_test;
    }

    static void
    add_arguments (cstrings& args, target& t, const char* n)
    {
      string var ("test.");
      var += n;

      auto v (t.vars[var]);

      if (!v)
      {
        var.resize (5);
        var += t.type ().name;
        var += '.';
        var += n;
        v.rebind (t.base_scope ()[var]);
      }

      if (v)
      {
        for (const name& n: v.as<const list_value&> ())
        {
          if (n.simple ())
            args.push_back (n.value.c_str ());
          else if (n.directory ())
            args.push_back (n.dir.string ().c_str ());
          else
            fail << "expected argument instead of " << n <<
              info << "in variable " << var;
        }
      }
    }

    // The format of args shall be:
    //
    // name1 arg arg ... nullptr
    // name2 arg arg ... nullptr
    // ...
    // nameN arg arg ... nullptr nullptr
    //
    static bool
    run_test (target& t,
              diag_record& dr,
              char const** args,
              process* prev = nullptr)
    {
      // Find the next process, if any.
      //
      char const** next (args);
      for (next++; *next != nullptr; next++) ;
      next++;

      // Redirect stdout to a pipe unless we are last, in which
      // case redirect it to stderr.
      //
      int out (*next == nullptr ? 2 : -1);
      bool pr, wr;

      try
      {
        if (prev == nullptr)
        {
          // First process.
          //
          process p (args, 0, out);
          pr = *next == nullptr || run_test (t, dr, next, &p);
          wr = p.wait ();
        }
        else
        {
          // Next process.
          //
          process p (args, *prev, out);
          pr = *next == nullptr || run_test (t, dr, next, &p);
          wr = p.wait ();
        }
      }
      catch (const process_error& e)
      {
        error << "unable to execute " << args[0] << ": " << e.what ();

        if (e.child ())
          exit (1);

        throw failed ();
      }

      if (!wr)
      {
        if (pr) // First failure?
          dr << fail << "test " << t << " failed"; // Multi test: test 1.

        dr << error << "non-zero exit status: ";
        print_process (dr, args);
      }

      return pr && wr;
    }

    target_state rule::
    perform_test (action, target& t)
    {
      // @@ Would be nice to print what signal/core was dumped.
      //
      // @@ Doesn't have to be a file target if we have test.cmd.
      //

      file& ft (static_cast<file&> (t));
      assert (!ft.path ().empty ()); // Should have been assigned by update.

      cstrings args {ft.path ().string ().c_str ()};

      // Do we have options?
      //
      add_arguments (args, t, "options");

      // Do we have input?
      //
      auto& pts (t.prerequisite_targets);
      if (pts.size () != 0 && pts[0] != nullptr)
      {
        file& it (static_cast<file&> (*pts[0]));
        assert (!it.path ().empty ()); // Should have been assigned.
        args.push_back (it.path ().string ().c_str ());
      }
      // Maybe arguments then?
      //
      else
        add_arguments (args, t, "arguments");

      args.push_back (nullptr);

      // Do we have output?
      //
      if (pts.size () != 0 && pts[1] != nullptr)
      {
        file& ot (static_cast<file&> (*pts[1]));
        assert (!ot.path ().empty ()); // Should have been assigned.

        args.push_back ("diff");
        args.push_back ("-u");
        args.push_back (ot.path ().string ().c_str ());
        args.push_back ("-");
        args.push_back (nullptr);
      }

      args.push_back (nullptr); // Second.

      if (verb)
        print_process (args);
      else
        text << "test " << t;

      {
        diag_record dr;

        if (!run_test (t, dr, args.data ()))
        {
          dr << info << "test command line: ";
          print_process (dr, args);
        }
      }

      return target_state::changed;
    }
  }
}