mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
8143cc36bc
* Start adding "inject slashing into pool" * Attempt at slashing * Remove unneded * Fix * Begin adding slasher client to e2e * Start slasher in e2e * Get slashing detection working * Get slashing evaluators working * Progress on e2e * Cleanup e2e * Fix slasher e2e! * lint * Comment * Fixes * Improve accuracy of balance check * REmove extra * Remove extra * Make more accurate
135 lines
3.1 KiB
Go
135 lines
3.1 KiB
Go
package endtoend
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
maxPollingWaitTime = 60 * time.Second
|
|
filePollingInterval = 1 * time.Second
|
|
)
|
|
|
|
func killProcesses(t *testing.T, pIDs []int) {
|
|
for _, id := range pIDs {
|
|
process, err := os.FindProcess(id)
|
|
if err != nil {
|
|
t.Fatalf("Could not find process %d: %v", id, err)
|
|
}
|
|
if err := process.Kill(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := process.Release(); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func deleteAndCreateFile(tmpPath string, fileName string) (*os.File, error) {
|
|
filePath := path.Join(tmpPath, fileName)
|
|
if _, err := os.Stat(filePath); os.IsExist(err) {
|
|
if err := os.Remove(filePath); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
newFile, err := os.Create(path.Join(tmpPath, fileName))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return newFile, nil
|
|
}
|
|
|
|
func waitForTextInFile(file *os.File, text string) error {
|
|
d := time.Now().Add(maxPollingWaitTime)
|
|
ctx, cancel := context.WithDeadline(context.Background(), d)
|
|
defer cancel()
|
|
|
|
// Use a ticker with a deadline to poll a given file.
|
|
ticker := time.NewTicker(filePollingInterval)
|
|
defer ticker.Stop()
|
|
for {
|
|
select {
|
|
case <-ctx.Done():
|
|
contents, err := ioutil.ReadAll(file)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return fmt.Errorf("could not find requested text \"%s\" in logs:\n%s", text, contents)
|
|
case <-ticker.C:
|
|
fileScanner := bufio.NewScanner(file)
|
|
for fileScanner.Scan() {
|
|
scanned := fileScanner.Text()
|
|
if strings.Contains(scanned, text) {
|
|
return nil
|
|
}
|
|
}
|
|
if err := fileScanner.Err(); err != nil {
|
|
return err
|
|
}
|
|
_, err := file.Seek(0, io.SeekStart)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func logOutput(t *testing.T, tmpPath string, config *end2EndConfig) {
|
|
// Log out errors from beacon chain nodes.
|
|
for i := uint64(0); i < config.numBeaconNodes; i++ {
|
|
beaconLogFile, err := os.Open(path.Join(tmpPath, fmt.Sprintf(beaconNodeLogFileName, i)))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
logErrorOutput(t, beaconLogFile, "beacon chain node", i)
|
|
|
|
validatorLogFile, err := os.Open(path.Join(tmpPath, fmt.Sprintf(validatorLogFileName, i)))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
logErrorOutput(t, validatorLogFile, "validator client", i)
|
|
|
|
slasherLogFile, err := os.Open(path.Join(tmpPath, fmt.Sprintf(slasherLogFileName, i)))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
logErrorOutput(t, slasherLogFile, "slasher client", i)
|
|
}
|
|
t.Logf("Ending time: %s\n", time.Now().String())
|
|
}
|
|
|
|
func logErrorOutput(t *testing.T, file io.Reader, title string, index uint64) {
|
|
var errorLines []string
|
|
|
|
scanner := bufio.NewScanner(file)
|
|
for scanner.Scan() {
|
|
currentLine := scanner.Text()
|
|
if strings.Contains(currentLine, "level=error") {
|
|
errorLines = append(errorLines, currentLine)
|
|
}
|
|
}
|
|
|
|
if len(errorLines) < 1 {
|
|
return
|
|
}
|
|
|
|
t.Logf("==================== Start of %s %d error output ==================\n", title, index)
|
|
var lines uint64
|
|
for _, err := range errorLines {
|
|
lines++
|
|
if lines >= 10 {
|
|
break
|
|
}
|
|
t.Log(err)
|
|
}
|
|
t.Logf("===================== End of %s %d error output ====================\n", title, index)
|
|
}
|