2022-10-28 06:53:47 +02:00
|
|
|
package testutils
|
2022-01-09 06:59:28 +01:00
|
|
|
|
|
|
|
import (
|
2022-04-06 08:31:24 +02:00
|
|
|
"bytes"
|
2022-04-15 20:20:23 +02:00
|
|
|
"fmt"
|
2022-09-18 06:56:39 +02:00
|
|
|
"io"
|
2022-05-23 04:45:46 +02:00
|
|
|
"log"
|
2022-04-28 20:26:55 +02:00
|
|
|
"net/http"
|
2022-04-07 03:18:46 +02:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path"
|
2022-09-19 04:20:21 +02:00
|
|
|
"path/filepath"
|
2022-04-12 07:36:52 +02:00
|
|
|
"runtime"
|
2022-04-09 08:47:13 +02:00
|
|
|
"strings"
|
2022-04-07 03:18:46 +02:00
|
|
|
"testing"
|
|
|
|
"time"
|
2022-10-28 06:53:47 +02:00
|
|
|
|
|
|
|
"github.com/ddworken/hishtory/client/data"
|
2022-01-09 06:59:28 +01:00
|
|
|
)
|
|
|
|
|
2022-05-02 04:37:26 +02:00
|
|
|
const (
|
2022-10-28 06:53:47 +02:00
|
|
|
DB_WAL_PATH = data.DB_PATH + "-wal"
|
|
|
|
DB_SHM_PATH = data.DB_PATH + "-shm"
|
2022-05-02 04:37:26 +02:00
|
|
|
)
|
|
|
|
|
2022-04-06 08:31:24 +02:00
|
|
|
func ResetLocalState(t *testing.T) {
|
|
|
|
homedir, err := os.UserHomeDir()
|
2022-11-17 05:28:25 +01:00
|
|
|
Check(t, err)
|
|
|
|
persistLog()
|
2022-11-12 15:42:10 +01:00
|
|
|
_ = BackupAndRestoreWithId(t, "-reset-local-state")
|
2022-11-03 21:16:45 +01:00
|
|
|
_ = os.RemoveAll(path.Join(homedir, data.HISHTORY_PATH))
|
2022-04-06 08:31:24 +02:00
|
|
|
}
|
|
|
|
|
2022-01-09 06:59:28 +01:00
|
|
|
func BackupAndRestore(t *testing.T) func() {
|
2022-05-02 04:37:26 +02:00
|
|
|
return BackupAndRestoreWithId(t, "")
|
|
|
|
}
|
|
|
|
|
2022-11-03 03:41:49 +01:00
|
|
|
func getBackPath(file, id string) string {
|
2022-11-03 21:16:45 +01:00
|
|
|
if strings.Contains(file, "/"+data.HISHTORY_PATH+"/") {
|
|
|
|
return strings.Replace(file, data.HISHTORY_PATH, data.HISHTORY_PATH+".test", 1) + id
|
|
|
|
}
|
|
|
|
return file + ".bak" + id
|
2022-09-23 08:06:28 +02:00
|
|
|
}
|
|
|
|
|
2022-05-02 04:37:26 +02:00
|
|
|
func BackupAndRestoreWithId(t *testing.T, id string) func() {
|
2022-10-28 06:53:47 +02:00
|
|
|
ResetFakeHistoryTimestamp()
|
2022-01-09 06:59:28 +01:00
|
|
|
homedir, err := os.UserHomeDir()
|
2022-10-30 02:53:40 +02:00
|
|
|
Check(t, err)
|
|
|
|
initialWd, err := os.Getwd()
|
|
|
|
Check(t, err)
|
2022-11-03 03:41:49 +01:00
|
|
|
Check(t, os.MkdirAll(path.Join(homedir, data.HISHTORY_PATH+".test"), os.ModePerm))
|
2022-01-09 06:59:28 +01:00
|
|
|
|
2022-09-18 08:02:57 +02:00
|
|
|
renameFiles := []string{
|
2022-10-28 06:53:47 +02:00
|
|
|
path.Join(homedir, data.HISHTORY_PATH, data.DB_PATH),
|
|
|
|
path.Join(homedir, data.HISHTORY_PATH, DB_WAL_PATH),
|
|
|
|
path.Join(homedir, data.HISHTORY_PATH, DB_SHM_PATH),
|
|
|
|
path.Join(homedir, data.HISHTORY_PATH, data.CONFIG_PATH),
|
|
|
|
path.Join(homedir, data.HISHTORY_PATH, "hishtory"),
|
|
|
|
path.Join(homedir, data.HISHTORY_PATH, "config.sh"),
|
|
|
|
path.Join(homedir, data.HISHTORY_PATH, "config.zsh"),
|
|
|
|
path.Join(homedir, data.HISHTORY_PATH, "config.fish"),
|
2022-09-18 08:02:57 +02:00
|
|
|
path.Join(homedir, ".bash_history"),
|
|
|
|
path.Join(homedir, ".zsh_history"),
|
2022-11-04 06:32:55 +01:00
|
|
|
path.Join(homedir, ".local/share/fish/fish_history"),
|
2022-09-18 08:02:57 +02:00
|
|
|
}
|
|
|
|
for _, file := range renameFiles {
|
|
|
|
touchFile(file)
|
2022-11-16 08:20:19 +01:00
|
|
|
Check(t, os.Rename(file, getBackPath(file, id)))
|
2022-09-18 08:02:57 +02:00
|
|
|
}
|
|
|
|
copyFiles := []string{
|
|
|
|
path.Join(homedir, ".zshrc"),
|
|
|
|
path.Join(homedir, ".bashrc"),
|
2022-11-04 05:01:57 +01:00
|
|
|
path.Join(homedir, ".bash_profile"),
|
2022-09-18 08:02:57 +02:00
|
|
|
}
|
|
|
|
for _, file := range copyFiles {
|
2022-09-18 18:14:34 +02:00
|
|
|
touchFile(file)
|
2022-11-16 08:20:19 +01:00
|
|
|
Check(t, copy(file, getBackPath(file, id)))
|
2022-09-18 08:02:57 +02:00
|
|
|
}
|
2022-09-18 06:59:13 +02:00
|
|
|
configureZshrc(homedir)
|
|
|
|
touchFile(path.Join(homedir, ".bash_history"))
|
|
|
|
touchFile(path.Join(homedir, ".zsh_history"))
|
2022-11-04 06:32:55 +01:00
|
|
|
touchFile(path.Join(homedir, ".local/share/fish/fish_history"))
|
2022-01-09 06:59:28 +01:00
|
|
|
return func() {
|
2022-11-16 08:20:19 +01:00
|
|
|
if runtime.GOOS != "windows" {
|
|
|
|
cmd := exec.Command("killall", "hishtory", "tmux")
|
|
|
|
stdout, err := cmd.Output()
|
|
|
|
if err != nil && err.Error() != "exit status 1" {
|
|
|
|
t.Fatalf("failed to execute killall hishtory, stdout=%#v: %v", string(stdout), err)
|
|
|
|
}
|
|
|
|
}
|
2022-11-17 05:28:25 +01:00
|
|
|
persistLog()
|
2022-11-16 08:20:19 +01:00
|
|
|
Check(t, os.RemoveAll(path.Join(homedir, data.HISHTORY_PATH)))
|
2022-11-03 03:41:49 +01:00
|
|
|
Check(t, os.MkdirAll(path.Join(homedir, data.HISHTORY_PATH), os.ModePerm))
|
2022-09-18 08:02:57 +02:00
|
|
|
for _, file := range renameFiles {
|
2022-11-03 03:41:49 +01:00
|
|
|
checkError(os.Rename(getBackPath(file, id), file))
|
2022-09-18 08:02:57 +02:00
|
|
|
}
|
|
|
|
for _, file := range copyFiles {
|
2022-11-03 03:41:49 +01:00
|
|
|
checkError(copy(getBackPath(file, id), file))
|
2022-09-18 08:02:57 +02:00
|
|
|
}
|
2022-10-30 02:53:40 +02:00
|
|
|
checkError(os.Chdir(initialWd))
|
2022-09-18 06:56:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-18 06:59:13 +02:00
|
|
|
func touchFile(p string) {
|
2022-09-18 08:02:57 +02:00
|
|
|
_, err := os.Stat(p)
|
|
|
|
if os.IsNotExist(err) {
|
2022-09-19 06:05:51 +02:00
|
|
|
checkError(os.MkdirAll(filepath.Dir(p), os.ModePerm))
|
2022-09-19 03:34:27 +02:00
|
|
|
file, err := os.Create(p)
|
2022-09-18 08:02:57 +02:00
|
|
|
checkError(err)
|
|
|
|
defer file.Close()
|
|
|
|
} else {
|
|
|
|
currentTime := time.Now().Local()
|
|
|
|
err := os.Chtimes(p, currentTime, currentTime)
|
|
|
|
checkError(err)
|
|
|
|
}
|
2022-09-18 06:59:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func configureZshrc(homedir string) {
|
2022-11-27 20:59:06 +01:00
|
|
|
zshrcHistConfig := `export HISTFILE=~/.zsh_history
|
2022-09-18 06:59:13 +02:00
|
|
|
export HISTSIZE=10000
|
|
|
|
export SAVEHIST=1000
|
2022-09-23 03:22:06 +02:00
|
|
|
setopt SHARE_HISTORY
|
2022-11-27 20:59:06 +01:00
|
|
|
`
|
|
|
|
dat, err := os.ReadFile(path.Join(homedir, ".zshrc"))
|
|
|
|
checkError(err)
|
|
|
|
if strings.Contains(string(dat), zshrcHistConfig) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
f, err := os.OpenFile(path.Join(homedir, ".zshrc"), os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
|
|
|
|
checkError(err)
|
|
|
|
defer f.Close()
|
|
|
|
_, err = f.WriteString(zshrcHistConfig)
|
2022-09-18 06:59:13 +02:00
|
|
|
checkError(err)
|
|
|
|
}
|
|
|
|
|
2022-09-18 06:56:39 +02:00
|
|
|
func copy(src, dst string) error {
|
|
|
|
in, err := os.Open(src)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer in.Close()
|
|
|
|
|
|
|
|
out, err := os.Create(dst)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer out.Close()
|
|
|
|
|
|
|
|
_, err = io.Copy(out, in)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2022-05-23 04:45:46 +02:00
|
|
|
}
|
2022-09-18 06:56:39 +02:00
|
|
|
return out.Close()
|
2022-05-23 04:45:46 +02:00
|
|
|
}
|
|
|
|
|
2022-06-13 06:28:19 +02:00
|
|
|
func BackupAndRestoreEnv(k string) func() {
|
|
|
|
origValue := os.Getenv(k)
|
|
|
|
return func() {
|
2022-11-14 01:53:37 +01:00
|
|
|
if origValue == "" {
|
|
|
|
os.Unsetenv(k)
|
|
|
|
} else {
|
|
|
|
os.Setenv(k, origValue)
|
|
|
|
}
|
2022-06-13 06:28:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-23 04:45:46 +02:00
|
|
|
func checkError(err error) {
|
2022-09-18 07:45:07 +02:00
|
|
|
if err != nil {
|
2022-05-23 04:45:46 +02:00
|
|
|
_, filename, line, _ := runtime.Caller(1)
|
2022-05-28 07:06:20 +02:00
|
|
|
_, cf, cl, _ := runtime.Caller(2)
|
2022-05-28 04:00:02 +02:00
|
|
|
log.Fatalf("testutils fatal error at %s:%d (caller: %s:%d): %v", filename, line, cf, cl, err)
|
2022-01-09 06:59:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-07 02:46:45 +01:00
|
|
|
func buildServer() string {
|
2022-11-06 23:42:01 +01:00
|
|
|
for i := 0; i < 100; i++ {
|
|
|
|
wd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Sprintf("failed to getwd: %v", err))
|
|
|
|
}
|
|
|
|
if strings.HasSuffix(wd, "hishtory") {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
err = os.Chdir("../")
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Sprintf("failed to chdir: %v", err))
|
|
|
|
}
|
|
|
|
if wd == "/" {
|
|
|
|
panic("failed to cd into hishtory dir!")
|
2022-04-09 20:55:00 +02:00
|
|
|
}
|
2022-04-06 08:31:24 +02:00
|
|
|
}
|
2022-04-20 06:05:54 +02:00
|
|
|
version, err := os.ReadFile("VERSION")
|
|
|
|
if err != nil {
|
2022-11-06 08:16:14 +01:00
|
|
|
if runtime.GOOS == "windows" {
|
2022-11-06 08:17:03 +01:00
|
|
|
// TODO: Figure out why it can't read the VERSION file
|
2022-11-06 08:16:14 +01:00
|
|
|
version = []byte("174")
|
|
|
|
} else {
|
|
|
|
panic(fmt.Sprintf("failed to read VERSION file: %v", err))
|
|
|
|
}
|
2022-04-20 06:05:54 +02:00
|
|
|
}
|
2022-11-07 02:46:45 +01:00
|
|
|
f, err := os.CreateTemp("", "server")
|
|
|
|
checkError(err)
|
|
|
|
fn := f.Name()
|
|
|
|
cmd := exec.Command("go", "build", "-o", fn, "-ldflags", fmt.Sprintf("-X main.ReleaseVersion=v0.%s", version), "backend/server/server.go")
|
2022-04-06 08:31:24 +02:00
|
|
|
var stdout bytes.Buffer
|
|
|
|
cmd.Stdout = &stdout
|
|
|
|
var stderr bytes.Buffer
|
|
|
|
cmd.Stderr = &stderr
|
2022-04-20 06:05:54 +02:00
|
|
|
err = cmd.Start()
|
2022-04-06 08:31:24 +02:00
|
|
|
if err != nil {
|
2022-04-15 20:20:23 +02:00
|
|
|
panic(fmt.Sprintf("failed to start to build server: %v, stderr=%#v, stdout=%#v", err, stderr.String(), stdout.String()))
|
2022-04-06 08:31:24 +02:00
|
|
|
}
|
|
|
|
err = cmd.Wait()
|
|
|
|
if err != nil {
|
2022-04-09 20:55:00 +02:00
|
|
|
wd, _ := os.Getwd()
|
2022-04-15 20:20:23 +02:00
|
|
|
panic(fmt.Sprintf("failed to build server: %v, wd=%#v, stderr=%#v, stdout=%#v", err, wd, stderr.String(), stdout.String()))
|
2022-04-06 08:31:24 +02:00
|
|
|
}
|
2022-11-07 02:46:45 +01:00
|
|
|
return fn
|
2022-04-06 08:31:24 +02:00
|
|
|
}
|
|
|
|
|
2022-04-15 20:20:23 +02:00
|
|
|
func RunTestServer() func() {
|
2022-04-07 03:18:46 +02:00
|
|
|
os.Setenv("HISHTORY_SERVER", "http://localhost:8080")
|
2022-11-07 02:46:45 +01:00
|
|
|
fn := buildServer()
|
|
|
|
cmd := exec.Command(fn)
|
2022-04-07 03:18:46 +02:00
|
|
|
var stdout bytes.Buffer
|
2022-04-06 08:31:24 +02:00
|
|
|
cmd.Stdout = &stdout
|
|
|
|
var stderr bytes.Buffer
|
|
|
|
cmd.Stderr = &stderr
|
2022-04-07 03:18:46 +02:00
|
|
|
err := cmd.Start()
|
|
|
|
if err != nil {
|
2022-04-15 20:20:23 +02:00
|
|
|
panic(fmt.Sprintf("failed to start server: %v", err))
|
2022-04-07 03:18:46 +02:00
|
|
|
}
|
2022-04-15 20:20:23 +02:00
|
|
|
time.Sleep(time.Second * 5)
|
2022-04-07 03:18:46 +02:00
|
|
|
go func() {
|
2022-04-08 06:40:22 +02:00
|
|
|
_ = cmd.Wait()
|
2022-04-07 03:18:46 +02:00
|
|
|
}()
|
2022-04-06 08:31:24 +02:00
|
|
|
return func() {
|
|
|
|
err := cmd.Process.Kill()
|
2022-04-15 05:18:49 +02:00
|
|
|
if err != nil && err.Error() != "os: process already finished" {
|
2022-04-15 20:20:23 +02:00
|
|
|
panic(fmt.Sprintf("failed to kill server process: %v", err))
|
2022-04-06 08:31:24 +02:00
|
|
|
}
|
2022-12-12 05:31:50 +01:00
|
|
|
allOutput := stdout.String() + stderr.String()
|
|
|
|
if strings.Contains(allOutput, "failed to") && IsOnline() {
|
2022-04-15 20:20:23 +02:00
|
|
|
panic(fmt.Sprintf("server failed to do something: stderr=%#v, stdout=%#v", stderr.String(), stdout.String()))
|
2022-04-09 08:47:13 +02:00
|
|
|
}
|
2022-12-12 05:31:50 +01:00
|
|
|
if strings.Contains(allOutput, "ERROR:") || strings.Contains(allOutput, "http: panic serving") {
|
2022-04-16 20:37:43 +02:00
|
|
|
panic(fmt.Sprintf("server experienced an error: stderr=%#v, stdout=%#v", stderr.String(), stdout.String()))
|
|
|
|
}
|
2022-04-16 09:44:47 +02:00
|
|
|
// fmt.Printf("stderr=%#v, stdout=%#v\n", stderr.String(), stdout.String())
|
2022-04-06 08:31:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-05 07:07:01 +02:00
|
|
|
func Check(t *testing.T, err error) {
|
|
|
|
if err != nil {
|
2022-04-12 07:36:52 +02:00
|
|
|
_, filename, line, _ := runtime.Caller(1)
|
|
|
|
t.Fatalf("Unexpected error at %s:%d: %v", filename, line, err)
|
2022-04-05 07:07:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func CheckWithInfo(t *testing.T, err error, additionalInfo string) {
|
|
|
|
if err != nil {
|
2022-04-12 07:36:52 +02:00
|
|
|
_, filename, line, _ := runtime.Caller(1)
|
|
|
|
t.Fatalf("Unexpected error: %v at %s:%d! Additional info: %v", err, filename, line, additionalInfo)
|
2022-04-05 07:07:01 +02:00
|
|
|
}
|
|
|
|
}
|
2022-04-28 20:26:55 +02:00
|
|
|
|
|
|
|
func IsOnline() bool {
|
|
|
|
_, err := http.Get("https://hishtory.dev")
|
|
|
|
return err == nil
|
|
|
|
}
|
2022-10-28 06:53:47 +02:00
|
|
|
|
|
|
|
var fakeHistoryTimestamp int64 = 1666068191
|
|
|
|
|
|
|
|
func ResetFakeHistoryTimestamp() {
|
|
|
|
fakeHistoryTimestamp = 1666068191
|
|
|
|
}
|
|
|
|
|
|
|
|
func MakeFakeHistoryEntry(command string) data.HistoryEntry {
|
|
|
|
fakeHistoryTimestamp += 5
|
|
|
|
return data.HistoryEntry{
|
|
|
|
LocalUsername: "david",
|
|
|
|
Hostname: "localhost",
|
|
|
|
Command: command,
|
|
|
|
CurrentWorkingDirectory: "/tmp/",
|
|
|
|
HomeDirectory: "/home/david/",
|
|
|
|
ExitCode: 2,
|
|
|
|
StartTime: time.Unix(fakeHistoryTimestamp, 0),
|
|
|
|
EndTime: time.Unix(fakeHistoryTimestamp+3, 0),
|
|
|
|
}
|
|
|
|
}
|
2022-11-12 15:46:37 +01:00
|
|
|
|
|
|
|
func IsGithubAction() bool {
|
|
|
|
return os.Getenv("GITHUB_ACTION") != ""
|
|
|
|
}
|
2022-11-16 08:20:19 +01:00
|
|
|
|
|
|
|
func TestLog(t *testing.T, line string) {
|
|
|
|
f, err := os.OpenFile("/tmp/test.log", os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0644)
|
|
|
|
if err != nil {
|
|
|
|
Check(t, err)
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
_, err = f.WriteString(line + "\n")
|
|
|
|
if err != nil {
|
|
|
|
Check(t, err)
|
|
|
|
}
|
|
|
|
}
|
2022-11-17 05:28:25 +01:00
|
|
|
|
|
|
|
func persistLog() {
|
|
|
|
homedir, err := os.UserHomeDir()
|
|
|
|
checkError(err)
|
|
|
|
fp := path.Join(homedir, data.HISHTORY_PATH, "hishtory.log")
|
|
|
|
log, err := os.ReadFile(fp)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
f, err := os.OpenFile("/tmp/hishtory.log", os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
|
|
|
|
checkError(err)
|
|
|
|
defer f.Close()
|
|
|
|
_, err = f.Write(log)
|
|
|
|
checkError(err)
|
|
|
|
_, err = f.WriteString("\n")
|
|
|
|
checkError(err)
|
|
|
|
}
|