Skip to content

Commit

Permalink
scanner: Add tests demonstrating issue with empty heredoc anchors.
Browse files Browse the repository at this point in the history
  • Loading branch information
octo committed Apr 4, 2018
1 parent 061bf37 commit 8bad6ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions hcl/printer/printer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ func TestFormatValidOutput(t *testing.T) {
"#\ue123t",
"Y=<<4\n4/\n\n\n/4/@=4/\n\n\n/4000000004\r\r\n00004\n",
"x=<<_\n_\r\r\n_\n",
"X=<<-\n\r\r\n",
}

for _, c := range cases {
Expand Down
3 changes: 3 additions & 0 deletions hcl/scanner/scanner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,9 @@ func TestError(t *testing.T) {
testError(t, `"${abc`+"\n", "2:1", "literal not terminated", token.STRING)
testError(t, `/*/`, "1:4", "comment not terminated", token.COMMENT)
testError(t, `/foo`, "1:1", "expected '/' for comment", token.COMMENT)

testError(t, "<<\nfoo\n\n", "1:3", "zero-length heredoc anchor", token.HEREDOC)
testError(t, "<<-\nfoo\n\n", "1:4", "zero-length heredoc anchor", token.HEREDOC)
}

func testError(t *testing.T, src, pos, msg string, tok token.Type) {
Expand Down

0 comments on commit 8bad6ac

Please sign in to comment.