fs = boshsys.NewOsFileSystem(logger) var err error basePath, err = ioutil.TempDir("", "") Expect(err).ToNot(HaveOccurred()) fs.MkdirAll(basePath, 0755) binPath := filepath.Join(basePath, "bosh", "bin") fs.MkdirAll(binPath, 0755) logDir = path.Join(basePath, "sys", "log") fs.MkdirAll(binPath, 0755) exePath = filepath.Join(binPath, "job-service-wrapper.exe") err = fs.CopyFile(testExtPath, exePath) Expect(err).ToNot(HaveOccurred()) logDir = path.Join(basePath, "sys", "log") }) WriteJobConfig := func(configContents WindowsProcessConfig) (string, error) { dirProvider := boshdirs.NewProvider(basePath) runner = boshsys.NewExecCmdRunner(logger) jobSupervisor = NewWindowsJobSupervisor(runner, dirProvider, fs, logger, jobFailuresServerPort, make(chan bool), DefaultMachineIP) if err := jobSupervisor.RemoveAllJobs(); err != nil { return "", err } processConfigContents, err := json.Marshal(configContents) if err != nil {