govendor fetch github.com/hashicorp/hcl2/hcltest
This commit is contained in:
parent
d0d829848a
commit
21bf786401
|
@ -0,0 +1,6 @@
|
||||||
|
// Package hcltest contains utilities that aim to make it more convenient
|
||||||
|
// to write tests for code that interacts with the HCL API.
|
||||||
|
//
|
||||||
|
// This package is intended for use only in test code. It is optimized for
|
||||||
|
// convenience of use over all other concerns.
|
||||||
|
package hcltest
|
|
@ -0,0 +1,220 @@
|
||||||
|
package hcltest
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/hashicorp/hcl2/hcl"
|
||||||
|
"github.com/zclconf/go-cty/cty"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MockBody returns a hcl.Body implementation that works in terms of a
|
||||||
|
// caller-constructed hcl.BodyContent, thus avoiding the need to parse
|
||||||
|
// a "real" zcl config file to use as input to a test.
|
||||||
|
func MockBody(content *hcl.BodyContent) hcl.Body {
|
||||||
|
return mockBody{content}
|
||||||
|
}
|
||||||
|
|
||||||
|
type mockBody struct {
|
||||||
|
C *hcl.BodyContent
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b mockBody) Content(schema *hcl.BodySchema) (*hcl.BodyContent, hcl.Diagnostics) {
|
||||||
|
content, remainI, diags := b.PartialContent(schema)
|
||||||
|
remain := remainI.(mockBody)
|
||||||
|
for _, attr := range remain.C.Attributes {
|
||||||
|
diags = append(diags, &hcl.Diagnostic{
|
||||||
|
Severity: hcl.DiagError,
|
||||||
|
Summary: "Extraneous attribute in mock body",
|
||||||
|
Detail: fmt.Sprintf("Mock body has extraneous attribute %q.", attr.Name),
|
||||||
|
Subject: &attr.NameRange,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
for _, block := range remain.C.Blocks {
|
||||||
|
diags = append(diags, &hcl.Diagnostic{
|
||||||
|
Severity: hcl.DiagError,
|
||||||
|
Summary: "Extraneous block in mock body",
|
||||||
|
Detail: fmt.Sprintf("Mock body has extraneous block of type %q.", block.Type),
|
||||||
|
Subject: &block.DefRange,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return content, diags
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b mockBody) PartialContent(schema *hcl.BodySchema) (*hcl.BodyContent, hcl.Body, hcl.Diagnostics) {
|
||||||
|
ret := &hcl.BodyContent{
|
||||||
|
Attributes: map[string]*hcl.Attribute{},
|
||||||
|
Blocks: []*hcl.Block{},
|
||||||
|
MissingItemRange: b.C.MissingItemRange,
|
||||||
|
}
|
||||||
|
remain := &hcl.BodyContent{
|
||||||
|
Attributes: map[string]*hcl.Attribute{},
|
||||||
|
Blocks: []*hcl.Block{},
|
||||||
|
MissingItemRange: b.C.MissingItemRange,
|
||||||
|
}
|
||||||
|
var diags hcl.Diagnostics
|
||||||
|
|
||||||
|
if len(schema.Attributes) != 0 {
|
||||||
|
for _, attrS := range schema.Attributes {
|
||||||
|
name := attrS.Name
|
||||||
|
attr, ok := b.C.Attributes[name]
|
||||||
|
if !ok {
|
||||||
|
if attrS.Required {
|
||||||
|
diags = append(diags, &hcl.Diagnostic{
|
||||||
|
Severity: hcl.DiagError,
|
||||||
|
Summary: "Missing required attribute",
|
||||||
|
Detail: fmt.Sprintf("Mock body doesn't have attribute %q", name),
|
||||||
|
Subject: b.C.MissingItemRange.Ptr(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
ret.Attributes[name] = attr
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for attrN, attr := range b.C.Attributes {
|
||||||
|
if _, ok := ret.Attributes[attrN]; !ok {
|
||||||
|
remain.Attributes[attrN] = attr
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
wantedBlocks := map[string]hcl.BlockHeaderSchema{}
|
||||||
|
for _, blockS := range schema.Blocks {
|
||||||
|
wantedBlocks[blockS.Type] = blockS
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, block := range b.C.Blocks {
|
||||||
|
if blockS, ok := wantedBlocks[block.Type]; ok {
|
||||||
|
if len(block.Labels) != len(blockS.LabelNames) {
|
||||||
|
diags = append(diags, &hcl.Diagnostic{
|
||||||
|
Severity: hcl.DiagError,
|
||||||
|
Summary: "Wrong number of block labels",
|
||||||
|
Detail: fmt.Sprintf("Block of type %q requires %d labels, but got %d", blockS.Type, len(blockS.LabelNames), len(block.Labels)),
|
||||||
|
Subject: b.C.MissingItemRange.Ptr(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
ret.Blocks = append(ret.Blocks, block)
|
||||||
|
} else {
|
||||||
|
remain.Blocks = append(remain.Blocks, block)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return ret, mockBody{remain}, diags
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b mockBody) JustAttributes() (hcl.Attributes, hcl.Diagnostics) {
|
||||||
|
var diags hcl.Diagnostics
|
||||||
|
if len(b.C.Blocks) != 0 {
|
||||||
|
diags = append(diags, &hcl.Diagnostic{
|
||||||
|
Severity: hcl.DiagError,
|
||||||
|
Summary: "Mock body has blocks",
|
||||||
|
Detail: "Can't use JustAttributes on a mock body with blocks.",
|
||||||
|
Subject: b.C.MissingItemRange.Ptr(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
return b.C.Attributes, diags
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b mockBody) MissingItemRange() hcl.Range {
|
||||||
|
return b.C.MissingItemRange
|
||||||
|
}
|
||||||
|
|
||||||
|
// MockExprLiteral returns a hcl.Expression that evaluates to the given literal
|
||||||
|
// value.
|
||||||
|
func MockExprLiteral(val cty.Value) hcl.Expression {
|
||||||
|
return mockExprLiteral{val}
|
||||||
|
}
|
||||||
|
|
||||||
|
type mockExprLiteral struct {
|
||||||
|
V cty.Value
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e mockExprLiteral) Value(ctx *hcl.EvalContext) (cty.Value, hcl.Diagnostics) {
|
||||||
|
return e.V, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e mockExprLiteral) Variables() []hcl.Traversal {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e mockExprLiteral) Range() hcl.Range {
|
||||||
|
return hcl.Range{
|
||||||
|
Filename: "MockExprLiteral",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e mockExprLiteral) StartRange() hcl.Range {
|
||||||
|
return e.Range()
|
||||||
|
}
|
||||||
|
|
||||||
|
// MockExprVariable returns a hcl.Expression that evaluates to the value of
|
||||||
|
// the variable with the given name.
|
||||||
|
func MockExprVariable(name string) hcl.Expression {
|
||||||
|
return mockExprVariable(name)
|
||||||
|
}
|
||||||
|
|
||||||
|
type mockExprVariable string
|
||||||
|
|
||||||
|
func (e mockExprVariable) Value(ctx *hcl.EvalContext) (cty.Value, hcl.Diagnostics) {
|
||||||
|
name := string(e)
|
||||||
|
for ctx != nil {
|
||||||
|
if val, ok := ctx.Variables[name]; ok {
|
||||||
|
return val, nil
|
||||||
|
}
|
||||||
|
ctx = ctx.Parent()
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we fall out here then there is no variable with the given name
|
||||||
|
return cty.DynamicVal, hcl.Diagnostics{
|
||||||
|
{
|
||||||
|
Severity: hcl.DiagError,
|
||||||
|
Summary: "Reference to undefined variable",
|
||||||
|
Detail: fmt.Sprintf("Variable %q is not defined.", name),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e mockExprVariable) Variables() []hcl.Traversal {
|
||||||
|
return []hcl.Traversal{
|
||||||
|
{
|
||||||
|
hcl.TraverseRoot{
|
||||||
|
Name: string(e),
|
||||||
|
SrcRange: e.Range(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e mockExprVariable) Range() hcl.Range {
|
||||||
|
return hcl.Range{
|
||||||
|
Filename: "MockExprVariable",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e mockExprVariable) StartRange() hcl.Range {
|
||||||
|
return e.Range()
|
||||||
|
}
|
||||||
|
|
||||||
|
// MockAttrs constructs and returns a hcl.Attributes map with attributes
|
||||||
|
// derived from the given expression map.
|
||||||
|
//
|
||||||
|
// Each entry in the map becomes an attribute whose name is the key and
|
||||||
|
// whose expression is the value.
|
||||||
|
func MockAttrs(exprs map[string]hcl.Expression) hcl.Attributes {
|
||||||
|
ret := make(hcl.Attributes)
|
||||||
|
for name, expr := range exprs {
|
||||||
|
ret[name] = &hcl.Attribute{
|
||||||
|
Name: name,
|
||||||
|
Expr: expr,
|
||||||
|
Range: hcl.Range{
|
||||||
|
Filename: "MockAttrs",
|
||||||
|
},
|
||||||
|
NameRange: hcl.Range{
|
||||||
|
Filename: "MockAttrs",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ret
|
||||||
|
}
|
|
@ -1595,6 +1595,12 @@
|
||||||
"revision": "f44382c4fab57666c486c77a8b89c9ea00be08ba",
|
"revision": "f44382c4fab57666c486c77a8b89c9ea00be08ba",
|
||||||
"revisionTime": "2017-09-20T23:23:23Z"
|
"revisionTime": "2017-09-20T23:23:23Z"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"checksumSHA1": "4supppf3CMdAEUEDrXP8niXvAR0=",
|
||||||
|
"path": "github.com/hashicorp/hcl2/hcltest",
|
||||||
|
"revision": "f44382c4fab57666c486c77a8b89c9ea00be08ba",
|
||||||
|
"revisionTime": "2017-09-20T23:23:23Z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"checksumSHA1": "p+dun/Fx4beswXTtoEjVnwDJE+Y=",
|
"checksumSHA1": "p+dun/Fx4beswXTtoEjVnwDJE+Y=",
|
||||||
"path": "github.com/hashicorp/hcl2/hclwrite",
|
"path": "github.com/hashicorp/hcl2/hclwrite",
|
||||||
|
|
Loading…
Reference in New Issue