2019-01-02 06:33:26 -05:00
|
|
|
// Copyright 2019 The Hugo Authors. All rights reserved.
|
2017-03-05 12:23:00 -05:00
|
|
|
//
|
|
|
|
// 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 media
|
|
|
|
|
|
|
|
import (
|
2021-03-11 03:18:01 -05:00
|
|
|
"encoding/json"
|
2023-02-18 17:43:26 -05:00
|
|
|
"os"
|
2021-12-16 09:12:13 -05:00
|
|
|
"path/filepath"
|
2021-04-20 06:05:25 -04:00
|
|
|
"sort"
|
2021-12-16 09:12:13 -05:00
|
|
|
"strings"
|
2017-03-05 12:23:00 -05:00
|
|
|
"testing"
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
qt "github.com/frankban/quicktest"
|
2021-12-16 09:12:13 -05:00
|
|
|
"github.com/gohugoio/hugo/common/paths"
|
2017-03-05 12:23:00 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestDefaultTypes(t *testing.T) {
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2017-03-27 18:09:25 -04:00
|
|
|
for _, test := range []struct {
|
|
|
|
tp Type
|
|
|
|
expectedMainType string
|
|
|
|
expectedSubType string
|
|
|
|
expectedSuffix string
|
|
|
|
expectedType string
|
|
|
|
expectedString string
|
|
|
|
}{
|
2018-07-10 05:55:22 -04:00
|
|
|
{CalendarType, "text", "calendar", "ics", "text/calendar", "text/calendar"},
|
|
|
|
{CSSType, "text", "css", "css", "text/css", "text/css"},
|
|
|
|
{SCSSType, "text", "x-scss", "scss", "text/x-scss", "text/x-scss"},
|
|
|
|
{CSVType, "text", "csv", "csv", "text/csv", "text/csv"},
|
|
|
|
{HTMLType, "text", "html", "html", "text/html", "text/html"},
|
2022-10-05 03:26:30 -04:00
|
|
|
{JavascriptType, "text", "javascript", "js", "text/javascript", "text/javascript"},
|
|
|
|
{TypeScriptType, "text", "typescript", "ts", "text/typescript", "text/typescript"},
|
2020-07-12 06:47:14 -04:00
|
|
|
{TSXType, "text", "tsx", "tsx", "text/tsx", "text/tsx"},
|
|
|
|
{JSXType, "text", "jsx", "jsx", "text/jsx", "text/jsx"},
|
2018-07-10 05:55:22 -04:00
|
|
|
{JSONType, "application", "json", "json", "application/json", "application/json"},
|
|
|
|
{RSSType, "application", "rss", "xml", "application/rss+xml", "application/rss+xml"},
|
|
|
|
{SVGType, "image", "svg", "svg", "image/svg+xml", "image/svg+xml"},
|
|
|
|
{TextType, "text", "plain", "txt", "text/plain", "text/plain"},
|
|
|
|
{XMLType, "application", "xml", "xml", "application/xml", "application/xml"},
|
2018-12-21 10:21:13 -05:00
|
|
|
{TOMLType, "application", "toml", "toml", "application/toml", "application/toml"},
|
|
|
|
{YAMLType, "application", "yaml", "yaml", "application/yaml", "application/yaml"},
|
2021-12-21 03:39:05 -05:00
|
|
|
{PDFType, "application", "pdf", "pdf", "application/pdf", "application/pdf"},
|
2021-12-16 09:12:13 -05:00
|
|
|
{TrueTypeFontType, "font", "ttf", "ttf", "font/ttf", "font/ttf"},
|
|
|
|
{OpenTypeFontType, "font", "otf", "otf", "font/otf", "font/otf"},
|
2017-03-27 18:09:25 -04:00
|
|
|
} {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(test.tp.MainType, qt.Equals, test.expectedMainType)
|
|
|
|
c.Assert(test.tp.SubType, qt.Equals, test.expectedSubType)
|
2017-03-27 18:09:25 -04:00
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(test.tp.Type(), qt.Equals, test.expectedType)
|
|
|
|
c.Assert(test.tp.String(), qt.Equals, test.expectedString)
|
2017-03-27 18:09:25 -04:00
|
|
|
|
|
|
|
}
|
2017-03-05 12:23:00 -05:00
|
|
|
|
2022-05-27 09:19:02 -04:00
|
|
|
c.Assert(len(DefaultTypes), qt.Equals, 34)
|
2017-03-05 12:23:00 -05:00
|
|
|
}
|
2017-04-03 11:00:23 -04:00
|
|
|
|
|
|
|
func TestGetByType(t *testing.T) {
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
|
|
|
|
2017-04-03 11:00:23 -04:00
|
|
|
types := Types{HTMLType, RSSType}
|
|
|
|
|
|
|
|
mt, found := types.GetByType("text/HTML")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, true)
|
2021-03-11 03:18:01 -05:00
|
|
|
c.Assert(HTMLType, qt.Equals, mt)
|
2017-04-03 11:00:23 -04:00
|
|
|
|
|
|
|
_, found = types.GetByType("text/nono")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, false)
|
2018-07-10 05:55:22 -04:00
|
|
|
|
|
|
|
mt, found = types.GetByType("application/rss+xml")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, true)
|
2021-03-11 03:18:01 -05:00
|
|
|
c.Assert(RSSType, qt.Equals, mt)
|
2018-07-10 05:55:22 -04:00
|
|
|
|
|
|
|
mt, found = types.GetByType("application/rss")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, true)
|
2021-03-11 03:18:01 -05:00
|
|
|
c.Assert(RSSType, qt.Equals, mt)
|
2018-07-10 05:55:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetByMainSubType(t *testing.T) {
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2018-07-10 05:55:22 -04:00
|
|
|
f, found := DefaultTypes.GetByMainSubType("text", "plain")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, true)
|
2021-03-11 03:18:01 -05:00
|
|
|
c.Assert(f, qt.Equals, TextType)
|
2018-07-10 05:55:22 -04:00
|
|
|
_, found = DefaultTypes.GetByMainSubType("foo", "plain")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, false)
|
2017-04-03 11:00:23 -04:00
|
|
|
}
|
2017-04-03 16:39:37 -04:00
|
|
|
|
2018-08-28 08:18:12 -04:00
|
|
|
func TestBySuffix(t *testing.T) {
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2018-08-28 08:18:12 -04:00
|
|
|
formats := DefaultTypes.BySuffix("xml")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(len(formats), qt.Equals, 2)
|
|
|
|
c.Assert(formats[0].SubType, qt.Equals, "rss")
|
|
|
|
c.Assert(formats[1].SubType, qt.Equals, "xml")
|
2018-08-28 08:18:12 -04:00
|
|
|
}
|
|
|
|
|
Add Hugo Piper with SCSS support and much more
Before this commit, you would have to use page bundles to do image processing etc. in Hugo.
This commit adds
* A new `/assets` top-level project or theme dir (configurable via `assetDir`)
* A new template func, `resources.Get` which can be used to "get a resource" that can be further processed.
This means that you can now do this in your templates (or shortcodes):
```bash
{{ $sunset := (resources.Get "images/sunset.jpg").Fill "300x200" }}
```
This also adds a new `extended` build tag that enables powerful SCSS/SASS support with source maps. To compile this from source, you will also need a C compiler installed:
```
HUGO_BUILD_TAGS=extended mage install
```
Note that you can use output of the SCSS processing later in a non-SCSSS-enabled Hugo.
The `SCSS` processor is a _Resource transformation step_ and it can be chained with the many others in a pipeline:
```bash
{{ $css := resources.Get "styles.scss" | resources.ToCSS | resources.PostCSS | resources.Minify | resources.Fingerprint }}
<link rel="stylesheet" href="{{ $styles.RelPermalink }}" integrity="{{ $styles.Data.Digest }}" media="screen">
```
The transformation funcs above have aliases, so it can be shortened to:
```bash
{{ $css := resources.Get "styles.scss" | toCSS | postCSS | minify | fingerprint }}
<link rel="stylesheet" href="{{ $styles.RelPermalink }}" integrity="{{ $styles.Data.Digest }}" media="screen">
```
A quick tip would be to avoid the fingerprinting part, and possibly also the not-superfast `postCSS` when you're doing development, as it allows Hugo to be smarter about the rebuilding.
Documentation will follow, but have a look at the demo repo in https://github.com/bep/hugo-sass-test
New functions to create `Resource` objects:
* `resources.Get` (see above)
* `resources.FromString`: Create a Resource from a string.
New `Resource` transformation funcs:
* `resources.ToCSS`: Compile `SCSS` or `SASS` into `CSS`.
* `resources.PostCSS`: Process your CSS with PostCSS. Config file support (project or theme or passed as an option).
* `resources.Minify`: Currently supports `css`, `js`, `json`, `html`, `svg`, `xml`.
* `resources.Fingerprint`: Creates a fingerprinted version of the given Resource with Subresource Integrity..
* `resources.Concat`: Concatenates a list of Resource objects. Think of this as a poor man's bundler.
* `resources.ExecuteAsTemplate`: Parses and executes the given Resource and data context (e.g. .Site) as a Go template.
Fixes #4381
Fixes #4903
Fixes #4858
2018-02-20 04:02:14 -05:00
|
|
|
func TestGetFirstBySuffix(t *testing.T) {
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2021-04-20 06:05:25 -04:00
|
|
|
|
|
|
|
types := DefaultTypes
|
|
|
|
|
|
|
|
// Issue #8406
|
|
|
|
geoJSON := newMediaTypeWithMimeSuffix("application", "geo", "json", []string{"geojson", "gjson"})
|
|
|
|
types = append(types, geoJSON)
|
|
|
|
sort.Sort(types)
|
|
|
|
|
|
|
|
check := func(suffix string, expectedType Type) {
|
|
|
|
t, f, found := types.GetFirstBySuffix(suffix)
|
|
|
|
c.Assert(found, qt.Equals, true)
|
|
|
|
c.Assert(f, qt.Equals, SuffixInfo{
|
|
|
|
Suffix: suffix,
|
2021-12-21 03:39:05 -05:00
|
|
|
FullSuffix: "." + suffix,
|
|
|
|
})
|
2021-04-20 06:05:25 -04:00
|
|
|
c.Assert(t, qt.Equals, expectedType)
|
|
|
|
}
|
|
|
|
|
|
|
|
check("js", JavascriptType)
|
|
|
|
check("json", JSONType)
|
|
|
|
check("geojson", geoJSON)
|
|
|
|
check("gjson", geoJSON)
|
Add Hugo Piper with SCSS support and much more
Before this commit, you would have to use page bundles to do image processing etc. in Hugo.
This commit adds
* A new `/assets` top-level project or theme dir (configurable via `assetDir`)
* A new template func, `resources.Get` which can be used to "get a resource" that can be further processed.
This means that you can now do this in your templates (or shortcodes):
```bash
{{ $sunset := (resources.Get "images/sunset.jpg").Fill "300x200" }}
```
This also adds a new `extended` build tag that enables powerful SCSS/SASS support with source maps. To compile this from source, you will also need a C compiler installed:
```
HUGO_BUILD_TAGS=extended mage install
```
Note that you can use output of the SCSS processing later in a non-SCSSS-enabled Hugo.
The `SCSS` processor is a _Resource transformation step_ and it can be chained with the many others in a pipeline:
```bash
{{ $css := resources.Get "styles.scss" | resources.ToCSS | resources.PostCSS | resources.Minify | resources.Fingerprint }}
<link rel="stylesheet" href="{{ $styles.RelPermalink }}" integrity="{{ $styles.Data.Digest }}" media="screen">
```
The transformation funcs above have aliases, so it can be shortened to:
```bash
{{ $css := resources.Get "styles.scss" | toCSS | postCSS | minify | fingerprint }}
<link rel="stylesheet" href="{{ $styles.RelPermalink }}" integrity="{{ $styles.Data.Digest }}" media="screen">
```
A quick tip would be to avoid the fingerprinting part, and possibly also the not-superfast `postCSS` when you're doing development, as it allows Hugo to be smarter about the rebuilding.
Documentation will follow, but have a look at the demo repo in https://github.com/bep/hugo-sass-test
New functions to create `Resource` objects:
* `resources.Get` (see above)
* `resources.FromString`: Create a Resource from a string.
New `Resource` transformation funcs:
* `resources.ToCSS`: Compile `SCSS` or `SASS` into `CSS`.
* `resources.PostCSS`: Process your CSS with PostCSS. Config file support (project or theme or passed as an option).
* `resources.Minify`: Currently supports `css`, `js`, `json`, `html`, `svg`, `xml`.
* `resources.Fingerprint`: Creates a fingerprinted version of the given Resource with Subresource Integrity..
* `resources.Concat`: Concatenates a list of Resource objects. Think of this as a poor man's bundler.
* `resources.ExecuteAsTemplate`: Parses and executes the given Resource and data context (e.g. .Site) as a Go template.
Fixes #4381
Fixes #4903
Fixes #4858
2018-02-20 04:02:14 -05:00
|
|
|
}
|
|
|
|
|
2017-04-03 16:39:37 -04:00
|
|
|
func TestFromTypeString(t *testing.T) {
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2023-01-16 05:05:28 -05:00
|
|
|
f, err := FromString("text/html")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
2021-03-11 03:18:01 -05:00
|
|
|
c.Assert(f.Type(), qt.Equals, HTMLType.Type())
|
2017-04-03 16:39:37 -04:00
|
|
|
|
2023-01-16 05:05:28 -05:00
|
|
|
f, err = FromString("application/custom")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
2021-03-11 03:18:01 -05:00
|
|
|
c.Assert(f, qt.Equals, Type{MainType: "application", SubType: "custom", mimeSuffix: ""})
|
2017-04-03 16:39:37 -04:00
|
|
|
|
2023-01-16 05:05:28 -05:00
|
|
|
f, err = FromString("application/custom+sfx")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
2021-03-11 03:18:01 -05:00
|
|
|
c.Assert(f, qt.Equals, Type{MainType: "application", SubType: "custom", mimeSuffix: "sfx"})
|
2017-04-03 16:39:37 -04:00
|
|
|
|
2023-01-16 05:05:28 -05:00
|
|
|
_, err = FromString("noslash")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2017-04-03 16:39:37 -04:00
|
|
|
|
2023-01-16 05:05:28 -05:00
|
|
|
f, err = FromString("text/xml; charset=utf-8")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
2021-03-11 03:18:01 -05:00
|
|
|
|
|
|
|
c.Assert(f, qt.Equals, Type{MainType: "text", SubType: "xml", mimeSuffix: ""})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFromStringAndExt(t *testing.T) {
|
|
|
|
c := qt.New(t)
|
|
|
|
f, err := FromStringAndExt("text/html", "html")
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(f, qt.Equals, HTMLType)
|
|
|
|
f, err = FromStringAndExt("text/html", ".html")
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(f, qt.Equals, HTMLType)
|
2018-07-10 05:55:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add a test for the SVG case
|
|
|
|
// https://github.com/gohugoio/hugo/issues/4920
|
|
|
|
func TestFromExtensionMultipleSuffixes(t *testing.T) {
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2021-03-11 03:18:01 -05:00
|
|
|
tp, si, found := DefaultTypes.GetBySuffix("svg")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, true)
|
|
|
|
c.Assert(tp.String(), qt.Equals, "image/svg+xml")
|
2021-03-11 03:18:01 -05:00
|
|
|
c.Assert(si.Suffix, qt.Equals, "svg")
|
|
|
|
c.Assert(si.FullSuffix, qt.Equals, ".svg")
|
|
|
|
c.Assert(tp.FirstSuffix.Suffix, qt.Equals, si.Suffix)
|
|
|
|
c.Assert(tp.FirstSuffix.FullSuffix, qt.Equals, si.FullSuffix)
|
|
|
|
ftp, found := DefaultTypes.GetByType("image/svg+xml")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, true)
|
2021-03-11 03:18:01 -05:00
|
|
|
c.Assert(ftp.String(), qt.Equals, "image/svg+xml")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, true)
|
2017-04-03 16:39:37 -04:00
|
|
|
}
|
|
|
|
|
2021-12-16 09:12:13 -05:00
|
|
|
func TestFromContent(t *testing.T) {
|
|
|
|
c := qt.New(t)
|
|
|
|
|
|
|
|
files, err := filepath.Glob("./testdata/resource.*")
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
mtypes := DefaultTypes
|
|
|
|
|
|
|
|
for _, filename := range files {
|
2021-12-21 03:39:05 -05:00
|
|
|
name := filepath.Base(filename)
|
|
|
|
c.Run(name, func(c *qt.C) {
|
2023-02-18 17:43:26 -05:00
|
|
|
content, err := os.ReadFile(filename)
|
2021-12-16 09:12:13 -05:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
ext := strings.TrimPrefix(paths.Ext(filename), ".")
|
2021-12-21 04:35:33 -05:00
|
|
|
var exts []string
|
|
|
|
if ext == "jpg" {
|
|
|
|
exts = append(exts, "foo", "bar", "jpg")
|
|
|
|
} else {
|
|
|
|
exts = []string{ext}
|
|
|
|
}
|
2021-12-16 09:12:13 -05:00
|
|
|
expected, _, found := mtypes.GetFirstBySuffix(ext)
|
|
|
|
c.Assert(found, qt.IsTrue)
|
2021-12-21 04:35:33 -05:00
|
|
|
got := FromContent(mtypes, exts, content)
|
2021-12-16 09:12:13 -05:00
|
|
|
c.Assert(got, qt.Equals, expected)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-21 04:35:33 -05:00
|
|
|
func TestFromContentFakes(t *testing.T) {
|
|
|
|
c := qt.New(t)
|
|
|
|
|
|
|
|
files, err := filepath.Glob("./testdata/fake.*")
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
mtypes := DefaultTypes
|
|
|
|
|
|
|
|
for _, filename := range files {
|
|
|
|
name := filepath.Base(filename)
|
|
|
|
c.Run(name, func(c *qt.C) {
|
2023-02-18 17:43:26 -05:00
|
|
|
content, err := os.ReadFile(filename)
|
2021-12-21 04:35:33 -05:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
ext := strings.TrimPrefix(paths.Ext(filename), ".")
|
|
|
|
got := FromContent(mtypes, []string{ext}, content)
|
|
|
|
c.Assert(got, qt.Equals, zero)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-03 16:39:37 -04:00
|
|
|
func TestDecodeTypes(t *testing.T) {
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2017-04-03 16:39:37 -04:00
|
|
|
|
2020-12-02 07:23:25 -05:00
|
|
|
tests := []struct {
|
2017-04-03 16:39:37 -04:00
|
|
|
name string
|
2022-03-17 17:03:27 -04:00
|
|
|
maps []map[string]any
|
2017-04-03 16:39:37 -04:00
|
|
|
shouldError bool
|
|
|
|
assert func(t *testing.T, name string, tt Types)
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"Redefine JSON",
|
2022-03-17 17:03:27 -04:00
|
|
|
[]map[string]any{
|
2017-08-07 14:03:15 -04:00
|
|
|
{
|
2022-03-17 17:03:27 -04:00
|
|
|
"application/json": map[string]any{
|
2020-12-02 07:23:25 -05:00
|
|
|
"suffixes": []string{"jasn"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2017-04-03 16:39:37 -04:00
|
|
|
false,
|
|
|
|
func(t *testing.T, name string, tt Types) {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(len(tt), qt.Equals, len(DefaultTypes))
|
2021-03-11 03:18:01 -05:00
|
|
|
json, si, found := tt.GetBySuffix("jasn")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, true)
|
|
|
|
c.Assert(json.String(), qt.Equals, "application/json")
|
2021-03-11 03:18:01 -05:00
|
|
|
c.Assert(si.FullSuffix, qt.Equals, ".jasn")
|
2020-12-02 07:23:25 -05:00
|
|
|
},
|
|
|
|
},
|
2018-07-10 05:55:22 -04:00
|
|
|
{
|
2018-08-28 08:18:12 -04:00
|
|
|
"MIME suffix in key, multiple file suffixes, custom delimiter",
|
2022-03-17 17:03:27 -04:00
|
|
|
[]map[string]any{
|
2018-07-10 05:55:22 -04:00
|
|
|
{
|
2022-03-17 17:03:27 -04:00
|
|
|
"application/hugo+hg": map[string]any{
|
2021-03-11 03:18:01 -05:00
|
|
|
"suffixes": []string{"hg1", "hG2"},
|
2018-08-28 08:18:12 -04:00
|
|
|
"Delimiter": "_",
|
2020-12-02 07:23:25 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-07-10 05:55:22 -04:00
|
|
|
false,
|
|
|
|
func(t *testing.T, name string, tt Types) {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(len(tt), qt.Equals, len(DefaultTypes)+1)
|
2021-03-11 03:18:01 -05:00
|
|
|
hg, si, found := tt.GetBySuffix("hg2")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, true)
|
|
|
|
c.Assert(hg.mimeSuffix, qt.Equals, "hg")
|
2021-03-11 03:18:01 -05:00
|
|
|
c.Assert(hg.FirstSuffix.Suffix, qt.Equals, "hg1")
|
|
|
|
c.Assert(hg.FirstSuffix.FullSuffix, qt.Equals, "_hg1")
|
|
|
|
c.Assert(si.Suffix, qt.Equals, "hg2")
|
|
|
|
c.Assert(si.FullSuffix, qt.Equals, "_hg2")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(hg.String(), qt.Equals, "application/hugo+hg")
|
2018-07-10 05:55:22 -04:00
|
|
|
|
2021-03-11 03:18:01 -05:00
|
|
|
_, found = tt.GetByType("application/hugo+hg")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, true)
|
2020-12-02 07:23:25 -05:00
|
|
|
},
|
|
|
|
},
|
2017-04-03 16:39:37 -04:00
|
|
|
{
|
|
|
|
"Add custom media type",
|
2022-03-17 17:03:27 -04:00
|
|
|
[]map[string]any{
|
2017-08-07 14:03:15 -04:00
|
|
|
{
|
2022-03-17 17:03:27 -04:00
|
|
|
"text/hugo+hgo": map[string]any{
|
2020-12-02 07:23:25 -05:00
|
|
|
"Suffixes": []string{"hgo2"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2017-04-03 16:39:37 -04:00
|
|
|
false,
|
2021-03-11 03:18:01 -05:00
|
|
|
func(t *testing.T, name string, tp Types) {
|
|
|
|
c.Assert(len(tp), qt.Equals, len(DefaultTypes)+1)
|
2017-04-03 16:39:37 -04:00
|
|
|
// Make sure we have not broken the default config.
|
2018-07-10 05:55:22 -04:00
|
|
|
|
2021-03-11 03:18:01 -05:00
|
|
|
_, _, found := tp.GetBySuffix("json")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, true)
|
2017-04-03 16:39:37 -04:00
|
|
|
|
2021-03-11 03:18:01 -05:00
|
|
|
hugo, _, found := tp.GetBySuffix("hgo2")
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(found, qt.Equals, true)
|
|
|
|
c.Assert(hugo.String(), qt.Equals, "text/hugo+hgo")
|
2020-12-02 07:23:25 -05:00
|
|
|
},
|
|
|
|
},
|
2017-04-03 16:39:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
result, err := DecodeTypes(test.maps...)
|
|
|
|
if test.shouldError {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2017-04-03 16:39:37 -04:00
|
|
|
} else {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
2017-04-03 16:39:37 -04:00
|
|
|
test.assert(t, test.name, result)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-11 04:07:56 -05:00
|
|
|
|
2021-03-11 03:18:01 -05:00
|
|
|
func TestToJSON(t *testing.T) {
|
|
|
|
c := qt.New(t)
|
|
|
|
b, err := json.Marshal(MPEGType)
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(string(b), qt.Equals, `{"mainType":"video","subType":"mpeg","delimiter":".","firstSuffix":{"suffix":"mpg","fullSuffix":".mpg"},"type":"video/mpeg","string":"video/mpeg","suffixes":["mpg","mpeg"]}`)
|
|
|
|
}
|
|
|
|
|
2021-03-11 04:07:56 -05:00
|
|
|
func BenchmarkTypeOps(b *testing.B) {
|
|
|
|
mt := MPEGType
|
|
|
|
mts := DefaultTypes
|
|
|
|
for i := 0; i < b.N; i++ {
|
2021-03-11 03:18:01 -05:00
|
|
|
ff := mt.FirstSuffix
|
|
|
|
_ = ff.FullSuffix
|
2021-03-11 04:07:56 -05:00
|
|
|
_ = mt.IsZero()
|
|
|
|
c, err := mt.MarshalJSON()
|
|
|
|
if c == nil || err != nil {
|
|
|
|
b.Fatal("failed")
|
|
|
|
}
|
|
|
|
_ = mt.String()
|
2021-03-11 03:18:01 -05:00
|
|
|
_ = ff.Suffix
|
2021-03-11 04:07:56 -05:00
|
|
|
_ = mt.Suffixes
|
|
|
|
_ = mt.Type()
|
|
|
|
_ = mts.BySuffix("xml")
|
|
|
|
_, _ = mts.GetByMainSubType("application", "xml")
|
2021-03-11 03:18:01 -05:00
|
|
|
_, _, _ = mts.GetBySuffix("xml")
|
2021-03-11 04:07:56 -05:00
|
|
|
_, _ = mts.GetByType("application")
|
2021-03-11 03:18:01 -05:00
|
|
|
_, _, _ = mts.GetFirstBySuffix("xml")
|
2021-03-11 04:07:56 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|