databricks-cli/libs/telemetry/upload_test.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

207 lines
4.5 KiB
Go
Raw Normal View History

2025-02-03 04:19:26 +00:00
package telemetry
import (
2025-02-24 17:05:19 +00:00
"context"
2025-02-03 04:19:26 +00:00
"encoding/json"
"os"
"path/filepath"
2025-03-02 14:25:03 +00:00
"strings"
2025-02-03 04:19:26 +00:00
"testing"
"github.com/databricks/cli/internal/testutil"
"github.com/databricks/cli/libs/telemetry/protos"
"github.com/databricks/cli/libs/testserver"
"github.com/databricks/databricks-sdk-go/apierr"
2025-02-03 04:19:26 +00:00
"github.com/google/uuid"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
2025-02-24 17:05:19 +00:00
func configureStdin(t *testing.T) {
2025-02-03 04:19:26 +00:00
logs := []protos.FrontendLog{
{
FrontendLogEventID: uuid.New().String(),
Entry: protos.FrontendLogEntry{
DatabricksCliLog: protos.DatabricksCliLog{
CliTestEvent: &protos.CliTestEvent{Name: protos.DummyCliEnumValue1},
},
},
},
{
FrontendLogEventID: uuid.New().String(),
Entry: protos.FrontendLogEntry{
DatabricksCliLog: protos.DatabricksCliLog{
CliTestEvent: &protos.CliTestEvent{Name: protos.DummyCliEnumValue2},
},
},
},
}
processIn := UploadConfig{
Logs: logs,
}
b, err := json.Marshal(processIn)
require.NoError(t, err)
tmpDir := t.TempDir()
testutil.WriteFile(t, filepath.Join(tmpDir, "stdin"), string(b))
2025-02-18 15:35:14 +00:00
f, err := os.OpenFile(filepath.Join(tmpDir, "stdin"), os.O_RDONLY, 0o644)
2025-02-03 04:19:26 +00:00
require.NoError(t, err)
// Redirect stdin to the file containing the telemetry logs.
old := os.Stdin
2025-02-18 15:35:14 +00:00
os.Stdin = f
2025-02-03 04:19:26 +00:00
t.Cleanup(func() {
2025-02-18 15:35:14 +00:00
f.Close()
2025-02-03 04:19:26 +00:00
os.Stdin = old
})
2025-02-24 17:05:19 +00:00
}
func TestTelemetryUploadRetriesOnPartialSuccess(t *testing.T) {
2025-02-24 17:05:19 +00:00
server := testserver.New(t)
t.Cleanup(server.Close)
2025-02-03 04:19:26 +00:00
2025-02-24 17:05:19 +00:00
count := 0
server.Handle("POST", "/telemetry-ext", func(req testserver.Request) any {
count++
if count == 1 {
return ResponseBody{
NumProtoSuccess: 1,
}
}
if count == 2 {
return ResponseBody{
NumProtoSuccess: 2,
}
}
return nil
})
t.Setenv("DATABRICKS_HOST", server.URL)
t.Setenv("DATABRICKS_TOKEN", "token")
configureStdin(t)
resp, err := Upload(context.Background())
2025-02-03 04:19:26 +00:00
require.NoError(t, err)
2025-02-04 15:25:59 +00:00
assert.Equal(t, int64(2), resp.NumProtoSuccess)
2025-02-03 04:19:26 +00:00
assert.Equal(t, 2, count)
}
2025-02-24 17:05:19 +00:00
func uploadRetriesFor(t *testing.T, statusCode int) {
server := testserver.New(t)
t.Cleanup(server.Close)
count := 0
server.Handle("POST", "/telemetry-ext", func(req testserver.Request) any {
count++
if count == 1 {
return testserver.Response{
StatusCode: statusCode,
Body: apierr.APIError{
StatusCode: statusCode,
Message: "Some error",
},
}
}
if count == 2 {
return ResponseBody{
NumProtoSuccess: 2,
}
}
return nil
})
t.Setenv("DATABRICKS_HOST", server.URL)
t.Setenv("DATABRICKS_TOKEN", "token")
configureStdin(t)
resp, err := Upload(context.Background())
require.NoError(t, err)
assert.Equal(t, int64(2), resp.NumProtoSuccess)
assert.Equal(t, 2, count)
}
func TestTelemetryUploadRetriesForStatusCodes(t *testing.T) {
2025-03-02 14:25:03 +00:00
// These retries happen in the CLI itself since the SDK does not automatically
// retry for 5xx errors.
uploadRetriesFor(t, 500)
uploadRetriesFor(t, 504)
// These retries happen on the SDK layer.
// ref: https://github.com/databricks/databricks-sdk-go/blob/cdb28002afacb8b762348534a4c4040a9f19c24b/apierr/errors.go#L91
uploadRetriesFor(t, 503)
uploadRetriesFor(t, 429)
}
2025-02-28 10:39:01 +00:00
func TestTelemetryUploadMaxRetries(t *testing.T) {
server := testserver.New(t)
t.Cleanup(server.Close)
count := 0
server.Handle("POST", "/telemetry-ext", func(req testserver.Request) any {
count++
return ResponseBody{
NumProtoSuccess: 1,
}
})
t.Setenv("DATABRICKS_HOST", server.URL)
t.Setenv("DATABRICKS_TOKEN", "token")
configureStdin(t)
_, err := Upload(context.Background())
2025-03-02 16:31:11 +00:00
assert.EqualError(t, err, "upload did not succeed after three attempts")
2025-03-02 14:25:03 +00:00
assert.Equal(t, 3, count)
}
func TestReadFiles(t *testing.T) {
raw := `{
"logs": [
{
"frontend_log_event_id": "1",
"entry": {
"databricks_cli_log": {
"cli_test_event": {
"name": "DummyCliEnumValue1"
}
}
}
},
{
"frontend_log_event_id": "2",
"entry": {
"databricks_cli_log": {
"cli_test_event": {
"name": "DummyCliEnumValue2"
}
}
}
}
]
}`
r := strings.NewReader(raw)
logs, err := readLogs(r)
require.NoError(t, err)
assert.Equal(t, []string{
`{"frontend_log_event_id":"1","entry":{"databricks_cli_log":{"cli_test_event":{"name":"DummyCliEnumValue1"}}}}`,
`{"frontend_log_event_id":"2","entry":{"databricks_cli_log":{"cli_test_event":{"name":"DummyCliEnumValue2"}}}}`,
}, logs)
2025-02-28 10:39:01 +00:00
}
2025-03-02 16:31:11 +00:00
func TestReadFilesWithNoLogs(t *testing.T) {
raw := `{
"logs": []
}`
r := strings.NewReader(raw)
_, err := readLogs(r)
assert.EqualError(t, err, "No logs to upload")
}