fs.RemoveAll(dstDir) }) Describe("CompressFilesInDir", func() { It("compresses the files in the given directory", func() { srcDir := fixtureSrcDir() symlinkPath, err := createTestSymlink() Expect(err).To(Succeed()) defer os.Remove(symlinkPath) tgzName, err := compressor.CompressFilesInDir(srcDir) Expect(err).ToNot(HaveOccurred()) defer os.Remove(tgzName) tarballContents, _, _, err := cmdRunner.RunCommand("tar", "-tf", tgzName) Expect(err).ToNot(HaveOccurred()) contentElements := strings.Fields(strings.TrimSpace(tarballContents)) Expect(contentElements).To(ConsistOf( "./", "./app.stderr.log", "./app.stdout.log", "./other_logs/", "./some_directory/", "./some_directory/sub_dir/", "./some_directory/sub_dir/other_sub_dir/", "./some_directory/sub_dir/other_sub_dir/.keep", "./symlink_dir", "./other_logs/more_logs/",
Expect(names).To(HaveKey(p.Name)) Expect(p.State).To(Equal("stopped")) Expect(int(p.CPU.Total)).To(Equal(0)) Expect(int(p.CPU.Total)).To(Equal(0)) Expect(int(p.Memory.Kb)).To(Equal(0)) } }) }) Describe("AddJob", func() { It("creates a service with vcap description", func() { conf, err := AddJob("say-hello") Expect(err).ToNot(HaveOccurred()) for _, proc := range conf.Processes { stdout, _, _, err := runner.RunCommand("powershell", "/C", "get-service", proc.Name) Expect(err).ToNot(HaveOccurred()) Expect(stdout).To(ContainSubstring(proc.Name)) Expect(stdout).To(ContainSubstring("Stopped")) } }) Context("when monit file is empty", func() { BeforeEach(func() { Expect(fs.WriteFileString(processConfigPath, "")).To(Succeed()) }) It("does not return an error", func() { _, err := AddJob("say-hello") Expect(err).ToNot(HaveOccurred()) })