blob: ebde64b7bd8a96f4dddf5fe488073b1b551b0585 [file] [log] [blame]
// Copyright 2023 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package telemetrymode manages the telemetry mode file.
package telemetry
import (
"fmt"
"os"
"path/filepath"
"testing"
"time"
)
func TestTelemetryDefault(t *testing.T) {
defaultDirMissing := false
if _, err := os.UserConfigDir(); err != nil {
defaultDirMissing = true
}
if defaultDirMissing {
if LocalDir != "" || UploadDir != "" || ModeFile != "" {
t.Errorf("DefaultSetting: (%q, %q, %q), want empty LocalDir/UploadDir/ModeFile", LocalDir, UploadDir, ModeFile)
}
} else {
if LocalDir == "" || UploadDir == "" || ModeFile == "" {
t.Errorf("DefaultSetting: (%q, %q, %q), want non-empty LocalDir/UploadDir/ModeFile", LocalDir, UploadDir, ModeFile)
}
}
}
func TestTelemetryModeWithNoModeConfig(t *testing.T) {
tmp := t.TempDir()
tests := []struct {
modefile ModeFilePath
want string
}{
{ModeFilePath(filepath.Join(tmp, "mode")), "local"},
{"", "off"},
}
for _, tt := range tests {
if got, _ := tt.modefile.Mode(); got != tt.want {
t.Logf("Mode file: %q", tt.modefile)
t.Errorf("Mode() = %v, want %v", got, tt.want)
}
}
}
func TestSetMode(t *testing.T) {
tests := []struct {
in string
wantErr bool // want error when setting.
}{
{"on", false},
{"off", false},
{"local", false},
{"https://mytelemetry.com", true},
{"http://insecure.com", true},
{"bogus", true},
{"", true},
}
tmp := t.TempDir()
for i, tt := range tests {
t.Run("mode="+tt.in, func(t *testing.T) {
modefile := ModeFilePath(filepath.Join(tmp, fmt.Sprintf("modefile%d", i)))
setErr := modefile.SetMode(tt.in)
if (setErr != nil) != tt.wantErr {
t.Fatalf("Set() error = %v, wantErr %v", setErr, tt.wantErr)
}
if setErr != nil {
return
}
if got, _ := modefile.Mode(); got != tt.in {
t.Errorf("LookupMode() = %q, want %q", got, tt.in)
}
})
}
}
func TestMode(t *testing.T) {
tests := []struct {
in string
wantMode string
wantTime time.Time
}{
{"on", "on", time.Time{}},
{"on 2023-09-26", "on", time.Date(2023, time.September, 26, 0, 0, 0, 0, time.UTC)},
{"off", "off", time.Time{}},
{"local", "local", time.Time{}},
}
tmp := t.TempDir()
for i, tt := range tests {
t.Run("mode="+tt.in, func(t *testing.T) {
fname := filepath.Join(tmp, fmt.Sprintf("modefile%d", i))
if err := os.WriteFile(fname, []byte(tt.in), 0666); err != nil {
t.Fatal(err)
}
// Note: the checks below intentionally do not use time.Equal:
// we want this exact representation of time.
if gotMode, gotTime := ModeFilePath(fname).Mode(); gotMode != tt.wantMode || gotTime != tt.wantTime {
t.Errorf("ModeFilePath(contents=%s).Mode() = %q, %v, want %q, %v", tt.in, gotMode, gotTime, tt.wantMode, tt.wantTime)
}
})
}
}