/action/test_templates.go

https://bitbucket.org/romanoff/ahc · Go · 191 lines · 174 code · 17 blank · 0 comment · 50 complexity · 6338cf424f11e7788e9ad62cb0f8c870 MD5 · raw file

  1. package action
  2. import (
  3. "bitbucket.org/romanoff/ahc/ti"
  4. "bitbucket.org/romanoff/ahc/view"
  5. "fmt"
  6. "io/ioutil"
  7. "os"
  8. "path/filepath"
  9. "regexp"
  10. "strings"
  11. )
  12. type TestFile struct {
  13. Path string
  14. Content string
  15. Tests []*TemplateTest
  16. }
  17. func (self *TestFile) ReadContent() error {
  18. content, err := ioutil.ReadFile(self.Path)
  19. if err != nil {
  20. return err
  21. }
  22. self.Content = string(content)
  23. return nil
  24. }
  25. const (
  26. INPUT = iota
  27. EXPECTED
  28. )
  29. const (
  30. Reset = "\x1b[0m"
  31. Bright = "\x1b[1m"
  32. Dim = "\x1b[2m"
  33. Underscore = "\x1b[4m"
  34. Blink = "\x1b[5m"
  35. Reverse = "\x1b[7m"
  36. Hidden = "\x1b[8m"
  37. FgBlack = "\x1b[30m"
  38. FgRed = "\x1b[31m"
  39. FgGreen = "\x1b[32m"
  40. FgYellow = "\x1b[33m"
  41. FgBlue = "\x1b[34m"
  42. FgMagenta = "\x1b[35m"
  43. FgCyan = "\x1b[36m"
  44. FgWhite = "\x1b[37m"
  45. BgBlack = "\x1b[40m"
  46. BgRed = "\x1b[41m"
  47. BgGreen = "\x1b[42m"
  48. BgYellow = "\x1b[43m"
  49. BgBlue = "\x1b[44m"
  50. BgMagenta = "\x1b[45m"
  51. BgCyan = "\x1b[46m"
  52. BgWhite = "\x1b[47m"
  53. )
  54. var re *regexp.Regexp = regexp.MustCompile("\\s")
  55. func (self *TestFile) ParseContent() error {
  56. lines := strings.Split(self.Content, "\n")
  57. json := ""
  58. expected := ""
  59. mode := -1
  60. for _, line := range lines {
  61. if strings.TrimSpace(line) == "Input:" {
  62. mode = INPUT
  63. if json != "" && expected != "" {
  64. self.Tests = append(self.Tests, &TemplateTest{Json: json, Html: re.ReplaceAllString(expected, "")})
  65. }
  66. json = ""
  67. expected = ""
  68. } else if strings.TrimSpace(line) == "Expected:" {
  69. mode = EXPECTED
  70. } else {
  71. if mode == INPUT {
  72. json += line
  73. }
  74. if mode == EXPECTED {
  75. expected += line
  76. }
  77. }
  78. }
  79. if mode == EXPECTED && json != "" && expected != "" {
  80. self.Tests = append(self.Tests, &TemplateTest{Json: json, Html: re.ReplaceAllString(expected, "")})
  81. }
  82. return nil
  83. }
  84. type TemplateTest struct {
  85. Json string
  86. Html string
  87. }
  88. func (self *TemplateTest) TestTemplate(n int, cssPath string, path string, command string) {
  89. _, err := os.Stat(path)
  90. if err != nil {
  91. return
  92. }
  93. provide := self.getProvide(cssPath)
  94. output, _ := view.RenderTemplate(command, provide, path, self.Json)
  95. if self.Html != re.ReplaceAllString(string(output), "") {
  96. fmt.Println("Expected:")
  97. fmt.Println(self.Html)
  98. fmt.Println("Got:")
  99. fmt.Println(string(output))
  100. fmt.Printf("\n"+Bright+FgRed+"%v test for %v template doesn't pass\n"+Reset, n, path)
  101. } else {
  102. fmt.Printf(Bright + FgGreen + "." + Reset)
  103. }
  104. }
  105. var provideRe *regexp.Regexp = regexp.MustCompile("@provide\\s+['\"](.+)['\"]")
  106. func (self *TemplateTest) getProvide(cssPath string) string {
  107. bytesContent, _ := ioutil.ReadFile(cssPath)
  108. content := string(bytesContent)
  109. lines := strings.Split(content, "\n")
  110. for _, line := range lines {
  111. matches := provideRe.FindStringSubmatch(line)
  112. if len(matches) == 2 {
  113. return matches[1]
  114. }
  115. }
  116. return ""
  117. }
  118. var testFiles []*TestFile
  119. func visitTest(path string, f os.FileInfo, err error) error {
  120. if !f.IsDir() {
  121. filename := f.Name()
  122. if strings.HasSuffix(filename, ".test") {
  123. testFile := &TestFile{Path: path}
  124. err := testFile.ReadContent()
  125. if err != nil {
  126. return err
  127. }
  128. err = testFile.ParseContent()
  129. if err != nil {
  130. fmt.Println("Parsing of %v test file failed", path)
  131. os.Exit(1)
  132. }
  133. testFiles = append(testFiles, testFile)
  134. }
  135. }
  136. return nil
  137. }
  138. func TestTemplates() error {
  139. path, err := os.Getwd()
  140. if err != nil {
  141. return err
  142. }
  143. err = filepath.Walk(path, visitTest)
  144. if err != nil {
  145. return err
  146. }
  147. templatesInfo, err := view.GetTemplatesInfo()
  148. if err != nil {
  149. return err
  150. }
  151. templateExtensions := make([]string, 0)
  152. for _, templateInfo := range templatesInfo {
  153. templateExtensions = append(templateExtensions, templateInfo.Extension)
  154. }
  155. for _, testFile := range testFiles {
  156. for _, extension := range templateExtensions {
  157. for n, test := range testFile.Tests {
  158. cssPath := strings.Replace(testFile.Path, ".test", ".css", 1)
  159. command := GetCommandForExtension(templatesInfo, extension)
  160. test.TestTemplate(n, cssPath, strings.Replace(testFile.Path, ".test", "."+extension, 1), command)
  161. }
  162. }
  163. }
  164. fmt.Printf("\n")
  165. return nil
  166. }
  167. func GetCommandForExtension(templatesInfo []*ti.TemplateInfo, extension string) string {
  168. for _, templateInfo := range templatesInfo {
  169. if templateInfo.Extension == extension {
  170. return templateInfo.Command
  171. }
  172. }
  173. return ""
  174. }