// Copyright 2017 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 safe import ( "html/template" "testing" qt "github.com/frankban/quicktest" ) type tstNoStringer struct{} func TestCSS(t *testing.T) { t.Parallel() c := qt.New(t) ns := New() for _, test := range []struct { a any expect any }{ {`a[href =~ "//example.com"]#foo`, template.CSS(`a[href =~ "//example.com"]#foo`)}, // errors {tstNoStringer{}, false}, } { result, err := ns.CSS(test.a) if b, ok := test.expect.(bool); ok && !b { c.Assert(err, qt.Not(qt.IsNil)) continue } c.Assert(err, qt.IsNil) c.Assert(result, qt.Equals, test.expect) } } func TestHTML(t *testing.T) { t.Parallel() c := qt.New(t) ns := New() for _, test := range []struct { a any expect any }{ {`Hello, World &tc!`, template.HTML(`Hello, World &tc!`)}, // errors {tstNoStringer{}, false}, } { result, err := ns.HTML(test.a) if b, ok := test.expect.(bool); ok && !b { c.Assert(err, qt.Not(qt.IsNil)) continue } c.Assert(err, qt.IsNil) c.Assert(result, qt.Equals, test.expect) } } func TestHTMLAttr(t *testing.T) { t.Parallel() c := qt.New(t) ns := New() for _, test := range []struct { a any expect any }{ {` dir="ltr"`, template.HTMLAttr(` dir="ltr"`)}, // errors {tstNoStringer{}, false}, } { result, err := ns.HTMLAttr(test.a) if b, ok := test.expect.(bool); ok && !b { c.Assert(err, qt.Not(qt.IsNil)) continue } c.Assert(err, qt.IsNil) c.Assert(result, qt.Equals, test.expect) } } func TestJS(t *testing.T) { t.Parallel() c := qt.New(t) ns := New() for _, test := range []struct { a any expect any }{ {`c && alert("Hello, World!");`, template.JS(`c && alert("Hello, World!");`)}, // errors {tstNoStringer{}, false}, } { result, err := ns.JS(test.a) if b, ok := test.expect.(bool); ok && !b { c.Assert(err, qt.Not(qt.IsNil)) continue } c.Assert(err, qt.IsNil) c.Assert(result, qt.Equals, test.expect) } } func TestJSStr(t *testing.T) { t.Parallel() c := qt.New(t) ns := New() for _, test := range []struct { a any expect any }{ {`Hello, World & O'Reilly\x21`, template.JSStr(`Hello, World & O'Reilly\x21`)}, // errors {tstNoStringer{}, false}, } { result, err := ns.JSStr(test.a) if b, ok := test.expect.(bool); ok && !b { c.Assert(err, qt.Not(qt.IsNil)) continue } c.Assert(err, qt.IsNil) c.Assert(result, qt.Equals, test.expect) } } func TestURL(t *testing.T) { t.Parallel() c := qt.New(t) ns := New() for _, test := range []struct { a any expect any }{ {`greeting=H%69&addressee=(World)`, template.URL(`greeting=H%69&addressee=(World)`)}, // errors {tstNoStringer{}, false}, } { result, err := ns.URL(test.a) if b, ok := test.expect.(bool); ok && !b { c.Assert(err, qt.Not(qt.IsNil)) continue } c.Assert(err, qt.IsNil) c.Assert(result, qt.Equals, test.expect) } }