From c38633a0c41fe23a5216220f81bc30982e5ba78e Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 6 Oct 2022 19:13:37 +0200 Subject: [PATCH] add basic integrations tests to pandoc --- markup/pandoc/integration_test.go | 62 +++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 markup/pandoc/integration_test.go diff --git a/markup/pandoc/integration_test.go b/markup/pandoc/integration_test.go new file mode 100644 index 00000000000..477ba43ba1a --- /dev/null +++ b/markup/pandoc/integration_test.go @@ -0,0 +1,62 @@ +// Copyright 2021 The Hugo Authors. All rights reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package pandoc_test + +import ( + "testing" + + "github.com/gohugoio/hugo/hugolib" +) + +func TestBasicConversion(t *testing.T) { + t.Parallel() + + files := ` +-- config.toml -- +-- content/p1.md -- +testContent +-- layouts/_default/single.html -- +{{ .Content }} +` + b := hugolib.NewIntegrationTestBuilder( + hugolib.IntegrationTestConfig{ + T: t, + TxtarString: files, + NeedsOsFS: true, + }, + ).Build() + + b.AssertFileContent("public/p1/index.html", `

testContent

`) +} + +func TestConversionWithHeader(t *testing.T) { + t.Parallel() + + files := ` +-- config.toml -- +-- content/p1.md -- +# testContent +-- layouts/_default/single.html -- +{{ .Content }} +` + b := hugolib.NewIntegrationTestBuilder( + hugolib.IntegrationTestConfig{ + T: t, + TxtarString: files, + NeedsOsFS: true, + }, + ).Build() + + b.AssertFileContent("public/p1/index.html", `

testContent

`) +}