2020-04-28 08:02:41 -04:00
|
|
|
// Copyright 2020 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 hugolib
|
|
|
|
|
|
|
|
import (
|
2020-08-20 12:43:09 -04:00
|
|
|
"bytes"
|
2020-04-28 08:02:41 -04:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-06-09 04:58:18 -04:00
|
|
|
"github.com/gohugoio/hugo/config"
|
|
|
|
|
2020-12-18 12:20:12 -05:00
|
|
|
"github.com/gohugoio/hugo/common/hexec"
|
|
|
|
|
2020-08-20 12:43:09 -04:00
|
|
|
jww "github.com/spf13/jwalterweatherman"
|
|
|
|
|
2020-04-28 08:02:41 -04:00
|
|
|
"github.com/gohugoio/hugo/htesting"
|
|
|
|
|
|
|
|
qt "github.com/frankban/quicktest"
|
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/hugofs"
|
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/common/loggers"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestResourceChainBabel(t *testing.T) {
|
2020-12-23 13:47:20 -05:00
|
|
|
if !htesting.IsCI() {
|
2020-04-28 08:02:41 -04:00
|
|
|
t.Skip("skip (relative) long running modules test when running locally")
|
|
|
|
}
|
|
|
|
|
|
|
|
wd, _ := os.Getwd()
|
|
|
|
defer func() {
|
|
|
|
os.Chdir(wd)
|
|
|
|
}()
|
|
|
|
|
|
|
|
c := qt.New(t)
|
|
|
|
|
|
|
|
packageJSON := `{
|
|
|
|
"scripts": {},
|
|
|
|
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/cli": "7.8.4",
|
|
|
|
"@babel/core": "7.9.0",
|
|
|
|
"@babel/preset-env": "7.9.5"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
babelConfig := `
|
|
|
|
console.error("Hugo Environment:", process.env.HUGO_ENVIRONMENT );
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
presets: ["@babel/preset-env"],
|
|
|
|
};
|
|
|
|
|
|
|
|
`
|
|
|
|
|
|
|
|
js := `
|
|
|
|
/* A Car */
|
|
|
|
class Car {
|
|
|
|
constructor(brand) {
|
|
|
|
this.carname = brand;
|
|
|
|
}
|
|
|
|
}
|
2021-01-18 04:38:09 -05:00
|
|
|
`
|
|
|
|
|
|
|
|
js2 := `
|
|
|
|
/* A Car2 */
|
|
|
|
class Car2 {
|
|
|
|
constructor(brand) {
|
|
|
|
this.carname = brand;
|
|
|
|
}
|
|
|
|
}
|
2020-04-28 08:02:41 -04:00
|
|
|
`
|
|
|
|
|
|
|
|
workDir, clean, err := htesting.CreateTempDir(hugofs.Os, "hugo-test-babel")
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
defer clean()
|
|
|
|
|
2020-08-20 12:43:09 -04:00
|
|
|
var logBuf bytes.Buffer
|
|
|
|
logger := loggers.NewBasicLoggerForWriter(jww.LevelInfo, &logBuf)
|
|
|
|
|
2021-06-09 04:58:18 -04:00
|
|
|
v := config.New()
|
2020-04-28 08:02:41 -04:00
|
|
|
v.Set("workingDir", workDir)
|
2020-06-16 09:43:50 -04:00
|
|
|
v.Set("disableKinds", []string{"taxonomy", "term", "page"})
|
2020-08-20 12:43:09 -04:00
|
|
|
b := newTestSitesBuilder(t).WithLogger(logger)
|
2020-04-28 08:02:41 -04:00
|
|
|
|
|
|
|
// Need to use OS fs for this.
|
|
|
|
b.Fs = hugofs.NewDefault(v)
|
|
|
|
b.WithWorkingDir(workDir)
|
|
|
|
b.WithViper(v)
|
|
|
|
b.WithContent("p1.md", "")
|
|
|
|
|
|
|
|
b.WithTemplates("index.html", `
|
|
|
|
{{ $options := dict "noComments" true }}
|
|
|
|
{{ $transpiled := resources.Get "js/main.js" | babel -}}
|
|
|
|
Transpiled: {{ $transpiled.Content | safeJS }}
|
|
|
|
|
2021-01-18 04:38:09 -05:00
|
|
|
{{ $transpiled := resources.Get "js/main2.js" | babel (dict "sourceMap" "inline") -}}
|
|
|
|
Transpiled2: {{ $transpiled.Content | safeJS }}
|
|
|
|
|
|
|
|
{{ $transpiled := resources.Get "js/main2.js" | babel (dict "sourceMap" "external") -}}
|
|
|
|
Transpiled3: {{ $transpiled.Permalink }}
|
|
|
|
|
2020-04-28 08:02:41 -04:00
|
|
|
`)
|
|
|
|
|
|
|
|
jsDir := filepath.Join(workDir, "assets", "js")
|
|
|
|
b.Assert(os.MkdirAll(jsDir, 0777), qt.IsNil)
|
|
|
|
b.WithSourceFile("assets/js/main.js", js)
|
2021-01-18 04:38:09 -05:00
|
|
|
b.WithSourceFile("assets/js/main2.js", js2)
|
2020-04-28 08:02:41 -04:00
|
|
|
b.WithSourceFile("package.json", packageJSON)
|
|
|
|
b.WithSourceFile("babel.config.js", babelConfig)
|
|
|
|
|
|
|
|
b.Assert(os.Chdir(workDir), qt.IsNil)
|
2020-12-18 12:20:12 -05:00
|
|
|
cmd, _ := hexec.SafeCommand("npm", "install")
|
|
|
|
_, err = cmd.CombinedOutput()
|
2020-04-28 08:02:41 -04:00
|
|
|
b.Assert(err, qt.IsNil)
|
|
|
|
|
2020-08-20 12:43:09 -04:00
|
|
|
b.Build(BuildCfg{})
|
2020-04-28 08:02:41 -04:00
|
|
|
|
|
|
|
// Make sure Node sees this.
|
2020-08-20 12:43:09 -04:00
|
|
|
b.Assert(logBuf.String(), qt.Contains, "babel: Hugo Environment: production")
|
2020-04-28 08:02:41 -04:00
|
|
|
b.Assert(err, qt.IsNil)
|
|
|
|
|
|
|
|
b.AssertFileContent("public/index.html", `
|
|
|
|
var Car = function Car(brand) {
|
|
|
|
_classCallCheck(this, Car);
|
|
|
|
|
|
|
|
this.carname = brand;
|
|
|
|
};
|
|
|
|
`)
|
2021-01-18 04:38:09 -05:00
|
|
|
b.AssertFileContent("public/index.html", `
|
|
|
|
var Car2 = function Car2(brand) {
|
|
|
|
_classCallCheck(this, Car2);
|
|
|
|
|
|
|
|
this.carname = brand;
|
|
|
|
};
|
|
|
|
`)
|
|
|
|
b.AssertFileContent("public/js/main2.js", `
|
|
|
|
var Car2 = function Car2(brand) {
|
|
|
|
_classCallCheck(this, Car2);
|
|
|
|
|
|
|
|
this.carname = brand;
|
|
|
|
};
|
|
|
|
`)
|
|
|
|
b.AssertFileContent("public/js/main2.js.map", `{"version":3,`)
|
|
|
|
b.AssertFileContent("public/index.html", `
|
|
|
|
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozL`)
|
2020-04-28 08:02:41 -04:00
|
|
|
}
|