Merge pull request #372 from hashicorp/format-objects-maps-on-multiple-lines

hclwrite: Generate multi-line objects and maps
This commit is contained in:
Alisdair McDiarmid 2020-05-06 13:29:44 -04:00 committed by GitHub
commit 60bf88b2b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 53 additions and 24 deletions

View File

@ -48,7 +48,11 @@ func Example_generateFromScratch() {
// Output: // Output:
// string = "foo" // string = "foo"
// //
// object = { bar = 5, baz = true, foo = "foo" } // object = {
// bar = 5
// baz = true
// foo = "foo"
// }
// bool = false // bool = false
// path = env.PATH // path = env.PATH
// //

View File

@ -119,15 +119,15 @@ func appendTokensForValue(val cty.Value, toks Tokens) Tokens {
Type: hclsyntax.TokenOBrace, Type: hclsyntax.TokenOBrace,
Bytes: []byte{'{'}, Bytes: []byte{'{'},
}) })
if val.LengthInt() > 0 {
toks = append(toks, &Token{
Type: hclsyntax.TokenNewline,
Bytes: []byte{'\n'},
})
}
i := 0 i := 0
for it := val.ElementIterator(); it.Next(); { for it := val.ElementIterator(); it.Next(); {
if i > 0 {
toks = append(toks, &Token{
Type: hclsyntax.TokenComma,
Bytes: []byte{','},
})
}
eKey, eVal := it.Element() eKey, eVal := it.Element()
if hclsyntax.ValidIdentifier(eKey.AsString()) { if hclsyntax.ValidIdentifier(eKey.AsString()) {
toks = append(toks, &Token{ toks = append(toks, &Token{
@ -142,6 +142,10 @@ func appendTokensForValue(val cty.Value, toks Tokens) Tokens {
Bytes: []byte{'='}, Bytes: []byte{'='},
}) })
toks = appendTokensForValue(eVal, toks) toks = appendTokensForValue(eVal, toks)
toks = append(toks, &Token{
Type: hclsyntax.TokenNewline,
Bytes: []byte{'\n'},
})
i++ i++
} }

View File

@ -340,10 +340,14 @@ func TestTokensForValue(t *testing.T) {
Type: hclsyntax.TokenOBrace, Type: hclsyntax.TokenOBrace,
Bytes: []byte(`{`), Bytes: []byte(`{`),
}, },
{
Type: hclsyntax.TokenNewline,
Bytes: []byte("\n"),
},
{ {
Type: hclsyntax.TokenIdent, Type: hclsyntax.TokenIdent,
Bytes: []byte(`foo`), Bytes: []byte(`foo`),
SpacesBefore: 1, SpacesBefore: 2,
}, },
{ {
Type: hclsyntax.TokenEqual, Type: hclsyntax.TokenEqual,
@ -355,10 +359,13 @@ func TestTokensForValue(t *testing.T) {
Bytes: []byte(`true`), Bytes: []byte(`true`),
SpacesBefore: 1, SpacesBefore: 1,
}, },
{
Type: hclsyntax.TokenNewline,
Bytes: []byte("\n"),
},
{ {
Type: hclsyntax.TokenCBrace, Type: hclsyntax.TokenCBrace,
Bytes: []byte(`}`), Bytes: []byte(`}`),
SpacesBefore: 1,
}, },
}, },
}, },
@ -372,10 +379,14 @@ func TestTokensForValue(t *testing.T) {
Type: hclsyntax.TokenOBrace, Type: hclsyntax.TokenOBrace,
Bytes: []byte(`{`), Bytes: []byte(`{`),
}, },
{
Type: hclsyntax.TokenNewline,
Bytes: []byte("\n"),
},
{ {
Type: hclsyntax.TokenIdent, Type: hclsyntax.TokenIdent,
Bytes: []byte(`bar`), Bytes: []byte(`bar`),
SpacesBefore: 1, SpacesBefore: 2,
}, },
{ {
Type: hclsyntax.TokenEqual, Type: hclsyntax.TokenEqual,
@ -388,13 +399,13 @@ func TestTokensForValue(t *testing.T) {
SpacesBefore: 1, SpacesBefore: 1,
}, },
{ {
Type: hclsyntax.TokenComma, Type: hclsyntax.TokenNewline,
Bytes: []byte(`,`), Bytes: []byte("\n"),
}, },
{ {
Type: hclsyntax.TokenIdent, Type: hclsyntax.TokenIdent,
Bytes: []byte(`foo`), Bytes: []byte(`foo`),
SpacesBefore: 1, SpacesBefore: 2,
}, },
{ {
Type: hclsyntax.TokenEqual, Type: hclsyntax.TokenEqual,
@ -406,10 +417,13 @@ func TestTokensForValue(t *testing.T) {
Bytes: []byte(`true`), Bytes: []byte(`true`),
SpacesBefore: 1, SpacesBefore: 1,
}, },
{
Type: hclsyntax.TokenNewline,
Bytes: []byte("\n"),
},
{ {
Type: hclsyntax.TokenCBrace, Type: hclsyntax.TokenCBrace,
Bytes: []byte(`}`), Bytes: []byte(`}`),
SpacesBefore: 1,
}, },
}, },
}, },
@ -422,10 +436,14 @@ func TestTokensForValue(t *testing.T) {
Type: hclsyntax.TokenOBrace, Type: hclsyntax.TokenOBrace,
Bytes: []byte(`{`), Bytes: []byte(`{`),
}, },
{
Type: hclsyntax.TokenNewline,
Bytes: []byte("\n"),
},
{ {
Type: hclsyntax.TokenOQuote, Type: hclsyntax.TokenOQuote,
Bytes: []byte(`"`), Bytes: []byte(`"`),
SpacesBefore: 1, SpacesBefore: 2,
}, },
{ {
Type: hclsyntax.TokenQuotedLit, Type: hclsyntax.TokenQuotedLit,
@ -445,10 +463,13 @@ func TestTokensForValue(t *testing.T) {
Bytes: []byte(`true`), Bytes: []byte(`true`),
SpacesBefore: 1, SpacesBefore: 1,
}, },
{
Type: hclsyntax.TokenNewline,
Bytes: []byte("\n"),
},
{ {
Type: hclsyntax.TokenCBrace, Type: hclsyntax.TokenCBrace,
Bytes: []byte(`}`), Bytes: []byte(`}`),
SpacesBefore: 1,
}, },
}, },
}, },