本文整理汇总了Golang中github.com/pivotal-cf/cf-redis-broker/redis.LocalRepository.InstanceLogDir方法的典型用法代码示例。如果您正苦于以下问题:Golang LocalRepository.InstanceLogDir方法的具体用法?Golang LocalRepository.InstanceLogDir怎么用?Golang LocalRepository.InstanceLogDir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/pivotal-cf/cf-redis-broker/redis.LocalRepository
的用法示例。
在下文中一共展示了LocalRepository.InstanceLogDir方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1:
It("does not clear the data directory", func() {
dataFilePath := filepath.Join(repo.InstanceDataDir(instance.ID), "appendonly.aof")
originalDataFileContents := []byte("DATA FILE")
err := ioutil.WriteFile(dataFilePath, originalDataFileContents, 0755)
Ω(err).NotTo(HaveOccurred())
writeInstance(instance, repo)
dataFileContents, err := ioutil.ReadFile(dataFilePath)
Ω(err).NotTo(HaveOccurred())
Ω(dataFileContents).Should(Equal(originalDataFileContents))
})
It("does not clear the log directory", func() {
logFilePath := filepath.Join(repo.InstanceLogDir(instance.ID), "redis-server.log")
originalLogFileContents := []byte("LOG FILE")
err := ioutil.WriteFile(logFilePath, originalLogFileContents, 0755)
Ω(err).NotTo(HaveOccurred())
writeInstance(instance, repo)
logFileContents, err := ioutil.ReadFile(logFilePath)
Ω(err).NotTo(HaveOccurred())
Ω(logFileContents).Should(Equal(originalLogFileContents))
})
Context("when there is no log directory", func() {
BeforeEach(func() {
err := os.RemoveAll(repo.InstanceLogDir(instance.ID))