summaryrefslogtreecommitdiff
path: root/vendor/bandit/bandit/reporters/test_run_summary.h
blob: aa1d4a591c8fc2b4873a2fb4b091ffc90e74a9d5 (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
#ifndef BANDIT_TEST_RUN_SUMMARY_H
#define BANDIT_TEST_RUN_SUMMARY_H

namespace bandit { namespace detail {

  struct test_run_summary
  {
    test_run_summary(int specs_run, int specs_failed, int specs_succeeded, int specs_skipped,
      const std::list<std::string>& failures, const std::list<std::string>& test_run_errors,
      const detail::colorizer& colorizer)
      : specs_run_(specs_run), specs_succeeded_(specs_succeeded), specs_failed_(specs_failed), 
      specs_skipped_(specs_skipped), failures_(failures), test_run_errors_(test_run_errors), 
      colorizer_(colorizer)
    {}

	test_run_summary& operator=(const test_run_summary&) { return *this; }

    void write(std::ostream& stm)
    {
      if(specs_run_ == 0 && test_run_errors_.size() == 0)
      {
        stm << colorizer_.red();
        stm << "Could not find any tests.";
        stm << colorizer_.reset();
        stm << std::endl;
        return;
      }

      if(specs_failed_ == 0 && test_run_errors_.size() == 0)
      {
        stm << colorizer_.green();
        stm << "Success!";
        stm << colorizer_.reset();
        stm << std::endl;
      }

      if(test_run_errors_.size() > 0)
      {
        std::for_each(test_run_errors_.begin(), test_run_errors_.end(),
            [&](const std::string& error){
            stm << error << std::endl;
            });
      }


      if(specs_failed_ > 0)
      {
        stm << colorizer_.red();
        stm << "There were failures!";
        stm << colorizer_.reset() << std::endl;
        std::for_each(failures_.begin(), failures_.end(), 
            [&](const std::string& failure) {
              stm << failure << std::endl;
            });
        stm << std::endl;
      }

      stm << "Test run complete. " << specs_run_ << " tests run. " << specs_succeeded_ << 
        " succeeded.";

      if(specs_skipped_ > 0)
      {
        stm << " " << specs_skipped_ << " skipped.";
      }

      if(specs_failed_ > 0)
      {
        stm << " " << specs_failed_ << " failed.";
      }

      if(test_run_errors_.size() > 0)
      {
        stm << " " << test_run_errors_.size() << " test run errors.";
      }

      stm << std::endl;
    }

    private:
    int specs_run_;
    int specs_succeeded_;
    int specs_failed_;
    int specs_skipped_;
    std::list<std::string> failures_;
    std::list<std::string> test_run_errors_;
    const detail::colorizer& colorizer_;
  };
}}

#endif