Exemplo n.º 1
0
func TestGit_Extract(t *testing.T) {
	creativeWork := schema.NewCreativeWork()

	extractor := Git{}
	err := extractor.Extract(creativeWork, "../fixtures/foo.md")

	if err != nil {
		t.Error(err)
	}

	if "" == creativeWork.DateModified {
		t.Error("The creation date must be extracted.")
	}

	if "" == creativeWork.DateModified {
		t.Error("The modifiation date must be extracted.")
	}

	var found = false
	for _, person := range creativeWork.Author {
		if person.Email == "*****@*****.**" && person.Name == "Kévin Dunglas" {
			found = true
		}
	}

	if !found {
		t.Error("Kévin must be part of the authors.")
	}
}
Exemplo n.º 2
0
func TestMarkdown_Extract(t *testing.T) {
	creativeWork := schema.NewCreativeWork()

	extractor := Markdown{}
	err := extractor.Extract(creativeWork, "../fixtures/foo.md")

	if err != nil {
		t.Error(err)
	}

	if creativeWork.Name != "Foo" {
		t.Errorf("Title should be \"Foo\", but is \"%s\"." + creativeWork.Name)
	}

	if strings.Contains(creativeWork.Text, ".md") {
		t.Error("References to Markdown file must be changed to references to JSON-LD files.")
	}

	if strings.Contains(creativeWork.Text, "rel=\"nofollow\"") {
		t.Error("Links must be followed by spiders.")
	}

	if !strings.Contains(creativeWork.Text, "class=\"language-php\"") {
		t.Error("Classes must be preserved.")
	}
}
Exemplo n.º 3
0
func convert(path string, outputDirectory string, extractors []extractor.Extractor, prettify bool) {
	creativeWork := schema.NewCreativeWork()

	for _, extractor := range extractors {
		err := extractor.Extract(creativeWork, path)
		check(err)
	}

	var jsonContent []byte
	var err error
	if prettify {
		jsonContent, err = json.MarshalIndent(creativeWork, "", "\t")
	} else {
		jsonContent, err = json.Marshal(creativeWork)
	}
	check(err)

	outputPath := fmt.Sprint(outputDirectory, "/", path[:len(path)-3], ".jsonld")
	outputSubdirectory := filepath.Dir(outputPath)

	err = os.MkdirAll(outputSubdirectory, 0755)
	check(err)

	err = ioutil.WriteFile(outputPath, jsonContent, 0644)
	check(err)
}