Merge pull request #20242 from hashicorp/svh/b-scanner-buffer-v0.12
backend/remote: fix bufio.Scanner: token too long
This commit is contained in:
commit
3b80f69eec
|
@ -4,6 +4,7 @@ import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
tfe "github.com/hashicorp/go-tfe"
|
tfe "github.com/hashicorp/go-tfe"
|
||||||
|
@ -202,21 +203,34 @@ func (b *Remote) opApply(stopCtx, cancelCtx context.Context, op *backend.Operati
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return r, generalError("Failed to retrieve logs", err)
|
return r, generalError("Failed to retrieve logs", err)
|
||||||
}
|
}
|
||||||
scanner := bufio.NewScanner(logs)
|
reader := bufio.NewReaderSize(logs, 64*1024)
|
||||||
|
|
||||||
|
if b.CLI != nil {
|
||||||
skip := 0
|
skip := 0
|
||||||
for scanner.Scan() {
|
for next := true; next; {
|
||||||
|
var l, line []byte
|
||||||
|
|
||||||
|
for isPrefix := true; isPrefix; {
|
||||||
|
l, isPrefix, err = reader.ReadLine()
|
||||||
|
if err != nil {
|
||||||
|
if err != io.EOF {
|
||||||
|
return r, generalError("Failed to read logs", err)
|
||||||
|
}
|
||||||
|
next = false
|
||||||
|
}
|
||||||
|
line = append(line, l...)
|
||||||
|
}
|
||||||
|
|
||||||
// Skip the first 3 lines to prevent duplicate output.
|
// Skip the first 3 lines to prevent duplicate output.
|
||||||
if skip < 3 {
|
if skip < 3 {
|
||||||
skip++
|
skip++
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if b.CLI != nil {
|
|
||||||
b.CLI.Output(b.Colorize().Color(scanner.Text()))
|
if next || len(line) > 0 {
|
||||||
|
b.CLI.Output(b.Colorize().Color(string(line)))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if err := scanner.Err(); err != nil {
|
|
||||||
return r, generalError("Failed to read logs", err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return r, nil
|
return r, nil
|
||||||
|
|
|
@ -5,6 +5,7 @@ import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"math"
|
"math"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -227,7 +228,7 @@ func (b *Remote) checkPolicy(stopCtx, cancelCtx context.Context, op *backend.Ope
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return generalError("Failed to retrieve policy check logs", err)
|
return generalError("Failed to retrieve policy check logs", err)
|
||||||
}
|
}
|
||||||
scanner := bufio.NewScanner(logs)
|
reader := bufio.NewReaderSize(logs, 64*1024)
|
||||||
|
|
||||||
// Retrieve the policy check to get its current status.
|
// Retrieve the policy check to get its current status.
|
||||||
pc, err := b.client.PolicyChecks.Read(stopCtx, pc.ID)
|
pc, err := b.client.PolicyChecks.Read(stopCtx, pc.ID)
|
||||||
|
@ -249,14 +250,26 @@ func (b *Remote) checkPolicy(stopCtx, cancelCtx context.Context, op *backend.Ope
|
||||||
b.CLI.Output(b.Colorize().Color(msgPrefix + ":\n"))
|
b.CLI.Output(b.Colorize().Color(msgPrefix + ":\n"))
|
||||||
}
|
}
|
||||||
|
|
||||||
for scanner.Scan() {
|
|
||||||
if b.CLI != nil {
|
if b.CLI != nil {
|
||||||
b.CLI.Output(b.Colorize().Color(scanner.Text()))
|
for next := true; next; {
|
||||||
}
|
var l, line []byte
|
||||||
}
|
|
||||||
if err := scanner.Err(); err != nil {
|
for isPrefix := true; isPrefix; {
|
||||||
|
l, isPrefix, err = reader.ReadLine()
|
||||||
|
if err != nil {
|
||||||
|
if err != io.EOF {
|
||||||
return generalError("Failed to read logs", err)
|
return generalError("Failed to read logs", err)
|
||||||
}
|
}
|
||||||
|
next = false
|
||||||
|
}
|
||||||
|
line = append(line, l...)
|
||||||
|
}
|
||||||
|
|
||||||
|
if next || len(line) > 0 {
|
||||||
|
b.CLI.Output(b.Colorize().Color(string(line)))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
switch pc.Status {
|
switch pc.Status {
|
||||||
case tfe.PolicyPasses:
|
case tfe.PolicyPasses:
|
||||||
|
|
|
@ -5,6 +5,7 @@ import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
@ -253,16 +254,28 @@ func (b *Remote) plan(stopCtx, cancelCtx context.Context, op *backend.Operation,
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return r, generalError("Failed to retrieve logs", err)
|
return r, generalError("Failed to retrieve logs", err)
|
||||||
}
|
}
|
||||||
scanner := bufio.NewScanner(logs)
|
reader := bufio.NewReaderSize(logs, 64*1024)
|
||||||
|
|
||||||
for scanner.Scan() {
|
|
||||||
if b.CLI != nil {
|
if b.CLI != nil {
|
||||||
b.CLI.Output(b.Colorize().Color(scanner.Text()))
|
for next := true; next; {
|
||||||
}
|
var l, line []byte
|
||||||
}
|
|
||||||
if err := scanner.Err(); err != nil {
|
for isPrefix := true; isPrefix; {
|
||||||
|
l, isPrefix, err = reader.ReadLine()
|
||||||
|
if err != nil {
|
||||||
|
if err != io.EOF {
|
||||||
return r, generalError("Failed to read logs", err)
|
return r, generalError("Failed to read logs", err)
|
||||||
}
|
}
|
||||||
|
next = false
|
||||||
|
}
|
||||||
|
line = append(line, l...)
|
||||||
|
}
|
||||||
|
|
||||||
|
if next || len(line) > 0 {
|
||||||
|
b.CLI.Output(b.Colorize().Color(string(line)))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Retrieve the run to get its current status.
|
// Retrieve the run to get its current status.
|
||||||
r, err = b.client.Runs.Read(stopCtx, r.ID)
|
r, err = b.client.Runs.Read(stopCtx, r.ID)
|
||||||
|
|
|
@ -63,6 +63,36 @@ func TestRemote_planBasic(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestRemote_planLongLine(t *testing.T) {
|
||||||
|
b := testBackendDefault(t)
|
||||||
|
|
||||||
|
op, configCleanup := testOperationPlan(t, "./test-fixtures/plan-long-line")
|
||||||
|
defer configCleanup()
|
||||||
|
|
||||||
|
op.Workspace = backend.DefaultStateName
|
||||||
|
|
||||||
|
run, err := b.Operation(context.Background(), op)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("error starting operation: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
<-run.Done()
|
||||||
|
if run.Result != backend.OperationSuccess {
|
||||||
|
t.Fatalf("operation failed: %s", b.CLI.(*cli.MockUi).ErrorWriter.String())
|
||||||
|
}
|
||||||
|
if run.PlanEmpty {
|
||||||
|
t.Fatal("expected a non-empty plan")
|
||||||
|
}
|
||||||
|
|
||||||
|
output := b.CLI.(*cli.MockUi).OutputWriter.String()
|
||||||
|
if !strings.Contains(output, "Running plan in the remote backend") {
|
||||||
|
t.Fatalf("expected remote backend header in output: %s", output)
|
||||||
|
}
|
||||||
|
if !strings.Contains(output, "1 to add, 0 to change, 0 to destroy") {
|
||||||
|
t.Fatalf("expected plan summery in output: %s", output)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestRemote_planWithoutPermissions(t *testing.T) {
|
func TestRemote_planWithoutPermissions(t *testing.T) {
|
||||||
b, bCleanup := testBackendNoDefault(t)
|
b, bCleanup := testBackendNoDefault(t)
|
||||||
defer bCleanup()
|
defer bCleanup()
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue