2017-04-04 11:10:35 +00:00
|
|
|
package generator
|
|
|
|
|
|
|
|
import (
|
2019-02-14 11:47:45 +00:00
|
|
|
"flag"
|
2017-04-04 11:10:35 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2017-05-25 10:33:26 +00:00
|
|
|
"os/exec"
|
|
|
|
"path/filepath"
|
2017-04-04 11:10:35 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2017-05-25 10:33:26 +00:00
|
|
|
"github.com/stretchr/testify/suite"
|
2017-04-04 11:10:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2018-04-28 13:12:03 +00:00
|
|
|
linguistURL = "https://github.com/github/linguist.git"
|
2017-10-26 13:37:18 +00:00
|
|
|
linguistClonedEnvVar = "ENRY_TEST_REPO"
|
2019-02-14 11:47:45 +00:00
|
|
|
commit = "e4560984058b4726010ca4b8f03ed9d0f8f464db"
|
2018-04-28 13:12:03 +00:00
|
|
|
samplesDir = "samples"
|
|
|
|
languagesFile = "lib/linguist/languages.yml"
|
|
|
|
|
|
|
|
testDir = "test_files"
|
|
|
|
assetsDir = "../assets"
|
2017-04-10 09:30:23 +00:00
|
|
|
|
2017-05-25 10:33:26 +00:00
|
|
|
// Extensions test
|
2018-04-28 13:12:03 +00:00
|
|
|
extensionGold = testDir + "/extension.gold"
|
|
|
|
extensionTestTmplPath = assetsDir + "/extension.go.tmpl"
|
2017-06-13 11:56:07 +00:00
|
|
|
extensionTestTmplName = "extension.go.tmpl"
|
2017-04-05 14:01:31 +00:00
|
|
|
|
|
|
|
// Heuristics test
|
2019-02-14 11:47:45 +00:00
|
|
|
heuristicsTestFile = "lib/linguist/heuristics.yml"
|
2018-04-28 13:12:03 +00:00
|
|
|
contentGold = testDir + "/content.gold"
|
|
|
|
contentTestTmplPath = assetsDir + "/content.go.tmpl"
|
2017-04-20 06:12:56 +00:00
|
|
|
contentTestTmplName = "content.go.tmpl"
|
2017-04-06 15:31:17 +00:00
|
|
|
|
|
|
|
// Vendor test
|
2017-06-13 11:56:07 +00:00
|
|
|
vendorTestFile = "lib/linguist/vendor.yml"
|
2018-04-28 13:12:03 +00:00
|
|
|
vendorGold = testDir + "/vendor.gold"
|
|
|
|
vendorTestTmplPath = assetsDir + "/vendor.go.tmpl"
|
2017-04-20 06:12:56 +00:00
|
|
|
vendorTestTmplName = "vendor.go.tmpl"
|
2017-04-10 09:30:23 +00:00
|
|
|
|
|
|
|
// Documentation test
|
2017-06-13 11:56:07 +00:00
|
|
|
documentationTestFile = "lib/linguist/documentation.yml"
|
2018-04-28 13:12:03 +00:00
|
|
|
documentationGold = testDir + "/documentation.gold"
|
|
|
|
documentationTestTmplPath = assetsDir + "/documentation.go.tmpl"
|
2017-04-20 06:12:56 +00:00
|
|
|
documentationTestTmplName = "documentation.go.tmpl"
|
2017-04-11 09:26:23 +00:00
|
|
|
|
|
|
|
// Types test
|
2018-04-28 13:12:03 +00:00
|
|
|
typeGold = testDir + "/type.gold"
|
|
|
|
typeTestTmplPath = assetsDir + "/type.go.tmpl"
|
2017-06-13 11:56:07 +00:00
|
|
|
typeTestTmplName = "type.go.tmpl"
|
2017-04-17 06:19:53 +00:00
|
|
|
|
|
|
|
// Interpreters test
|
2018-04-28 13:12:03 +00:00
|
|
|
interpreterGold = testDir + "/interpreter.gold"
|
|
|
|
interpreterTestTmplPath = assetsDir + "/interpreter.go.tmpl"
|
2017-06-13 11:56:07 +00:00
|
|
|
interpreterTestTmplName = "interpreter.go.tmpl"
|
2017-04-19 08:22:46 +00:00
|
|
|
|
|
|
|
// Filenames test
|
2018-04-28 13:12:03 +00:00
|
|
|
filenameGold = testDir + "/filename.gold"
|
|
|
|
filenameTestTmplPath = assetsDir + "/filename.go.tmpl"
|
2017-06-13 11:56:07 +00:00
|
|
|
filenameTestTmplName = "filename.go.tmpl"
|
2017-05-04 13:03:54 +00:00
|
|
|
|
|
|
|
// Aliases test
|
2018-04-28 13:12:03 +00:00
|
|
|
aliasGold = testDir + "/alias.gold"
|
|
|
|
aliasTestTmplPath = assetsDir + "/alias.go.tmpl"
|
2017-06-13 11:56:07 +00:00
|
|
|
aliasTestTmplName = "alias.go.tmpl"
|
2017-05-25 10:33:26 +00:00
|
|
|
|
|
|
|
// Frequencies test
|
2018-04-28 13:12:03 +00:00
|
|
|
frequenciesGold = testDir + "/frequencies.gold"
|
|
|
|
frequenciesTestTmplPath = assetsDir + "/frequencies.go.tmpl"
|
2017-05-25 10:33:26 +00:00
|
|
|
frequenciesTestTmplName = "frequencies.go.tmpl"
|
2017-06-21 13:18:27 +00:00
|
|
|
|
|
|
|
// commit test
|
2018-04-28 13:12:03 +00:00
|
|
|
commitGold = testDir + "/commit.gold"
|
|
|
|
commitTestTmplPath = assetsDir + "/commit.go.tmpl"
|
2017-06-21 13:18:27 +00:00
|
|
|
commitTestTmplName = "commit.go.tmpl"
|
2017-07-11 09:13:49 +00:00
|
|
|
|
|
|
|
// mime test
|
2018-04-28 13:12:03 +00:00
|
|
|
mimeTypeGold = testDir + "/mimeType.gold"
|
|
|
|
mimeTypeTestTmplPath = assetsDir + "/mimeType.go.tmpl"
|
2017-07-11 09:13:49 +00:00
|
|
|
mimeTypeTestTmplName = "mimeType.go.tmpl"
|
2017-04-04 11:10:35 +00:00
|
|
|
)
|
|
|
|
|
2017-05-25 10:33:26 +00:00
|
|
|
type GeneratorTestSuite struct {
|
|
|
|
suite.Suite
|
|
|
|
tmpLinguist string
|
2017-09-28 18:58:13 +00:00
|
|
|
cloned bool
|
2019-02-14 11:47:45 +00:00
|
|
|
testCases []testCase
|
2017-05-25 10:33:26 +00:00
|
|
|
}
|
|
|
|
|
2019-02-14 11:47:45 +00:00
|
|
|
type testCase struct {
|
|
|
|
name string
|
|
|
|
fileToParse string
|
|
|
|
samplesDir string
|
|
|
|
tmplPath string
|
|
|
|
tmplName string
|
|
|
|
commit string
|
|
|
|
generate File
|
|
|
|
wantOut string
|
|
|
|
}
|
|
|
|
|
|
|
|
var updateGold = flag.Bool("update_gold", false, "Update golden test files")
|
|
|
|
|
|
|
|
func Test_GeneratorTestSuite(t *testing.T) {
|
2017-05-29 08:05:16 +00:00
|
|
|
suite.Run(t, new(GeneratorTestSuite))
|
|
|
|
}
|
|
|
|
|
2019-02-14 11:47:45 +00:00
|
|
|
func (s *GeneratorTestSuite) maybeCloneLinguist() {
|
2017-06-21 13:18:27 +00:00
|
|
|
var err error
|
2017-10-26 13:37:18 +00:00
|
|
|
s.tmpLinguist = os.Getenv(linguistClonedEnvVar)
|
|
|
|
s.cloned = s.tmpLinguist == ""
|
2017-09-28 18:58:13 +00:00
|
|
|
if s.cloned {
|
|
|
|
s.tmpLinguist, err = ioutil.TempDir("", "linguist-")
|
|
|
|
assert.NoError(s.T(), err)
|
|
|
|
cmd := exec.Command("git", "clone", linguistURL, s.tmpLinguist)
|
|
|
|
err = cmd.Run()
|
|
|
|
assert.NoError(s.T(), err)
|
2017-05-25 10:33:26 +00:00
|
|
|
|
2019-02-14 11:47:45 +00:00
|
|
|
cwd, err := os.Getwd()
|
|
|
|
assert.NoError(s.T(), err)
|
2017-05-25 10:33:26 +00:00
|
|
|
|
2019-02-14 11:47:45 +00:00
|
|
|
err = os.Chdir(s.tmpLinguist)
|
|
|
|
assert.NoError(s.T(), err)
|
2017-05-25 10:33:26 +00:00
|
|
|
|
2019-02-14 11:47:45 +00:00
|
|
|
cmd = exec.Command("git", "checkout", commit)
|
|
|
|
err = cmd.Run()
|
|
|
|
assert.NoError(s.T(), err)
|
2017-05-25 10:33:26 +00:00
|
|
|
|
2019-02-14 11:47:45 +00:00
|
|
|
err = os.Chdir(cwd)
|
2017-09-28 18:58:13 +00:00
|
|
|
assert.NoError(s.T(), err)
|
|
|
|
}
|
2017-05-25 10:33:26 +00:00
|
|
|
}
|
|
|
|
|
2019-02-14 11:47:45 +00:00
|
|
|
func (s *GeneratorTestSuite) SetupSuite() {
|
|
|
|
s.maybeCloneLinguist()
|
|
|
|
s.testCases = []testCase{
|
2017-04-04 11:10:35 +00:00
|
|
|
{
|
2017-06-13 11:56:07 +00:00
|
|
|
name: "Extensions()",
|
2017-06-21 13:18:27 +00:00
|
|
|
fileToParse: filepath.Join(s.tmpLinguist, languagesFile),
|
2017-06-13 11:56:07 +00:00
|
|
|
samplesDir: "",
|
|
|
|
tmplPath: extensionTestTmplPath,
|
|
|
|
tmplName: extensionTestTmplName,
|
|
|
|
commit: commit,
|
2017-04-19 09:24:01 +00:00
|
|
|
generate: Extensions,
|
2017-06-13 11:56:07 +00:00
|
|
|
wantOut: extensionGold,
|
2017-04-04 11:10:35 +00:00
|
|
|
},
|
2017-04-05 14:01:31 +00:00
|
|
|
{
|
2017-06-13 11:56:07 +00:00
|
|
|
name: "Heuristics()",
|
2017-06-21 13:18:27 +00:00
|
|
|
fileToParse: filepath.Join(s.tmpLinguist, heuristicsTestFile),
|
2017-06-13 11:56:07 +00:00
|
|
|
samplesDir: "",
|
2017-04-05 14:01:31 +00:00
|
|
|
tmplPath: contentTestTmplPath,
|
|
|
|
tmplName: contentTestTmplName,
|
2017-06-13 11:56:07 +00:00
|
|
|
commit: commit,
|
2019-02-14 11:47:45 +00:00
|
|
|
generate: GenHeuristics,
|
2017-04-19 08:22:46 +00:00
|
|
|
wantOut: contentGold,
|
2017-04-05 14:01:31 +00:00
|
|
|
},
|
2017-04-06 15:31:17 +00:00
|
|
|
{
|
2017-06-13 11:56:07 +00:00
|
|
|
name: "Vendor()",
|
2017-06-21 13:18:27 +00:00
|
|
|
fileToParse: filepath.Join(s.tmpLinguist, vendorTestFile),
|
2017-06-13 11:56:07 +00:00
|
|
|
samplesDir: "",
|
2017-04-07 07:25:49 +00:00
|
|
|
tmplPath: vendorTestTmplPath,
|
|
|
|
tmplName: vendorTestTmplName,
|
2017-06-13 11:56:07 +00:00
|
|
|
commit: commit,
|
2017-04-06 15:31:17 +00:00
|
|
|
generate: Vendor,
|
2017-04-19 08:22:46 +00:00
|
|
|
wantOut: vendorGold,
|
2017-04-06 15:31:17 +00:00
|
|
|
},
|
2017-04-10 09:30:23 +00:00
|
|
|
{
|
2017-06-13 11:56:07 +00:00
|
|
|
name: "Documentation()",
|
2017-06-21 13:18:27 +00:00
|
|
|
fileToParse: filepath.Join(s.tmpLinguist, documentationTestFile),
|
2017-06-13 11:56:07 +00:00
|
|
|
samplesDir: "",
|
2017-04-10 09:30:23 +00:00
|
|
|
tmplPath: documentationTestTmplPath,
|
|
|
|
tmplName: documentationTestTmplName,
|
2017-06-13 11:56:07 +00:00
|
|
|
commit: commit,
|
2017-04-10 09:30:23 +00:00
|
|
|
generate: Documentation,
|
2017-04-19 08:22:46 +00:00
|
|
|
wantOut: documentationGold,
|
2017-04-10 09:30:23 +00:00
|
|
|
},
|
2017-04-11 09:26:23 +00:00
|
|
|
{
|
2017-06-13 11:56:07 +00:00
|
|
|
name: "Types()",
|
2017-06-21 13:18:27 +00:00
|
|
|
fileToParse: filepath.Join(s.tmpLinguist, languagesFile),
|
2017-06-13 11:56:07 +00:00
|
|
|
samplesDir: "",
|
|
|
|
tmplPath: typeTestTmplPath,
|
|
|
|
tmplName: typeTestTmplName,
|
|
|
|
commit: commit,
|
2017-04-11 09:26:23 +00:00
|
|
|
generate: Types,
|
2017-06-13 11:56:07 +00:00
|
|
|
wantOut: typeGold,
|
2017-04-11 09:26:23 +00:00
|
|
|
},
|
2017-04-17 06:19:53 +00:00
|
|
|
{
|
2017-06-13 11:56:07 +00:00
|
|
|
name: "Interpreters()",
|
2017-06-21 13:18:27 +00:00
|
|
|
fileToParse: filepath.Join(s.tmpLinguist, languagesFile),
|
2017-06-13 11:56:07 +00:00
|
|
|
samplesDir: "",
|
|
|
|
tmplPath: interpreterTestTmplPath,
|
|
|
|
tmplName: interpreterTestTmplName,
|
|
|
|
commit: commit,
|
2017-04-17 06:19:53 +00:00
|
|
|
generate: Interpreters,
|
2017-06-13 11:56:07 +00:00
|
|
|
wantOut: interpreterGold,
|
2017-04-19 08:22:46 +00:00
|
|
|
},
|
|
|
|
{
|
2017-06-13 11:56:07 +00:00
|
|
|
name: "Filenames()",
|
2017-06-21 13:18:27 +00:00
|
|
|
fileToParse: filepath.Join(s.tmpLinguist, languagesFile),
|
|
|
|
samplesDir: filepath.Join(s.tmpLinguist, samplesDir),
|
2017-06-13 11:56:07 +00:00
|
|
|
tmplPath: filenameTestTmplPath,
|
|
|
|
tmplName: filenameTestTmplName,
|
|
|
|
commit: commit,
|
2017-04-19 08:22:46 +00:00
|
|
|
generate: Filenames,
|
2017-06-13 11:56:07 +00:00
|
|
|
wantOut: filenameGold,
|
2017-04-17 06:19:53 +00:00
|
|
|
},
|
2017-05-04 13:03:54 +00:00
|
|
|
{
|
2017-06-13 11:56:07 +00:00
|
|
|
name: "Aliases()",
|
2017-06-21 13:18:27 +00:00
|
|
|
fileToParse: filepath.Join(s.tmpLinguist, languagesFile),
|
2017-06-13 11:56:07 +00:00
|
|
|
samplesDir: "",
|
|
|
|
tmplPath: aliasTestTmplPath,
|
|
|
|
tmplName: aliasTestTmplName,
|
|
|
|
commit: commit,
|
2017-05-04 13:03:54 +00:00
|
|
|
generate: Aliases,
|
2017-06-13 11:56:07 +00:00
|
|
|
wantOut: aliasGold,
|
2017-05-04 13:03:54 +00:00
|
|
|
},
|
2017-05-25 10:33:26 +00:00
|
|
|
{
|
2017-06-13 11:56:07 +00:00
|
|
|
name: "Frequencies()",
|
2017-06-21 13:18:27 +00:00
|
|
|
samplesDir: filepath.Join(s.tmpLinguist, samplesDir),
|
2017-05-25 10:33:26 +00:00
|
|
|
tmplPath: frequenciesTestTmplPath,
|
|
|
|
tmplName: frequenciesTestTmplName,
|
2017-06-13 11:56:07 +00:00
|
|
|
commit: commit,
|
|
|
|
generate: Frequencies,
|
2017-05-25 10:33:26 +00:00
|
|
|
wantOut: frequenciesGold,
|
|
|
|
},
|
2017-06-21 13:18:27 +00:00
|
|
|
{
|
|
|
|
name: "Commit()",
|
|
|
|
samplesDir: "",
|
|
|
|
tmplPath: commitTestTmplPath,
|
|
|
|
tmplName: commitTestTmplName,
|
|
|
|
commit: commit,
|
|
|
|
generate: Commit,
|
|
|
|
wantOut: commitGold,
|
|
|
|
},
|
2017-07-11 09:13:49 +00:00
|
|
|
{
|
|
|
|
name: "MimeType()",
|
|
|
|
fileToParse: filepath.Join(s.tmpLinguist, languagesFile),
|
|
|
|
samplesDir: "",
|
|
|
|
tmplPath: mimeTypeTestTmplPath,
|
|
|
|
tmplName: mimeTypeTestTmplName,
|
|
|
|
commit: commit,
|
|
|
|
generate: MimeType,
|
|
|
|
wantOut: mimeTypeGold,
|
|
|
|
},
|
2017-05-25 10:33:26 +00:00
|
|
|
}
|
2019-02-14 11:47:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *GeneratorTestSuite) TearDownSuite() {
|
|
|
|
if s.cloned {
|
|
|
|
err := os.RemoveAll(s.tmpLinguist)
|
|
|
|
if err != nil {
|
|
|
|
s.T().Logf("Failed to clean up %s after the test.\n", s.tmpLinguist)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-25 10:33:26 +00:00
|
|
|
|
2019-02-14 11:47:45 +00:00
|
|
|
// TestUpdateGeneratorTestSuiteGold is a Gold results generation automation.
|
|
|
|
// It should only be enabled&run manually on every new Linguist version
|
|
|
|
// to update *.gold files.
|
|
|
|
func (s *GeneratorTestSuite) TestUpdateGeneratorTestSuiteGold() {
|
|
|
|
if !*updateGold {
|
|
|
|
s.T().Skip()
|
|
|
|
}
|
|
|
|
s.T().Logf("Generating new *.gold test files")
|
|
|
|
for _, test := range s.testCases {
|
|
|
|
dst := test.wantOut
|
|
|
|
s.T().Logf("Generating %s from %s\n", dst, test.fileToParse)
|
|
|
|
err := test.generate(test.fileToParse, test.samplesDir, dst, test.tmplPath, test.tmplName, test.commit)
|
|
|
|
assert.NoError(s.T(), err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *GeneratorTestSuite) TestGenerationFiles() {
|
|
|
|
for _, test := range s.testCases {
|
2017-05-25 10:33:26 +00:00
|
|
|
gold, err := ioutil.ReadFile(test.wantOut)
|
2017-06-21 13:18:27 +00:00
|
|
|
assert.NoError(s.T(), err)
|
2017-05-25 10:33:26 +00:00
|
|
|
|
2017-06-13 11:56:07 +00:00
|
|
|
outPath, err := ioutil.TempFile("/tmp", "generator-test-")
|
2017-06-21 13:18:27 +00:00
|
|
|
assert.NoError(s.T(), err)
|
2017-05-25 10:33:26 +00:00
|
|
|
defer os.Remove(outPath.Name())
|
2017-06-13 11:56:07 +00:00
|
|
|
err = test.generate(test.fileToParse, test.samplesDir, outPath.Name(), test.tmplPath, test.tmplName, test.commit)
|
2017-06-21 13:18:27 +00:00
|
|
|
assert.NoError(s.T(), err)
|
2017-05-25 10:33:26 +00:00
|
|
|
out, err := ioutil.ReadFile(outPath.Name())
|
2017-06-21 13:18:27 +00:00
|
|
|
assert.NoError(s.T(), err)
|
2019-02-20 11:43:13 +00:00
|
|
|
assert.Equal(s.T(), string(gold), string(out))
|
2017-05-25 10:33:26 +00:00
|
|
|
}
|
|
|
|
}
|