2018-10-03 08:58:09 -04:00
// Copyright 2018 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 herrors
import (
"testing"
2018-10-23 02:54:10 -04:00
"github.com/pkg/errors"
2019-08-10 15:05:17 -04:00
qt "github.com/frankban/quicktest"
2018-10-03 08:58:09 -04:00
)
func TestToLineNumberError ( t * testing . T ) {
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 } ,
2018-10-03 08:58:09 -04:00
} {
2018-10-23 02:54:10 -04:00
got := ToFileError ( "template" , test . in )
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
le , ok := got . ( FileError )
2019-08-10 15:05:17 -04:00
c . Assert ( ok , qt . Equals , true )
2018-10-03 08:58:09 -04:00
2019-08-10 15:05:17 -04:00
c . Assert ( ok , qt . Equals , true , errMsg )
2018-11-01 06:28:30 -04:00
pos := le . 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 )
c . Assert ( errors . Cause ( got ) , qt . Not ( qt . IsNil ) )
2018-10-03 08:58:09 -04:00
}
}