2022-05-02 10:07:52 -04:00
// Copyright 2022 The Hugo Authors. All rights reserved.
2018-10-03 08:58:09 -04: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 herrors
import (
2022-05-02 10:07:52 -04:00
"fmt"
"strings"
2018-10-03 08:58:09 -04:00
"testing"
2022-05-02 10:07:52 -04:00
"errors"
"github.com/gohugoio/hugo/common/text"
2018-10-23 02:54:10 -04:00
2019-08-10 15:05:17 -04:00
qt "github.com/frankban/quicktest"
2018-10-03 08:58:09 -04:00
)
2022-05-02 10:07:52 -04:00
func TestNewFileError ( t * testing . T ) {
t . Parallel ( )
c := qt . New ( t )
2022-05-15 05:40:34 -04:00
fe := NewFileErrorFromName ( errors . New ( "bar" ) , "foo.html" )
2022-05-02 10:07:52 -04:00
c . Assert ( fe . Error ( ) , qt . Equals , ` "foo.html:1:1": bar ` )
lines := ""
for i := 1 ; i <= 100 ; i ++ {
lines += fmt . Sprintf ( "line %d\n" , i )
}
fe . UpdatePosition ( text . Position { LineNumber : 32 , ColumnNumber : 2 } )
c . Assert ( fe . Error ( ) , qt . Equals , ` "foo.html:32:2": bar ` )
fe . UpdatePosition ( text . Position { LineNumber : 0 , ColumnNumber : 0 , Offset : 212 } )
2022-05-12 05:43:20 -04:00
fe . UpdateContent ( strings . NewReader ( lines ) , nil )
2022-05-02 10:07:52 -04:00
c . Assert ( fe . Error ( ) , qt . Equals , ` "foo.html:32:0": bar ` )
errorContext := fe . ErrorContext ( )
c . Assert ( errorContext , qt . IsNotNil )
c . Assert ( errorContext . Lines , qt . DeepEquals , [ ] string { "line 30" , "line 31" , "line 32" , "line 33" , "line 34" } )
c . Assert ( errorContext . LinesPos , qt . Equals , 2 )
c . Assert ( errorContext . ChromaLexer , qt . Equals , "go-html-template" )
}
func TestNewFileErrorExtractFromMessage ( t * testing . T ) {
2018-10-03 08:58:09 -04:00
t . Parallel ( )
2019-08-10 15:05:17 -04:00
c := qt . New ( t )
2018-10-03 08:58:09 -04:00
for i , test := range [ ] struct {
2018-10-21 06:20:21 -04:00
in error
offset int
lineNumber int
columnNumber int
2018-10-03 08:58:09 -04:00
} {
2018-10-23 02:54:10 -04:00
{ errors . New ( "no line number for you" ) , 0 , 1 , 1 } ,
2018-10-21 06:20:21 -04:00
{ errors . New ( ` template: _default/single.html:4:15: executing "_default/single.html" at <.Titles>: can't evaluate field Titles in type *hugolib.PageOutput ` ) , 0 , 4 , 15 } ,
{ errors . New ( "parse failed: template: _default/bundle-resource-meta.html:11: unexpected in operand" ) , 0 , 11 , 1 } ,
{ errors . New ( ` failed:: template: _default/bundle-resource-meta.html:2:7: executing "main" at <.Titles> ` ) , 0 , 2 , 7 } ,
2018-10-22 11:42:06 -04:00
{ errors . New ( ` failed to load translations: (6, 7): was expecting token =, but got "g" instead ` ) , 0 , 6 , 7 } ,
2022-05-02 10:07:52 -04:00
{ errors . New ( ` execute of template failed: template: index.html:2:5: executing "index.html" at <partial "foo.html" .>: error calling partial: "/layouts/partials/foo.html:3:6": execute of template failed: template: partials/foo.html:3:6: executing "partials/foo.html" at <.ThisDoesNotExist>: can't evaluate field ThisDoesNotExist in type *hugolib.pageStat ` ) , 0 , 2 , 5 } ,
2018-10-03 08:58:09 -04:00
} {
2022-05-15 05:40:34 -04:00
got := NewFileErrorFromName ( test . in , "test.txt" )
2018-10-03 08:58:09 -04:00
2019-08-10 15:05:17 -04:00
errMsg := qt . Commentf ( "[%d][%T]" , i , got )
2018-10-03 08:58:09 -04:00
2022-05-02 10:07:52 -04:00
pos := got . Position ( )
2019-08-10 15:05:17 -04:00
c . Assert ( pos . LineNumber , qt . Equals , test . lineNumber , errMsg )
c . Assert ( pos . ColumnNumber , qt . Equals , test . columnNumber , errMsg )
2022-05-02 10:07:52 -04:00
c . Assert ( errors . Unwrap ( got ) , qt . Not ( qt . IsNil ) )
2018-10-03 08:58:09 -04:00
}
}