check: fix the checking of a hierarchy
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
b7724b906b
commit
05f9b75a19
4 changed files with 11 additions and 2 deletions
7
check.go
7
check.go
|
@ -7,11 +7,12 @@ import (
|
||||||
"sort"
|
"sort"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Result of a Check
|
||||||
type Result struct {
|
type Result struct {
|
||||||
Failures []Failure
|
Failures []Failure // list of any failures in the Check
|
||||||
// XXX perhaps this is a list of the failed files and keywords?
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Failure of a particular keyword for a path
|
||||||
type Failure struct {
|
type Failure struct {
|
||||||
Path string
|
Path string
|
||||||
Keyword string
|
Keyword string
|
||||||
|
@ -19,10 +20,12 @@ type Failure struct {
|
||||||
Got string
|
Got string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// String returns a "pretty" formatting for a Failure
|
||||||
func (f Failure) String() string {
|
func (f Failure) String() string {
|
||||||
return fmt.Sprintf("%q: keyword %q: expected %s; got %s", f.Path, f.Keyword, f.Expected, f.Got)
|
return fmt.Sprintf("%q: keyword %q: expected %s; got %s", f.Path, f.Keyword, f.Expected, f.Got)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check a root directory path for a DirectoryHierarchy
|
||||||
func Check(root string, dh *DirectoryHierarchy) (*Result, error) {
|
func Check(root string, dh *DirectoryHierarchy) (*Result, error) {
|
||||||
creator := dhCreator{DH: dh}
|
creator := dhCreator{DH: dh}
|
||||||
curDir, err := os.Getwd()
|
curDir, err := os.Getwd()
|
||||||
|
|
|
@ -99,6 +99,7 @@ func main() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if res != nil && len(res.Failures) > 0 {
|
if res != nil && len(res.Failures) > 0 {
|
||||||
|
defer os.Exit(1)
|
||||||
for _, failure := range res.Failures {
|
for _, failure := range res.Failures {
|
||||||
fmt.Println(failure)
|
fmt.Println(failure)
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,6 +46,7 @@ type Entry struct {
|
||||||
Type EntryType
|
Type EntryType
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Path provides the full path of the file, despite RelativeType or FullType
|
||||||
func (e Entry) Path() string {
|
func (e Entry) Path() string {
|
||||||
if e.Parent == nil || e.Type == FullType {
|
if e.Parent == nil || e.Type == FullType {
|
||||||
return e.Name
|
return e.Name
|
||||||
|
|
4
parse.go
4
parse.go
|
@ -53,6 +53,9 @@ func ParseSpec(r io.Reader) (*DirectoryHierarchy, error) {
|
||||||
case len(strings.Fields(str)) > 0 && strings.Fields(str)[0] == "..":
|
case len(strings.Fields(str)) > 0 && strings.Fields(str)[0] == "..":
|
||||||
e.Type = DotDotType
|
e.Type = DotDotType
|
||||||
e.Raw = str
|
e.Raw = str
|
||||||
|
if creator.curDir != nil {
|
||||||
|
creator.curDir = creator.curDir.Parent
|
||||||
|
}
|
||||||
// nothing else to do here
|
// nothing else to do here
|
||||||
case len(strings.Fields(str)) > 0:
|
case len(strings.Fields(str)) > 0:
|
||||||
// collapse any escaped newlines
|
// collapse any escaped newlines
|
||||||
|
@ -74,6 +77,7 @@ func ParseSpec(r io.Reader) (*DirectoryHierarchy, error) {
|
||||||
}
|
}
|
||||||
e.Name = f[0]
|
e.Name = f[0]
|
||||||
e.Keywords = f[1:]
|
e.Keywords = f[1:]
|
||||||
|
e.Parent = creator.curDir
|
||||||
for i := range e.Keywords {
|
for i := range e.Keywords {
|
||||||
kv := KeyVal(e.Keywords[i])
|
kv := KeyVal(e.Keywords[i])
|
||||||
if kv.Keyword() == "type" {
|
if kv.Keyword() == "type" {
|
||||||
|
|
Loading…
Reference in a new issue