summaryrefslogtreecommitdiff
path: root/adapters/gtest/adapter.go
blob: 7033c7f4a817a9bf2ce64a8b55560f466cd86503 (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
package gtest

import (
	"context"
	"errors"
	"fmt"
	"io/ioutil"
	"log"
	"os"
	"os/exec"
	"path"
	"sync"
	"time"
	"golang.flu0r1ne.net/planr"
)

const GTEST_CMAKE = "CMakeLists.txt"

func makeUnit(tc planr.TestCase, dirs planr.DirConfig) cmakeUnit {
  cfg := tc.AdapterConfig().(*Config)

  testpath := path.Join(dirs.Tests(), *cfg.Testfile)
  srclist := cfg.srcList(dirs.Src())

  return cmakeUnit {
    tc.Cname,
    testpath,
    srclist,
  };
}

func safeWd() string{
  wd, err := os.Getwd()

  if err != nil {
    log.Fatalf("Could not get GtestBuildDir %s %v\n", wd, err)
  }

  return wd
}

type ResultFromId map[string] Result

func (adapter *Adapter) execTests(cnames []string) ResultFromId {
  buildDir := safeWd()

  lut := make(ResultFromId, 0)
  for _, exe := range cnames {

      exePath := path.Join(buildDir, exe)

      f, err := ioutil.TempFile(buildDir, "gtest_adapter_*.json")

      if err != nil {
        log.Fatal(err)
      }

      ctx, cancel := context.WithTimeout(context.Background(), 9999*time.Millisecond)
      cmd := exec.CommandContext(ctx, exePath, "--gtest_output=json:" + f.Name())

      defer cancel()
      defer os.Remove(f.Name())

      out, err := cmd.CombinedOutput()
      if err != nil {
        var exiterr *exec.ExitError

        if !errors.As(err, &exiterr) {
          log.Printf("%v\n", err)
          os.Exit(exiterr.ExitCode())
        }
      }

      results, err := decodeResults(f)

      if err != nil {
        log.Printf("Could not collect results from %s: %v", exe, err)
        continue
      }

      for _, r  := range results {
        r.testOutput = string(out)
        lut[exe + "." + r.id] = r
      }
  }

  return lut
}

// An executable may contain more than one test
// Gather all executables and deduplicate them
func exes(tcs []planr.TestCase) []string {
  set := make(map[string] bool, 0)
  
  for _, tc := range tcs {
    // Tests which have encountered a failure
    // may not have an executable
    if tc.Result.Status != planr.PASSING {
      continue
    }

    if(!set[tc.Cname]) {
      set[tc.Cname] = true
    }
  }
 
  exes := make([]string, 0)
  for k := range set {
    exes = append(exes, k)
  }
  
  return exes
}

func id(tc planr.TestCase) string {
  cfg := tc.AdapterConfig().(*Config)
  return tc.Cname + "." + *cfg.Suite + "." + *cfg.Name
}

func compile(wg * sync.WaitGroup, tc * planr.TestCase) {
  defer wg.Done()

  cmd := exec.Command("make", tc.Cname)
  out, err := cmd.CombinedOutput()
  tc.Result = new(planr.TestResult)

  // Don't treat command failure as anything but a build failure
  if err != nil{
    var exiterr *exec.ExitError
    if errors.As(err, &exiterr) && exiterr.ExitCode() == 0 {
      log.Fatal(err)
    }

    tc.Result.Status = planr.COMPILATION_FAILURE
  }

  tc.Result.DebugOutput = string(out)
}

type Adapter struct {
  dirs planr.DirConfig
}

func (a *Adapter) Config() planr.AdapterConfig {
  return planr.AdapterConfig {
    Name: "gtest",
    ParseConfig: ParseConfig,
    ParseDefaultConfig: ParseDefaultConfig,
  }
}

func (a *Adapter) Init(dirs planr.DirConfig) {
  a.dirs = dirs
}

func (adapter Adapter) Build(tcs []planr.TestCase) {
  buildDir := safeWd()
  cmakeFile := path.Join(buildDir, GTEST_CMAKE)

  units := make([]cmakeUnit, 0)
  for _, tc := range tcs {
    
    cfg := tc.AdapterConfig().(*Config)
    cfg.ensureSatisfied(tc.Path)

    units = append(units, makeUnit(tc, adapter.dirs))
  }

  genCmake(cmakeFile, units)

  planr.RunCmd("cmake", "-S", ".", "-B", ".")
}

// ./planr eval  0.93s user 0.16s system 100% cpu 1.089 total
func (adapter *Adapter) Evaluate(tcs []planr.TestCase) [] planr.TestCase {
  var wg sync.WaitGroup
  for i := range tcs {
    tc := &tcs[i]
    wg.Add(1)
    go compile(&wg, tc)
  }
  wg.Wait()

  files := exes(tcs)
  resultById := adapter.execTests(files)

  for i := range tcs {
    tc := &tcs[i]
    result, ok := resultById[id(*tc)]

    // compilation failure 
    if !ok {

      if tc.Result.Status == planr.PASSING {
        cfg := tc.AdapterConfig().(*Config)

        log.Printf(
          "Could not find testcase %s with name=\"%s\" and suite=\"%s\". Does such a test exist in the test source?",
          tc.Cname,
          *cfg.Name,
          *cfg.Suite,
        )

        tc.Result.Status = planr.COMPILATION_FAILURE
        tc.Result.DebugOutput += fmt.Sprintf("planr: Did not find testcase %s in any test executable\n", id(*tc))
      }

      continue
    }
 
    if !result.pass {
      tc.Result.Status = planr.RUNTIME_FAILURE
    }

    tc.Result.TestOutput = result.testOutput
  }

  return tcs
}

func NewAdapter() *Adapter {
  return new(Adapter)
}